From 07e75761dd63634ca369d06abdecb6173034cfbd Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 4 Feb 2020 12:58:35 +0100 Subject: [PATCH 001/110] CMDB integration needs --- pandora_server/lib/PandoraFMS/Core.pm | 31 ++++++++++++++++----------- 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 689cd2122a..0564f50ac6 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -287,23 +287,23 @@ my $Master :shared = 0; # Return the agent given the agent name or alias or address. ########################################################################## sub locate_agent { - my ($pa_config, $dbh, $field) = @_; + my ($pa_config, $dbh, $field, $relative) = @_; if (is_metaconsole($pa_config)) { # Locate agent first in tmetaconsole_agent return undef if (! defined ($field) || $field eq ''); - my $rs = enterprise_hook('get_metaconsole_agent_from_alias', [$dbh, $field]); + my $rs = enterprise_hook('get_metaconsole_agent_from_alias', [$dbh, $field, $relative]); return $rs if defined($rs) && (ref($rs)); # defined and not a scalar - $rs = enterprise_hook('get_metaconsole_agent_from_addr', [$dbh, $field]); + $rs = enterprise_hook('get_metaconsole_agent_from_addr', [$dbh, $field, $relative]); return $rs if defined($rs) && (ref($rs)); # defined and not a scalar - $rs = enterprise_hook('get_metaconsole_agent_from_name', [$dbh, $field]); + $rs = enterprise_hook('get_metaconsole_agent_from_name', [$dbh, $field, $relative]); return $rs if defined($rs) && (ref($rs)); # defined and not a scalar } else { - return get_agent($dbh, $field); + return get_agent($dbh, $field, $relative); } return undef; @@ -314,17 +314,17 @@ sub locate_agent { # Return the agent given the agent name or alias or address. ########################################################################## sub get_agent { - my ($dbh, $field) = @_; + my ($dbh, $field, $relative) = @_; return undef if (! defined ($field) || $field eq ''); - my $rs = get_agent_from_alias($dbh, $field); + my $rs = get_agent_from_alias($dbh, $field, $relative); return $rs if defined($rs) && (ref($rs)); # defined and not a scalar $rs = get_agent_from_addr($dbh, $field); return $rs if defined($rs) && (ref($rs)); # defined and not a scalar - $rs = get_agent_from_name($dbh, $field); + $rs = get_agent_from_name($dbh, $field, $relative); return $rs if defined($rs) && (ref($rs)); # defined and not a scalar return undef; @@ -333,10 +333,13 @@ sub get_agent { ########################################################################## # Return the agent given the agent name. ########################################################################## -sub get_agent_from_alias ($$) { - my ($dbh, $alias) = @_; +sub get_agent_from_alias ($$;$) { + my ($dbh, $alias, $relative) = @_; return undef if (! defined ($alias) || $alias eq ''); + if ($relative) { + return get_db_single_row($dbh, 'SELECT * FROM tagente WHERE tagente.alias like ?', safe_input($alias)); + } return get_db_single_row ($dbh, 'SELECT * FROM tagente WHERE tagente.alias = ?', safe_input($alias)); } @@ -359,10 +362,14 @@ sub get_agent_from_addr ($$) { ########################################################################## # Return the agent given the agent name. ########################################################################## -sub get_agent_from_name ($$) { - my ($dbh, $name) = @_; +sub get_agent_from_name ($$;$) { + my ($dbh, $name, $relative) = @_; return undef if (! defined ($name) || $name eq ''); + + if ($relative) { + return get_db_single_row($dbh, 'SELECT * FROM tagente WHERE tagente.nombre like ?', safe_input($name)); + } return get_db_single_row ($dbh, 'SELECT * FROM tagente WHERE tagente.nombre = ?', safe_input($name)); } From 01641c45849d66a92aa4535ac8325cda54e9e2e8 Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Thu, 5 Mar 2020 14:52:04 +0100 Subject: [PATCH 002/110] Avoid collections case for files download --- pandora_console/include/get_file.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/get_file.php b/pandora_console/include/get_file.php index 550e7e92fd..6ebde02add 100644 --- a/pandora_console/include/get_file.php +++ b/pandora_console/include/get_file.php @@ -51,6 +51,10 @@ if ($file === '' || $hash === '' || $hash !== md5($file_raw.$config['dbpass']) | $downloadable_file = $_SERVER['DOCUMENT_ROOT'].'/pandora_console/attachment/files_repo/'.$file; break; + case 'enterprise/godmode/agentes/collections': + $downloadable_file = $_SERVER['DOCUMENT_ROOT'].'/pandora_console/attachment/collection/'.$file; + break; + default: $downloadable_file = ''; // Do nothing From 26c16adbf94279e5e9e61e8680c9c0e067dc4019 Mon Sep 17 00:00:00 2001 From: alejandro-campos Date: Fri, 27 Mar 2020 11:37:10 +0100 Subject: [PATCH 003/110] fix accessing wrong index after deletion of node --- .../functions_pandora_networkmap.js | 62 ++++++++++++++++--- 1 file changed, 53 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/javascript/functions_pandora_networkmap.js b/pandora_console/include/javascript/functions_pandora_networkmap.js index 539eeb1cea..e3a00cb90a 100644 --- a/pandora_console/include/javascript/functions_pandora_networkmap.js +++ b/pandora_console/include/javascript/functions_pandora_networkmap.js @@ -1181,8 +1181,16 @@ function add_agent_node(agents) { $("#agent_name").val(""); $("#dialog_node_add").dialog("close"); + const new_id = + Math.max.apply( + Math, + graph.nodes.map(function(o) { + return o.id; + }) + ) + 1; + var temp_node = {}; - temp_node["id"] = graph.nodes.length; + temp_node["id"] = new_id; temp_node["id_db"] = data["id_node"]; temp_node["id_agent"] = data["id_agent"]; temp_node["id_module"] = ""; @@ -2423,7 +2431,13 @@ function refresh_holding_area() { jQuery.each(holding_area.nodes, function(i, node) { var temp_node = {}; - temp_node["id"] = graph.nodes.length; + temp_node["id"] = + Math.max.apply( + Math, + graph.nodes.map(function(o) { + return o.id; + }) + ) + 1; holding_area.nodes[i]["id"] = temp_node["id"]; temp_node["id_db"] = node["id_db"]; @@ -2711,6 +2725,20 @@ function set_parent(parent_data) { url: "ajax.php", success: function(data) { if (data["correct"]) { + var child_index = -1; + var parent_index = -1; + + // Get indexes of child and parent nodes. + $.each(graph.nodes, function(i, d) { + if (child_data.id == d.id) { + child_index = i; + } + + if (parent_data.id == d.id) { + parent_index = i; + } + }); + //Add the relationship and paint item = {}; item["arrow_start"] = ""; @@ -2723,11 +2751,11 @@ function set_parent(parent_data) { item["id_module_end"] = 0; item["id_db"] = data["id"]; item["source_id_db"] = child_data.id_db; - item["target_id_db"] = parent_data.id; - item["id_agent_start"] = graph.nodes[child_data.id]["id_agent"]; - item["id_agent_end"] = graph.nodes[parent_data.id]["id_agent"]; - item["target"] = graph.nodes[parent_data.id]; - item["source"] = graph.nodes[child_data.id]; + item["target_id_db"] = parent_data.id_db; + item["id_agent_start"] = graph.nodes[child_index]["id_agent"]; + item["id_agent_end"] = graph.nodes[parent_index]["id_agent"]; + item["target"] = graph.nodes[parent_index]; + item["source"] = graph.nodes[child_index]; graph.links.push(item); } @@ -2922,8 +2950,16 @@ function add_fictional_node() { if (data["correct"]) { $("#dialog_node_add").dialog("close"); + const new_id = + Math.max.apply( + Math, + graph.nodes.map(function(o) { + return o.id; + }) + ) + 1; + var temp_node = {}; - temp_node["id"] = graph.nodes.length; + temp_node["id"] = new_id; temp_node["id_db"] = data["id_node"]; temp_node["id_agent"] = data["id_agent"]; temp_node["id_module"] = 0; @@ -2951,8 +2987,16 @@ function add_fictional_node() { } else { $("#dialog_node_add").dialog("close"); + const new_id = + Math.max.apply( + Math, + graph.nodes.map(function(o) { + return o.id; + }) + ) + 1; + var temp_node = {}; - temp_node["id"] = graph.nodes.length; + temp_node["id"] = new_id; temp_node["id_db"] = data["id_node"]; temp_node["id_agent"] = data["id_agent"]; temp_node["id_module"] = 0; From a2ee59e5b0f3469485dba3c6ced9f1cbd47530ca Mon Sep 17 00:00:00 2001 From: marcos Date: Tue, 31 Mar 2020 17:35:01 +0200 Subject: [PATCH 004/110] duplicated enable/disable message --- .../godmode/agentes/configurar_agente.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index b48590074c..e68a74bcf1 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1901,12 +1901,6 @@ if ($enable_module) { 'Fail to enable #'.$enable_module.' | '.$module_name.' | '.$agent['alias'] ); } - - ui_print_result_message( - $result, - __('Successfully enabled'), - __('Could not be enabled') - ); } if ($disable_module) { @@ -1942,12 +1936,6 @@ if ($disable_module) { 'Fail to disable #'.$disable_module.' | '.$module_name.' | '.$agent['alias'] ); } - - ui_print_result_message( - $result, - __('Successfully disabled'), - __('Could not be disabled') - ); } // Fix to stop the module from being added to the agent's conf From e575f65b6a203564477350ec3d6c09d4740190c4 Mon Sep 17 00:00:00 2001 From: Luis Calvo Date: Tue, 31 Mar 2020 20:02:28 +0200 Subject: [PATCH 005/110] Added agent description to search and agent detail --- .../operation/agentes/estado_agente.php | 4 ++- .../operation/search_agents.getdata.php | 32 +++++++++++++++++-- pandora_console/operation/search_agents.php | 28 +++++++++------- 3 files changed, 48 insertions(+), 16 deletions(-) diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index c5312ed572..ba51431416 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -521,7 +521,9 @@ if ($search != '') { $search_sql .= ')'; } else { $search_sql = ' AND ( nombre '.$order_collation." - COLLATE utf8_general_ci LIKE '%$search%' OR alias ".$order_collation." COLLATE utf8_general_ci LIKE '%$search%') "; + COLLATE utf8_general_ci LIKE '%$search%' + OR comentarios ".$order_collation." COLLATE utf8_general_ci LIKE '%$search%' + OR alias ".$order_collation." COLLATE utf8_general_ci LIKE '%$search%') "; } } diff --git a/pandora_console/operation/search_agents.getdata.php b/pandora_console/operation/search_agents.getdata.php index c754628731..aad2835a36 100644 --- a/pandora_console/operation/search_agents.getdata.php +++ b/pandora_console/operation/search_agents.getdata.php @@ -20,6 +20,8 @@ $searchAgents = check_acl($config['id_user'], 0, 'AR'); $selectNameUp = ''; $selectNameDown = ''; +$selectDescriptionUp = ''; +$selectDescriptionDown = ''; $selectOsUp = ''; $selectOsDown = ''; $selectIntervalUp = ''; @@ -50,6 +52,26 @@ switch ($sortField) { } break; + case 'comentarios': + switch ($sort) { + case 'up': + $selectDescriptionUp = $selected; + $order = [ + 'field' => 'comentarios', + 'order' => 'ASC', + ]; + break; + + case 'down': + $selectDescriptionDown = $selected; + $order = [ + 'field' => 'comentarios', + 'order' => 'DESC', + ]; + break; + } + break; + case 'os': switch ($sort) { case 'up': @@ -133,6 +155,8 @@ switch ($sortField) { default: $selectNameUp = $selected; $selectNameDown = ''; + $selectDescriptionUp = ''; + $selectDescriptionDown = ''; $selectOsUp = ''; $selectOsDown = ''; $selectIntervalUp = ''; @@ -165,7 +189,8 @@ if ($searchAgents) { $aux = $id[0]['id_agent']; $search_sql = " t1.nombre COLLATE utf8_general_ci LIKE '%%cd ".$stringSearchSQL."%%' OR t2.nombre COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR - t1.alias COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR + t1.alias COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR + t1.comentarios COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR t1.id_agente = $aux"; if (count($id) >= 2) { @@ -177,7 +202,8 @@ if ($searchAgents) { } else { $search_sql = " t1.nombre COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR t2.nombre COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR - t1.direccion COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR + t1.direccion COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR + t1.comentarios COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%' OR t1.alias COLLATE utf8_general_ci LIKE '%%".$stringSearchSQL."%%'"; } @@ -211,7 +237,7 @@ if ($searchAgents) { ) '; - $select = 'SELECT DISTINCT(t1.id_agente), t1.ultimo_contacto, t1.nombre, t1.id_os, t1.intervalo, t1.id_grupo, t1.disabled, t1.alias, t1.quiet'; + $select = 'SELECT DISTINCT(t1.id_agente), t1.ultimo_contacto, t1.nombre, t1.comentarios, t1.id_os, t1.intervalo, t1.id_grupo, t1.disabled, t1.alias, t1.quiet'; if ($only_count) { $limit = ' ORDER BY '.$order['field'].' '.$order['order'].' LIMIT '.$config['block_size'].' OFFSET 0'; } else { diff --git a/pandora_console/operation/search_agents.php b/pandora_console/operation/search_agents.php index 05383df31a..5dd83871eb 100755 --- a/pandora_console/operation/search_agents.php +++ b/pandora_console/operation/search_agents.php @@ -39,21 +39,23 @@ if (!$agents || !$searchAgents) { $table->head = []; if ($only_count) { $table->head[0] = __('Agent'); - $table->head[1] = __('OS'); - $table->head[2] = __('Interval'); - $table->head[3] = __('Group'); + $table->head[1] = __('Description'); + $table->head[2] = __('OS'); + $table->head[3] = __('Interval'); + $table->head[4] = __('Group'); } else { $table->head[0] = __('Agent').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectNameUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectNameDown]).''; - $table->head[1] = __('OS').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectOsUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectOsDown]).''; - $table->head[2] = __('Interval').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectIntervalUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectIntervalDown]).''; - $table->head[3] = __('Group').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectGroupUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectGroupDown]).''; + $table->head[1] = __('Description').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectDescriptionUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectDescriptionDown]).''; + $table->head[2] = __('OS').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectOsUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectOsDown]).''; + $table->head[3] = __('Interval').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectIntervalUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectIntervalDown]).''; + $table->head[4] = __('Group').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectGroupUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectGroupDown]).''; } - $table->head[4] = __('Modules'); - $table->head[5] = __('Status'); - $table->head[6] = __('Alerts'); - $table->head[7] = __('Last contact').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectLastContactUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectLastContactDown]).''; - $table->head[8] = ''; + $table->head[5] = __('Modules'); + $table->head[6] = __('Status'); + $table->head[7] = __('Alerts'); + $table->head[8] = __('Last contact').' '.''.html_print_image('images/sort_up.png', true, ['style' => $selectLastContactUp]).''.''.html_print_image('images/sort_down.png', true, ['style' => $selectLastContactDown]).''; + $table->head[9] = ''; $table->align = []; $table->align[0] = 'left'; @@ -64,7 +66,8 @@ if (!$agents || !$searchAgents) { $table->align[5] = 'left'; $table->align[6] = 'left'; $table->align[7] = 'left'; - $table->align[8] = 'center'; + $table->align[8] = 'left'; + $table->align[9] = 'center'; $table->data = []; @@ -116,6 +119,7 @@ if (!$agents || !$searchAgents) { $table->data, [ $cellName, + ui_print_truncate_text($agent['comentarios'], 'comentarios', false, true, true, '[…]'), ui_print_os_icon($agent['id_os'], false, true), human_time_description_raw($agent['intervalo'], false, 'tiny'), ui_print_group_icon($agent['id_grupo'], true), From 32cdb3d1cf3eacac3166fda288c4845c40915754 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 2 Apr 2020 17:08:52 +0200 Subject: [PATCH 006/110] Docker centos7 --- pandora_server/util/pandora_db.pl | 0 tests/.gitignore | 2 + tests/Dockerfile | 170 +++++++++++++----------------- tests/install_console.py | 2 +- 4 files changed, 77 insertions(+), 97 deletions(-) mode change 100644 => 100755 pandora_server/util/pandora_db.pl diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl old mode 100644 new mode 100755 diff --git a/tests/.gitignore b/tests/.gitignore index 0d20b6487c..82b9d47a72 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -1 +1,3 @@ *.pyc +geckodriver.log +wmic diff --git a/tests/Dockerfile b/tests/Dockerfile index e09f39c301..a0c8c78fd4 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -1,109 +1,86 @@ -FROM centos:centos6 -MAINTAINER Pandora FMS Team +FROM centos:centos7 RUN { \ - echo '[EPEL]'; \ - echo 'name = CentOS Epel'; \ - echo 'baseurl = http://dl.fedoraproject.org/pub/epel/6/x86_64'; \ - echo 'enabled=1'; \ + echo '[artica_pandorafms]'; \ + echo 'name=CentOS7 - PandoraFMS official repo'; \ + echo 'baseurl=http://firefly.artica.es/centos7'; \ echo 'gpgcheck=0'; \ - echo ''; \ - echo '[remi-php72]'; \ - echo 'name=Remi php72'; \ - echo 'baseurl=http://rpms.remirepo.net/enterprise/6/php72/x86_64/'; \ echo 'enabled=1'; \ - echo 'gpgcheck=0'; \ - echo ''; \ - echo '[remi-safe]'; \ - echo 'name=Safe Remis RPM repository'; \ - echo 'mirrorlist=http://cdn.remirepo.net/enterprise/$releasever/safe/mirror'; \ - echo 'enabled=1'; \ - echo 'gpgcheck=0'; \ - echo ''; \ -} > /etc/yum.repos.d/extra_repos.repo + } > /etc/yum.repos.d/pandorafms.repo -RUN { \ - echo '[artica_pandorafms]'; \ - echo 'name=CentOS6 - PandoraFMS official repo'; \ - echo 'baseurl=http://artica.es/centos6'; \ - echo 'gpgcheck=0'; \ - echo 'enabled=1'; \ -} > /etc/yum.repos.d/pandorafms.repo - -RUN yum -y update; yum clean all; - -RUN yum --disablerepo=updates install -y firefox - -# Generic dependencies -RUN yum install -y \ +# Pandora FMS dependencies. +RUN yum install -y epel-release vim wget bzip2 curl && \ + yum install yum-utils && \ + yum install -y https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm && \ + yum-config-manager --disable mysql80-community && \ + yum-config-manager --enable mysql57-community && \ + yum install -y https://rpms.remirepo.net/enterprise/remi-release-7.rpm && \ + yum-config-manager --enable remi-php74 && \ + yum install -y gtk3 python-pip \ python-pip \ - xorg-x11-server-Xvfb; yum clean all; -RUN pip install pyvirtualdisplay -RUN pip install 'selenium==2.53.0' -RUN pip install unittest2 -RUN pip install testtools - -# Pandora FMS Console dependencies -RUN yum install -y \ - git \ + firefox \ + xorg-x11-server-Xvfb \ + x11vnc && \ + wget https://github.com/mozilla/geckodriver/releases/download/v0.26.0/geckodriver-v0.26.0-linux64.tar.gz && \ + tar xvzf geckodriver-v0.26.0-linux64.tar.gz && \ + mv geckodriver /usr/bin/ && rm geckodriver-v0.26.0-linux64.tar.gz && \ + pip install pyvirtualdisplay && \ + pip install "selenium==3.141" && \ + pip install unittest2 && \ + pip install testtools && \ + yum install -y git \ httpd \ cronie \ ntp \ openldap \ nfdump \ - wget \ - curl \ openldap \ plymouth \ xterm \ - php \ - php-gd \ - graphviz \ - php-mysql \ - php-pear-DB \ + php \ + php-gd \ + graphviz \ + php-mysqlnd \ + php-pear-DB \ php-pear \ php-pdo \ - php-mbstring \ - php-ldap \ - php-snmp \ - php-ldap \ - php-common \ - php-zip \ - php-xmlrpc \ + php-mbstring \ + php-ldap \ + php-snmp \ + php-ldap \ + php-common \ + php-zip \ + php-xmlrpc \ nmap \ xprobe2 \ mysql-server \ - mysql; yum clean all; - -# Pandora FMS Server dependencies -RUN yum install -y \ + mysql \ ntp \ - vim \ htop \ nano \ postfix \ - wmic \ - perl-HTML-Tree \ - perl-DBI \ - perl-DBD-mysql \ - perl-libwww-perl \ - perl-XML-Simple \ - perl-XML-SAX \ - perl-NetAddr-IP \ + perl-HTML-Tree \ + perl-DBI \ + perl-DBD-mysql \ + perl-libwww-perl \ + perl-XML-Simple \ + perl-XML-SAX \ + perl-NetAddr-IP \ perl-Scope-Guard \ - net-snmp \ - net-tools \ - perl-IO-Socket-INET6 \ - perl-Socket6 \ - nmap \ - sudo \ - xprobe2 \ - make \ - perl-CPAN \ - perl-JSON \ - net-snmp-perl \ - perl-Time-HiRes \ - perl-XML-Twig \ + net-snmp \ + net-tools \ + perl-IO-Socket-INET6 \ + perl-Socket6 \ + perl-Sys-Syslog \ + nmap \ + sudo \ + xprobe2 \ + make \ + perl-CPAN \ + perl-JSON \ + net-snmp-perl \ + perl-Time-HiRes \ + perl-XML-Twig \ perl-Encode-Locale \ net-snmp-utils \ fontconfig \ @@ -111,20 +88,19 @@ RUN yum install -y \ freetype-devel \ fontconfig-devel \ libstdc++ \ - perl-Test-Simple; yum clean all; + gettext \ + cpanminus && \ + cpanm Geo::IP && \ + mkdir -p /opt/phantomjs/bin && cd /opt/phantomjs/bin && \ + wget https://netcologne.dl.sourceforge.net/project/pandora/Tools%20and%20dependencies%20%28All%20versions%29/DEB%20Debian%2C%20Ubuntu/phantomjs && \ + chmod +x phantomjs && \ + ln -s /opt/phantomjs/bin/phantomjs /usr/bin/ && \ + yum update -y && \ + echo -e '#!/bin/bash\nhttpd -k $1\n' > /etc/init.d/httpd && \ + chmod +x /etc/init.d/httpd && \ + yum clean all -RUN wget http://rpmfind.net/linux/centos/6.9/os/i386/Packages/gettext-0.17-18.el6.i686.rpm; \ - yum localinstall -y gettext-0.17-18.el6.i686.rpm; \ - rm -rf gettext-0.17-18.el6.i686.rpm; \ - wget http://ftp.tu-chemnitz.de/pub/linux/dag/redhat/el6/en/x86_64/rpmforge/RPMS/perl-Geo-IP-1.38-1.el6.rf.x86_64.rpm; \ - yum localinstall -y perl-Geo-IP-1.38-1.el6.rf.x86_64.rpm; \ - rm -rf perl-Geo-IP-1.38-1.el6.rf.x86_64.rpm; - -#Install phantomjs required for export graph pdf. -RUN mkdir -p /opt/phantomjs/bin && cd /opt/phantomjs/bin; \ - wget https://netcologne.dl.sourceforge.net/project/pandora/Tools%20and%20dependencies%20%28All%20versions%29/DEB%20Debian%2C%20Ubuntu/phantomjs; \ - chmod +x phantomjs; \ - ln -s /opt/phantomjs/bin/phantomjs /usr/bin/; +ADD wmic /usr/bin/ # Install debugg dependencies. RUN yum install -y \ @@ -133,6 +109,7 @@ RUN yum install -y \ gcc \ gcc-c++ \ autoconf \ + file \ automake && \ pecl install Xdebug && \ git clone https://github.com/tideways/php-xhprof-extension && \ @@ -142,7 +119,8 @@ RUN yum install -y \ make && \ make install && \ cd .. && \ - rm -rf php-xhprof-extension + rm -rf php-xhprof-extension && \ + yum clean all #Exposing ports for: HTTP, SNMP Traps, Tentacle protocol EXPOSE 80 162/udp 41121 diff --git a/tests/install_console.py b/tests/install_console.py index 54ab91e518..ca594bf17e 100755 --- a/tests/install_console.py +++ b/tests/install_console.py @@ -10,7 +10,7 @@ if ('DISPLAY' not in os.environ): display.start() # Go to the installation page. -browser = webdriver.Firefox() +browser = webdriver.Firefox(timeout=15) browser.implicitly_wait(5) browser.get('http://localhost/pandora_console/install.php') assert("Pandora FMS - Installation Wizard" in browser.title) From 6c5789c25241176630dfd32b49f7fd26b5b282e7 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 2 Apr 2020 17:30:07 +0200 Subject: [PATCH 007/110] minor change --- tests/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index a0c8c78fd4..b8c80a9382 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -1,4 +1,4 @@ -FROM centos:centos7 +FROM centos:7 RUN { \ echo '[artica_pandorafms]'; \ From fa522ca89620c6f4c2f30705ac3e000423b2f35c Mon Sep 17 00:00:00 2001 From: marcos Date: Mon, 6 Apr 2020 17:41:56 +0200 Subject: [PATCH 008/110] fixed error --- pandora_console/general/noaccess.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pandora_console/general/noaccess.php b/pandora_console/general/noaccess.php index 8f70661296..c091215829 100644 --- a/pandora_console/general/noaccess.php +++ b/pandora_console/general/noaccess.php @@ -136,8 +136,11 @@ font-size:10pt;

'; - echo __('Please know that all attempts to access this page are recorded in security logs of %s System Database', get_product_name()); + echo '

'; + echo __('Please know that all attempts to access this page are recorded in security logs of %s System Database', get_product_name()); + if ($config['logged'] == false) { + session_destroy(); + } ?>
From 561150bc097337b45af29d7efd4ddee96d8cf556 Mon Sep 17 00:00:00 2001 From: Luis Calvo Date: Tue, 7 Apr 2020 13:42:44 +0200 Subject: [PATCH 009/110] Metaconsole const replaced by function on visual map --- pandora_console/include/functions_visual_map.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 0cc7d1f8ac..2cddd5d8c0 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -564,13 +564,13 @@ function visual_map_print_item( } if ($is_a_link_to_other_visualconsole) { - if (METACONSOLE == 1) { + if (is_metaconsole() === true) { $url = $config['homeurl'].'index.php?sec=screen&sec2=screens/screens&action=visualmap&pure=0&id_visualmap='.$layoutData['id_layout_linked'].'&refr=300'; } else { $url = $config['homeurl'].'index.php?sec=network&sec2=operation/visual_console/render_view&pure='.$config['pure'].'&id='.$layoutData['id_layout_linked']; } } else { - if (METACONSOLE == 1) { + if (is_metaconsole() === true) { $url = $config['homeurl'].'index.php?sec=estado&sec2=operation/agentes/status_monitor&refr=0&ag_group='.$layoutData['id_group'].'&ag_freestring=&module_option=1&ag_modulename=&moduletype=&datatype=&status=-1&sort_field=&sort=none&pure='; } else { $url = $config['homeurl'].'index.php?sec=estado&sec2=operation/agentes/estado_agente&group_id='.$layoutData['id_group']; From 0f28a9c5b40c54acefe63a964e013193cdd32c88 Mon Sep 17 00:00:00 2001 From: marcos Date: Tue, 7 Apr 2020 16:37:20 +0200 Subject: [PATCH 010/110] add message if mysqldump is not instaled --- pandora_server/util/pandora_backup.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_server/util/pandora_backup.sh b/pandora_server/util/pandora_backup.sh index 777c8666fc..a62f337c71 100755 --- a/pandora_server/util/pandora_backup.sh +++ b/pandora_server/util/pandora_backup.sh @@ -70,6 +70,9 @@ done # Execution +which mysqldump &>/dev/null +[ $? -eq 0 ] || echo -e "Command Mysqldump not found. \nIn order to make backups it is necessary to have mysqldump on your console." + if [ ! -e "$PANDORAPATH/include/config.php" ] then echo "Cannot read config file at $PANDORAPATH/include/config.php. Aborting" From f8f2da4d40e3821b4acd7bcadef5547151fdfdca Mon Sep 17 00:00:00 2001 From: marcos Date: Tue, 7 Apr 2020 18:40:47 +0200 Subject: [PATCH 011/110] notify for allowoverride --- .../include/class/ConsoleSupervisor.php | 50 +++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index 9a588782a9..84c7b2b217 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -215,6 +215,12 @@ class ConsoleSupervisor */ $this->checkConsoleServerVersions(); + /* + * Check if AllowOverride is None or All. + * NOTIF.ALLOWOVERIDE.MESSAGE + */ + $this->checkAllowOverrideEnabled(); + } @@ -440,6 +446,11 @@ class ConsoleSupervisor */ $this->checkConsoleServerVersions(); + /* + * Check if AllowOverride is None or All. + */ + $this->checkAllowOverrideEnabled(); + } @@ -606,6 +617,7 @@ class ConsoleSupervisor case 'NOTIF.UPDATEMANAGER.MINOR': case 'NOTIF.UPDATEMANAGER.MESSAGES': case 'NOTIF.CRON.CONFIGURED': + case 'NOTIF.ALLOWOVERRIDE.MESSAGE': default: // NOTIF.SERVER.STATUS. // NOTIF.SERVER.STATUS.ID_SERVER. @@ -2360,4 +2372,42 @@ class ConsoleSupervisor } + /** + * Check if AllowOveride is None or All. + * + * @return void + */ + public function checkAllowOverrideEnabled() + { + global $config; + + $message = 'If AllowOverride is disabled, .htaccess will not works.'; + $message .= '
Please check /etc/httpd/conf/httpd.conf for keep this problems';
+        $file = file_get_contents('/etc/httpd/conf/httpd.conf');
+        $file_lines = preg_split("#\r?\n#", $file, -1, PREG_SPLIT_NO_EMPTY);
+        $is_none = false;
+        foreach ($file_lines as $line) {
+            if (preg_match('/ AllowOverride/', $line)) {
+                $result = explode(' ', $line);
+                if ($result[9] == 'None') {
+                    $is_none = true;
+                    $this->notify(
+                        [
+                            'type'    => 'NOTIF.ALLOWOVERRIDE.MESSAGE',
+                            'title'   => __('AllowOverride is disabled'),
+                            'message' => __($message),
+                            'url'     => '',
+                        ]
+                    );
+                }
+            }
+        }
+
+        if (!$is_none) {
+            $this->cleanNotifications('NOTIF.ALLOWOVERRIDE.MESSAGE');
+        }
+
+    }
+
+
 }

From c44cb889e0765df630a28672ec14ffdd174d5189 Mon Sep 17 00:00:00 2001
From: marcos 
Date: Tue, 7 Apr 2020 18:49:01 +0200
Subject: [PATCH 012/110] updates

---
 pandora_console/include/class/ConsoleSupervisor.php | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php
index 84c7b2b217..0f2410fa4a 100644
--- a/pandora_console/include/class/ConsoleSupervisor.php
+++ b/pandora_console/include/class/ConsoleSupervisor.php
@@ -2383,9 +2383,12 @@ class ConsoleSupervisor
 
         $message = 'If AllowOverride is disabled, .htaccess will not works.';
         $message .= '
Please check /etc/httpd/conf/httpd.conf for keep this problems';
+
+        // Get content file.
         $file = file_get_contents('/etc/httpd/conf/httpd.conf');
         $file_lines = preg_split("#\r?\n#", $file, -1, PREG_SPLIT_NO_EMPTY);
         $is_none = false;
+
         foreach ($file_lines as $line) {
             if (preg_match('/ AllowOverride/', $line)) {
                 $result = explode(' ', $line);
@@ -2403,6 +2406,7 @@ class ConsoleSupervisor
             }
         }
 
+        // Cleanup notifications if AllowOverride is All.
         if (!$is_none) {
             $this->cleanNotifications('NOTIF.ALLOWOVERRIDE.MESSAGE');
         }

From ff3b285f0893cdca88412eda909684c7cacd7f49 Mon Sep 17 00:00:00 2001
From: marcos 
Date: Wed, 8 Apr 2020 09:45:18 +0200
Subject: [PATCH 013/110] add url on notify

---
 pandora_console/include/class/ConsoleSupervisor.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php
index 0f2410fa4a..3d54ec7f9a 100644
--- a/pandora_console/include/class/ConsoleSupervisor.php
+++ b/pandora_console/include/class/ConsoleSupervisor.php
@@ -2399,7 +2399,7 @@ class ConsoleSupervisor
                             'type'    => 'NOTIF.ALLOWOVERRIDE.MESSAGE',
                             'title'   => __('AllowOverride is disabled'),
                             'message' => __($message),
-                            'url'     => '',
+                            'url'     => ui_get_full_url('index.php'),
                         ]
                     );
                 }

From e86f72958d4e53281cd3476979bd8edde0155780 Mon Sep 17 00:00:00 2001
From: marcos 
Date: Wed, 8 Apr 2020 10:36:40 +0200
Subject: [PATCH 014/110] update AllowOverride notify

---
 pandora_console/include/class/ConsoleSupervisor.php | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php
index 3d54ec7f9a..fa5a5d51f9 100644
--- a/pandora_console/include/class/ConsoleSupervisor.php
+++ b/pandora_console/include/class/ConsoleSupervisor.php
@@ -2389,10 +2389,14 @@ class ConsoleSupervisor
         $file_lines = preg_split("#\r?\n#", $file, -1, PREG_SPLIT_NO_EMPTY);
         $is_none = false;
 
+        $i = 0;
         foreach ($file_lines as $line) {
-            if (preg_match('/ AllowOverride/', $line)) {
+            $i++;
+
+            // Check Line and content.
+            if (preg_match('/ AllowOverride/', $line) && $i === 311) {
                 $result = explode(' ', $line);
-                if ($result[9] == 'None') {
+                if ($result[5] == 'None') {
                     $is_none = true;
                     $this->notify(
                         [

From 9931b16793707dfff249d8f5afe06ac467abe467 Mon Sep 17 00:00:00 2001
From: marcos 
Date: Wed, 8 Apr 2020 17:01:18 +0200
Subject: [PATCH 015/110] add nombre in api_get_i_name_by_alias API method

---
 pandora_console/include/functions_api.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php
index 37ead3a465..b790e5f8cc 100644
--- a/pandora_console/include/functions_api.php
+++ b/pandora_console/include/functions_api.php
@@ -14294,7 +14294,7 @@ function api_get_agents_id_name_by_cluster_name($cluster_name, $trash1, $trash2,
  * @param $trash2
  * @param string $returnType
  *  Example:
- *    api.php?op=get&op2=agents_id_name_by_alias&return_type=json&apipass=1234&user=admin&pass=pandora&id=pandrora&id2=strict
+ *    api.php?op=get&op2=agents_id_name_by_alias&return_type=json&apipass=1234&user=admin&pass=pandora&id=pandorafms&id2=strict
  */
 function api_get_agents_id_name_by_alias($alias, $strict, $trash2, $returnType)
 {
@@ -14307,9 +14307,9 @@ function api_get_agents_id_name_by_alias($alias, $strict, $trash2, $returnType)
     }
 
     if (is_metaconsole()) {
-        $all_agents = db_get_all_rows_sql("SELECT alias, id_agente, id_tagente,id_tmetaconsole_setup as 'id_server', server_name FROM tmetaconsole_agent WHERE $where_clause");
+        $all_agents = db_get_all_rows_sql("SELECT alias, nombre, id_agente, id_tagente,id_tmetaconsole_setup as 'id_server', server_name FROM tmetaconsole_agent WHERE $where_clause");
     } else {
-        $all_agents = db_get_all_rows_sql("SELECT alias, id_agente from tagente WHERE $where_clause");
+        $all_agents = db_get_all_rows_sql("SELECT alias, nombre, id_agente from tagente WHERE $where_clause");
     }
 
     if ($all_agents !== false) {

From db7eaaaf20406ec71ce966c71c5c846100c9530e Mon Sep 17 00:00:00 2001
From: marcos 
Date: Mon, 13 Apr 2020 10:36:23 +0200
Subject: [PATCH 016/110] created function to get id_event from
 tmetaconsole_even api

---
 pandora_console/include/functions_api.php | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php
index 37ead3a465..f9d0111919 100644
--- a/pandora_console/include/functions_api.php
+++ b/pandora_console/include/functions_api.php
@@ -15990,3 +15990,22 @@ function util_api_check_agent_and_print_error($id_agent, $returnType, $access='A
 
     return false;
 }
+
+
+function api_get_event_mcid($server_id, $console_event_id, $trash2, $returnType)
+{
+    global $config;
+
+    if (is_metaconsole()) {
+        $mc_event_id = db_get_all_rows_sql("SELECT id_evento FROM tmetaconsole_event WHERE id_source_event = $console_event_id AND server_id = $server_id ");
+        if ($mc_event_id !== false) {
+            $query = "SELECT id_evento FROM tmetaconsole_event WHERE id_source_event = $console_event_id AND server_id = $server_id ";
+            returnData($returnType, ['type' => 'string', 'data' => $mc_event_id]);
+        } else {
+            returnError('id_not_found', $console_event_id.' on '.$server_id);
+        }
+    } else {
+        returnError('forbidden', 'string');
+        return;
+    }
+}

From 045f115d950b7a45434ed4bcd7f5c3e21d0b4026 Mon Sep 17 00:00:00 2001
From: marcos 
Date: Mon, 13 Apr 2020 10:54:37 +0200
Subject: [PATCH 017/110] documented api function

---
 pandora_console/include/functions_api.php | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php
index f9d0111919..c0e671e8d1 100644
--- a/pandora_console/include/functions_api.php
+++ b/pandora_console/include/functions_api.php
@@ -15992,6 +15992,19 @@ function util_api_check_agent_and_print_error($id_agent, $returnType, $access='A
 }
 
 
+/**
+ * Function for get event id and node id, then we get in return the Metaconsole event ID.
+ *
+ * @param [string] $server_id        id server (Node)
+ * @param [string] $console_event_id console Id node event in tmetaconsole_event
+ * @param [string] $trash2           don't use
+ * @param [string] $returnType
+ *
+ * Example
+ * api.php?op=get&op2=event_mcid&return_type=json&id=0&id2=0&apipass=1234&user=admin&pass=pandora
+ *
+ * @return void
+ */
 function api_get_event_mcid($server_id, $console_event_id, $trash2, $returnType)
 {
     global $config;

From d5a7d751699b7300a986dc25aba78a2f2dcc9bcb Mon Sep 17 00:00:00 2001
From: marcos 
Date: Mon, 13 Apr 2020 11:00:11 +0200
Subject: [PATCH 018/110] update function get id_event from meta api

---
 pandora_console/include/functions_api.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php
index c0e671e8d1..8eadcdb624 100644
--- a/pandora_console/include/functions_api.php
+++ b/pandora_console/include/functions_api.php
@@ -16012,10 +16012,9 @@ function api_get_event_mcid($server_id, $console_event_id, $trash2, $returnType)
     if (is_metaconsole()) {
         $mc_event_id = db_get_all_rows_sql("SELECT id_evento FROM tmetaconsole_event WHERE id_source_event = $console_event_id AND server_id = $server_id ");
         if ($mc_event_id !== false) {
-            $query = "SELECT id_evento FROM tmetaconsole_event WHERE id_source_event = $console_event_id AND server_id = $server_id ";
             returnData($returnType, ['type' => 'string', 'data' => $mc_event_id]);
         } else {
-            returnError('id_not_found', $console_event_id.' on '.$server_id);
+            returnError('id_not_found', 'string');
         }
     } else {
         returnError('forbidden', 'string');

From 03db071ce430aff7da9f4725ca5b4376f7370e58 Mon Sep 17 00:00:00 2001
From: alejandro-campos 
Date: Tue, 14 Apr 2020 16:53:43 +0200
Subject: [PATCH 019/110] fixed macros for alert of correlated events

---
 pandora_server/lib/PandoraFMS/Core.pm | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm
index 2eff00077a..7818fb4279 100644
--- a/pandora_server/lib/PandoraFMS/Core.pm
+++ b/pandora_server/lib/PandoraFMS/Core.pm
@@ -929,10 +929,12 @@ sub pandora_execute_alert ($$$$$$$$$;$$) {
 				$pa_config,
 				"$text (" . safe_output($alert->{'name'}) . ") " . (defined ($module) ? 'assigned to ('. safe_output($module->{'nombre'}) . ")" : ""),
 				(defined ($agent) ? $agent->{'id_grupo'} : 0),
-				(defined ($agent) ? $agent->{'id_agente'} : 0),
+				# id agent.
+				0,
 				$severity,
 				(defined ($alert->{'id_template_module'}) ? $alert->{'id_template_module'} : 0),
-				(defined ($alert->{'id_agent_module'}) ? $alert->{'id_agent_module'} : 0),
+				# id agent module.
+				0,
 				$event,
 				0,
 				$dbh,
@@ -4178,7 +4180,9 @@ sub on_demand_macro($$$$$$;$) {
 		my $unit_mod = get_db_value ($dbh, 'SELECT unit FROM tagente_modulo WHERE id_agente_modulo = ?', $id_mod);
 
 		my $field_value = "";
-		if ($type_mod eq 3 || $type_mod eq 23|| $type_mod eq 17 || $type_mod eq 10 || $type_mod eq 33 ){
+		if (defined($type_mod)
+			&& ($type_mod eq 3 || $type_mod eq 23|| $type_mod eq 17 || $type_mod eq 10 || $type_mod eq 33 )
+		) {
 			$field_value = get_db_value($dbh, 'SELECT datos FROM tagente_datos_string where id_agente_modulo = ? order by utimestamp desc limit 1', $id_mod);
 		}
 		else{

From 8ae8ac45f5c662ce517544594d05df1cda76b517 Mon Sep 17 00:00:00 2001
From: Daniel Maya 
Date: Wed, 15 Apr 2020 15:50:08 +0200
Subject: [PATCH 020/110] Ent 5690 vulnerabilidad critica inyeccion de comandos
 en llamada a event response

---
 pandora_console/include/ajax/events.php       | 10 ++--
 .../include/javascript/pandora_events.js      | 53 +++++++++++--------
 .../operation/events/events.build_table.php   |  3 +-
 pandora_console/operation/events/events.php   |  3 ++
 4 files changed, 42 insertions(+), 27 deletions(-)

diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php
index b926c5a13a..60c74e9731 100644
--- a/pandora_console/include/ajax/events.php
+++ b/pandora_console/include/ajax/events.php
@@ -917,9 +917,11 @@ if ($get_response) {
 if ($perform_event_response) {
     global $config;
 
-    $command = get_parameter('target', '');
-
     $response_id = get_parameter('response_id');
+    $event_id = (int) get_parameter('event_id');
+    $server_id = (int) get_parameter('server_id', 0);
+
+    $command = events_get_response_target($event_id, $response_id, $server_id);
 
     $event_response = db_get_row('tevent_response', 'id', $response_id);
 
@@ -1017,6 +1019,7 @@ if ($dialogue_event_response) {
     $show_execute_again_btn = get_parameter('show_execute_again_btn');
     $out_iterator = get_parameter('out_iterator');
     $event_response = db_get_row('tevent_response', 'id', $response_id);
+    $server_id = get_parameter('server_id');
 
     $event = db_get_row('tevento', 'id_evento', $event_id);
 
@@ -1067,7 +1070,8 @@ if ($dialogue_event_response) {
                 echo "
"; echo "
'; } break; diff --git a/pandora_console/include/javascript/pandora_events.js b/pandora_console/include/javascript/pandora_events.js index 8a2546ad09..e176b863ad 100644 --- a/pandora_console/include/javascript/pandora_events.js +++ b/pandora_console/include/javascript/pandora_events.js @@ -118,30 +118,26 @@ function execute_response(event_id, server_id) { } response["target"] = get_response_target(event_id, response_id, server_id); + response["event_id"] = event_id; + response["server_id"] = server_id; - switch (response["type"]) { - case "command": - show_response_dialog(event_id, response_id, response); - break; - case "url": - if (response["new_window"] == 1) { - window.open(response["target"], "_blank"); - } else { - show_response_dialog(event_id, response_id, response); - } - break; + if (response["type"] == "url" && response["new_window"] == 1) { + window.open(response["target"], "_blank"); + } else { + show_response_dialog(response_id, response); } } //Show the modal window of an event response -function show_response_dialog(event_id, response_id, response) { +function show_response_dialog(response_id, response) { var params = []; params.push("page=include/ajax/events"); params.push("dialogue_event_response=1"); params.push("massive=0"); - params.push("event_id=" + event_id); + params.push("event_id=" + response["event_id"]); params.push("target=" + response["target"]); params.push("response_id=" + response_id); + params.push("server_id=" + response["server_id"]); jQuery.ajax({ data: params.join("&"), @@ -159,7 +155,7 @@ function show_response_dialog(event_id, response_id, response) { draggable: true, modal: false, open: function() { - perform_response(response["target"], response_id); + perform_response(response, response_id); }, width: response["modal_width"], height: response["modal_height"] @@ -171,7 +167,6 @@ function show_response_dialog(event_id, response_id, response) { //Show the modal window of event responses when multiple events are selected function show_massive_response_dialog( - event_id, response_id, response, out_iterator, @@ -183,13 +178,14 @@ function show_massive_response_dialog( params.push("massive=1"); params.push("end=" + end); params.push("out_iterator=" + out_iterator); - params.push("event_id=" + event_id); + params.push("event_id=" + response["event_id"]); params.push("target=" + response["target"]); params.push("response_id=" + response_id); + params.push("server_id=" + response["server_id"]); jQuery.ajax({ data: params.join("&"), - response_tg: response["target"], + response_tg: response, response_id: response_id, out_iterator: out_iterator, type: "POST", @@ -384,7 +380,7 @@ function get_response_target( } // Perform a response and put the output into a div -function perform_response(target, response_id) { +function perform_response(response, response_id) { $("#re_exec_command").hide(); $("#response_loading_command").show(); $("#response_out").html(""); @@ -392,8 +388,10 @@ function perform_response(target, response_id) { var params = []; params.push("page=include/ajax/events"); params.push("perform_event_response=1"); - params.push("target=" + target); + params.push("target=" + response["target"]); params.push("response_id=" + response_id); + params.push("event_id=" + response["event_id"]); + params.push("server_id=" + response["server_id"]); jQuery.ajax({ data: params.join("&"), @@ -413,7 +411,7 @@ function perform_response(target, response_id) { } // Perform a response and put the output into a div -function perform_response_massive(target, response_id, out_iterator) { +function perform_response_massive(response, response_id, out_iterator) { $("#re_exec_command").hide(); $("#response_loading_command_" + out_iterator).show(); $("#response_out_" + out_iterator).html(""); @@ -421,8 +419,10 @@ function perform_response_massive(target, response_id, out_iterator) { var params = []; params.push("page=include/ajax/events"); params.push("perform_event_response=1"); - params.push("target=" + target); + params.push("target=" + response["target"]); params.push("response_id=" + response_id); + params.push("event_id=" + response["event_id"]); + params.push("server_id=" + response["server_id"]); jQuery.ajax({ data: params.join("&"), @@ -916,17 +916,24 @@ function check_massive_response_event( $(".chk_val:checked").each(function() { var event_id = $(this).val(); - var server_id = $("#hidden-server_id_" + event_id).val(); + var meta = $("#hidden-meta").val(); + var server_id = 0; + if (meta) { + server_id = $("#hidden-server_id_" + event_id).val(); + } + response["target"] = get_response_target( event_id, response_id, server_id, response_command ); + response["server_id"] = server_id; + response["event_id"] = event_id; if (total_checked - 1 === counter) end = 1; - show_massive_response_dialog(event_id, response_id, response, counter, end); + show_massive_response_dialog(response_id, response, counter, end); counter++; }); diff --git a/pandora_console/operation/events/events.build_table.php b/pandora_console/operation/events/events.build_table.php index a07ec2a703..943068c0ec 100644 --- a/pandora_console/operation/events/events.build_table.php +++ b/pandora_console/operation/events/events.build_table.php @@ -1119,12 +1119,13 @@ if ($group_rep == 2) { server_id, response_command ); + response["server_id"] = server_id; + response["event_id"] = event_id; if (total_checked-1 === counter) end=1; show_massive_response_dialog( - event_id, response_id, response, counter, diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index c842d65e59..1c91ebaf54 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -1765,6 +1765,9 @@ function process_datatables_item(item) { evn += '('+item.event_rep+') '; } evn += item.evento+''; + if(item.meta === true) { + evn += ''; + } item.mini_severity = '
'; item.mini_severity += output; From 1b028be67f74bf060531abdc2b528cb232eb5e9d Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 16 Apr 2020 01:00:14 +0200 Subject: [PATCH 021/110] 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 41729be605..90a0cb4d1b 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.744-200415 +Version: 7.0NG.744-200416 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 109cb398bf..5cddedcf1d 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.744-200415" +pandora_version="7.0NG.744-200416" 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 4a71ee35b9..f9cc816d7d 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.744'; -use constant AGENT_BUILD => '200415'; +use constant AGENT_BUILD => '200416'; # 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 22bca871b1..d44e7c3010 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_unix %define version 7.0NG.744 -%define release 200415 +%define release 200416 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 4bbbce0199..e253b321e8 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.744 -%define release 200415 +%define release 200416 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 5ebb27d919..08a2017f9a 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200415" +PI_BUILD="200416" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 7cd5115d61..17cf19fe47 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200415} +{200416} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f87f3ff562..232c10e590 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.744(Build 200415)") +#define PANDORA_VERSION ("7.0NG.744(Build 200416)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 75104f3f81..62511726cc 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.744(Build 200415))" + VALUE "ProductVersion", "(7.0NG.744(Build 200416))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index af277c616a..219cebfcea 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.744-200415 +Version: 7.0NG.744-200416 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 7a1abea1ab..5c7b889753 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.744-200415" +pandora_version="7.0NG.744-200416" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 34244c20d8..995cb53014 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 = 'PC200415'; +$build_version = 'PC200416'; $pandora_version = 'v7.0NG.744'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 89ebb7e7a2..83e6ce6634 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 59af01f729..69ef98fe21 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.744 -%define release 200415 +%define release 200416 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 88f07557e7..5bb2593f9e 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.744 -%define release 200415 +%define release 200416 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 22d69f90c2..20f13168c0 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200415" +PI_BUILD="200416" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index bb343ef78f..fe96296c64 100644 --- 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.744 PS200415"; +my $version = "7.0NG.744 PS200416"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index ca987efd80..c19d3e1111 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.744 PS200415"; +my $version = "7.0NG.744 PS200416"; # save program name for logging my $progname = basename($0); From bcb969c3afaad15f94e31416ae14133157cea137 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 Apr 2020 12:39:55 +0200 Subject: [PATCH 022/110] Fixes name resolution --- .../lib/PandoraFMS/DiscoveryServer.pm | 74 ++++++++++++++----- pandora_server/lib/PandoraFMS/Recon/Base.pm | 14 +++- 2 files changed, 66 insertions(+), 22 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 903a9014c3..215c6983fd 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1019,26 +1019,35 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { # Agent creation. my $agent_id = $data->{'agent'}{'agent_id'}; my $agent_learning; + my $agent_data; if (defined($agent_id) && $agent_id > 0) { - $agent_learning = get_db_value( + $agent_data = get_db_single_row( $self->{'dbh'}, - 'SELECT modo FROM tagente WHERE id_agente = ?', + 'SELECT * FROM tagente WHERE id_agente = ?', $agent_id ); + $agent_learning = $agent_data->{'modo'} if ref($agent_data) eq 'HASH'; } if (!defined($agent_learning)) { # Agent id does not exists or is invalid. - # Check if has been created by another process. - $agent_id = get_db_value( - $self->{'dbh'}, - 'SELECT id_agente FROM tagente WHERE nombre = ?', - safe_input($data->{'agent'}{'nombre'}) - ); + # Check if has been created by another process, if not found. + $agent_data = PandoraFMS::Core::locate_agent( + $self->{'pa_config'}, $self->{'dbh'}, $data->{'agent'}{'direccion'} + ) if ref($agent_data) ne 'HASH'; - if (!defined($agent_id) || $agent_id <= 0) { + $agent_id = $agent_data->{'id_agente'} if ref($agent_data) eq 'HASH'; + if (ref($agent_data) eq 'HASH' && $agent_data->{'modo'} != 1) { + # Agent previously exists, but is not in learning mode, so skip + # modules scan and jump directly to parent analysis. + $data->{'agent'}{'agent_id'} = $agent_id; + push @agents, $data->{'agent'}; + next; + } + + if (!defined($agent_id) || $agent_id <= 0 || !defined($agent_data)) { # Agent creation. $agent_id = pandora_create_agent( $self->{'pa_config'}, $self->{'servername'}, $data->{'agent'}{'nombre'}, @@ -1048,6 +1057,22 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { $data->{'agent'}{'timezone_offset'} ); + # Add found IP addresses to the agent. + foreach my $ip_addr ($self->get_addresses($data->{'agent'}{'direccion'})) { + my $addr_id = get_addr_id($self->{'dbh'}, $ip_addr); + $addr_id = add_address($self->{'dbh'}, $ip_addr) unless ($addr_id > 0); + next unless ($addr_id > 0); + + # Assign the new address to the agent + my $agent_addr_id = get_agent_addr_id($self->{'dbh'}, $addr_id, $agent_id); + if ($agent_addr_id <= 0) { + db_do( + $self->{'dbh'}, 'INSERT INTO taddress_agent (`id_a`, `id_agent`) + VALUES (?, ?)', $addr_id, $agent_id + ); + } + } + # Agent autoconfiguration. if (is_enabled($self->{'autoconfiguration_enabled'})) { my $agent_data = PandoraFMS::DB::get_db_single_row( @@ -1215,12 +1240,10 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { ); } - } # Update parent relationships. foreach my $agent (@agents) { - # Avoid processing if does not exist. next unless (defined($agent->{'agent_id'})); @@ -1228,10 +1251,10 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { next unless defined($agent->{'parent'}); # Get parent id. - my $parent = get_agent_from_addr($self->{'dbh'}, $agent->{'parent'}); - if (!defined($parent)) { - $parent = get_agent_from_name($self->{'dbh'}, $agent->{'parent'}); - } + my $parent = PandoraFMS::Core::locate_agent( + $self->{'pa_config'}, $self->{'dbh'}, $agent->{'parent'} + ); + next unless defined($parent); # Is the agent in learning mode? @@ -1286,7 +1309,10 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { my @hosts = keys %{$self->{'agents_found'}}; $self->{'step'} = STEP_PROCESSING; my ($progress, $step) = (90, 10.0 / scalar(@hosts)); # From 90% to 100%. - foreach my $label (keys %{$self->{'agents_found'}}) { + + foreach my $addr (keys %{$self->{'agents_found'}}) { + my $label = $self->{'agents_found'}->{$addr}{'agent'}{'nombre'}; + $self->call('update_progress', $progress); $progress += $step; # Store temporally. Wait user approval. @@ -1294,7 +1320,7 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { eval { local $SIG{__DIE__}; $encoded = encode_base64( - encode_json($self->{'agents_found'}->{$label}) + encode_json($self->{'agents_found'}->{$addr}) ); }; @@ -1307,7 +1333,7 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { if (defined($id)) { # Already defined. - $self->{'agents_found'}{$label}{'id'} = $id; + $self->{'agents_found'}{$addr}{'id'} = $id; db_do( $self->{'dbh'}, @@ -1321,7 +1347,7 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { } # Insert. - $self->{'agents_found'}{$label}{'id'} = db_insert( + $self->{'agents_found'}{$addr}{'id'} = db_insert( $self->{'dbh'}, 'id', 'INSERT INTO tdiscovery_tmp_agents (`id_rt`,`label`,`data`,`created`) ' @@ -1615,6 +1641,16 @@ sub PandoraFMS::Recon::Base::set_parent($$$) { $self->{'agents_found'}{$host}{'agent'}{'parent'} = $parent; + # Add host alive module for parent. + $self->add_module($parent, + { + 'ip_target' => $parent, + 'name' => "Host Alive", + 'description' => '', + 'type' => 'remote_icmp_proc', + 'id_modulo' => 2, + } + ); } ################################################################################ diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index 01f8e824b8..0fa2a7b5d7 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -8,6 +8,7 @@ use warnings; # Default lib dir for RPM and DEB packages use NetAddr::IP; +use IO::Socket::INET; use POSIX qw/ceil/; use Socket qw/inet_aton/; @@ -1320,16 +1321,23 @@ sub remote_arp($$) { ################################################################################ sub prepare_agent($$) { my ($self, $addr) = @_; + + # Resolve hostnames. + my $host_name = (($self->{'resolve_names'} == 1) ? gethostbyaddr(inet_aton($addr), AF_INET) : $addr); + + # Fallback to device IP if host name could not be resolved. + $host_name = $addr if (!defined($host_name) || $host_name eq ''); + $self->{'agents_found'} = {} if ref($self->{'agents_found'}) ne 'HASH'; # Already initialized. - return if ref($self->{'agents_found'}->{$addr}) eq 'HASH'; + return if ref($self->{'agents_found'}->{$host_name}) eq 'HASH'; $self->{'agents_found'}->{$addr} = { 'agent' => { - 'nombre' => $addr, + 'nombre' => $host_name, 'direccion' => $addr, - 'alias' => $addr, + 'alias' => $host_name, }, 'pen' => $self->{'pen'}{$addr}, 'modules' => [], From f9c3d480ca866434c5759cdfe601745d4817d4bf Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 Apr 2020 12:50:44 +0200 Subject: [PATCH 023/110] Avoid empty references --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 215c6983fd..eaa43e388f 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1311,6 +1311,8 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { my ($progress, $step) = (90, 10.0 / scalar(@hosts)); # From 90% to 100%. foreach my $addr (keys %{$self->{'agents_found'}}) { + next if is_empty($addr); + my $label = $self->{'agents_found'}->{$addr}{'agent'}{'nombre'}; $self->call('update_progress', $progress); From f84760e448f40c44abcd1d12b68161c6438ccaf4 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 Apr 2020 12:54:47 +0200 Subject: [PATCH 024/110] Avoid candidates without label (indirect related) --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index eaa43e388f..6dedc5fe0b 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1311,10 +1311,10 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { my ($progress, $step) = (90, 10.0 / scalar(@hosts)); # From 90% to 100%. foreach my $addr (keys %{$self->{'agents_found'}}) { - next if is_empty($addr); - my $label = $self->{'agents_found'}->{$addr}{'agent'}{'nombre'}; + next if is_empty($label); + $self->call('update_progress', $progress); $progress += $step; # Store temporally. Wait user approval. From 0614c4b6ce7e7dab974408c5a7ef67d4391289ba Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 Apr 2020 13:08:56 +0200 Subject: [PATCH 025/110] fix alias --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 6dedc5fe0b..dcd3238a26 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1054,7 +1054,8 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { $data->{'agent'}{'direccion'}, $self->{'task_data'}{'id_group'}, $parent_id, $os_id, $data->{'agent'}->{'description'}, $data->{'agent'}{'interval'}, $self->{'dbh'}, - $data->{'agent'}{'timezone_offset'} + $data->{'agent'}{'timezone_offset'}, undef, undef, undef, undef, + undef, undef, 1, $data->{'agent'}{'alias'} ); # Add found IP addresses to the agent. From e3f1f5fe6ece6b12394ccacd8e894bd332e3968b Mon Sep 17 00:00:00 2001 From: marcos Date: Thu, 16 Apr 2020 13:44:23 +0200 Subject: [PATCH 026/110] change url for pop up reverse proxy --- pandora_console/include/functions_ui.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 0ce95daf78..a90cefc286 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -5636,7 +5636,7 @@ function ui_get_snapshot_link($params, $only_params=false) $params = array_merge($default_params, $params); // First parameter of js winopeng_var. - $page = $config['homeurl_static'].'/operation/agentes/snapshot_view.php'; + $page = $config['homeurl'].'/operation/agentes/snapshot_view.php'; $url = $page.'?id='.$params['id_module'].'&label='.rawurlencode(urlencode(io_safe_output($params['module_name']))).'&id_node='.$params['id_node']; From fa0b5760a94e365d2c5262622876731c6c6f8186 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 Apr 2020 14:06:41 +0200 Subject: [PATCH 027/110] simplified agents --- .../lib/PandoraFMS/DiscoveryServer.pm | 24 ++++++++------- pandora_server/lib/PandoraFMS/Recon/Base.pm | 29 +++++++++++++++++++ 2 files changed, 42 insertions(+), 11 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index dcd3238a26..86151e0588 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1059,18 +1059,20 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { ); # Add found IP addresses to the agent. - foreach my $ip_addr ($self->get_addresses($data->{'agent'}{'direccion'})) { - my $addr_id = get_addr_id($self->{'dbh'}, $ip_addr); - $addr_id = add_address($self->{'dbh'}, $ip_addr) unless ($addr_id > 0); - next unless ($addr_id > 0); + if (ref($data->{'other_ips'}) eq 'ARRAY') { + foreach my $ip_addr (@{$data->{'other_ips'}}) { + my $addr_id = get_addr_id($self->{'dbh'}, $ip_addr); + $addr_id = add_address($self->{'dbh'}, $ip_addr) unless ($addr_id > 0); + next unless ($addr_id > 0); - # Assign the new address to the agent - my $agent_addr_id = get_agent_addr_id($self->{'dbh'}, $addr_id, $agent_id); - if ($agent_addr_id <= 0) { - db_do( - $self->{'dbh'}, 'INSERT INTO taddress_agent (`id_a`, `id_agent`) - VALUES (?, ?)', $addr_id, $agent_id - ); + # Assign the new address to the agent + my $agent_addr_id = get_agent_addr_id($self->{'dbh'}, $addr_id, $agent_id); + if ($agent_addr_id <= 0) { + db_do( + $self->{'dbh'}, 'INSERT INTO taddress_agent (`id_a`, `id_agent`) + VALUES (?, ?)', $addr_id, $agent_id + ); + } } } diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index 0fa2a7b5d7..4b3a920f9f 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -172,6 +172,9 @@ sub new { # Visited devices (initially empty). visited_devices => {}, + # Inverse relationship for visited devices (initially empty). + addresses => {}, + # Per device VLAN cache. vlan_cache => {}, vlan_cache_enabled => 1, # User configuration. Globally disables the VLAN cache. @@ -309,6 +312,26 @@ sub add_addresses($$$) { my ($self, $device, $ip_address) = @_; $self->{'visited_devices'}->{$device}->{'addr'}->{$ip_address} = ''; + + # Inverse relationship. + $self->{'addresses'}{$ip_address} = $device; + + # Update IP references. + if (ref($self->{'agents_found'}{$device}) eq 'HASH') { + my @addresses = $self->get_addresses($device); + $self->{'agents_found'}{$device}{'other_ips'} = \@addresses; + $self->call('message', 'New IP detected for '.$device.': '.$ip_address, 5); + } + +} + +################################################################################ +# Get main address from given address (multi addressed devices). +################################################################################ +sub get_main_address($$) { + my ($self, $addr) = @_; + + return $self->{'addresses'}{$addr}; } ################################################################################ @@ -1322,6 +1345,10 @@ sub remote_arp($$) { sub prepare_agent($$) { my ($self, $addr) = @_; + # Avoid multi-ip agent. No reference, is first encounter. + my $main_address = $self->get_main_address($addr); + return unless is_empty($main_address); + # Resolve hostnames. my $host_name = (($self->{'resolve_names'} == 1) ? gethostbyaddr(inet_aton($addr), AF_INET) : $addr); @@ -1333,12 +1360,14 @@ sub prepare_agent($$) { # Already initialized. return if ref($self->{'agents_found'}->{$host_name}) eq 'HASH'; + my @addresses = $self->get_addresses($addr); $self->{'agents_found'}->{$addr} = { 'agent' => { 'nombre' => $host_name, 'direccion' => $addr, 'alias' => $host_name, }, + 'other_ips' => \@addresses, 'pen' => $self->{'pen'}{$addr}, 'modules' => [], }; From b3ed5dab63bec757d122c61d30451afd58aaa06d Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 Apr 2020 14:29:35 +0200 Subject: [PATCH 028/110] Update new ips detected --- .../lib/PandoraFMS/DiscoveryServer.pm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 86151e0588..8cee68d538 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1121,6 +1121,25 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { 'SELECT modo FROM tagente WHERE id_agente = ?', $agent_id ); + + # Update new IPs. + # Add found IP addresses to the agent. + if (ref($data->{'other_ips'}) eq 'ARRAY') { + foreach my $ip_addr (@{$data->{'other_ips'}}) { + my $addr_id = get_addr_id($self->{'dbh'}, $ip_addr); + $addr_id = add_address($self->{'dbh'}, $ip_addr) unless ($addr_id > 0); + next unless ($addr_id > 0); + + # Assign the new address to the agent + my $agent_addr_id = get_agent_addr_id($self->{'dbh'}, $addr_id, $agent_id); + if ($agent_addr_id <= 0) { + db_do( + $self->{'dbh'}, 'INSERT INTO taddress_agent (`id_a`, `id_agent`) + VALUES (?, ?)', $addr_id, $agent_id + ); + } + } + } } $data->{'agent'}{'agent_id'} = $agent_id; From 290abfe2ced6575f0e0d9b127d64678c0bbe5d1b Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 16 Apr 2020 17:54:41 +0200 Subject: [PATCH 029/110] fix css issue window shrink --- pandora_console/include/styles/task_list.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/styles/task_list.css b/pandora_console/include/styles/task_list.css index e1184b5da2..c8a6f42aa8 100644 --- a/pandora_console/include/styles/task_list.css +++ b/pandora_console/include/styles/task_list.css @@ -115,3 +115,7 @@ span.link.review { border-color: #eee; background-color: #ddd; } + +#task_review { + width: 100% !important; +} From 719762105dc5f45b4c698a231908cef34a8760c6 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 17 Apr 2020 01:00:19 +0200 Subject: [PATCH 030/110] 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 90a0cb4d1b..e9c76bf0b5 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.744-200416 +Version: 7.0NG.744-200417 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 5cddedcf1d..892a37b140 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.744-200416" +pandora_version="7.0NG.744-200417" 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 f9cc816d7d..046a1f3f54 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.744'; -use constant AGENT_BUILD => '200416'; +use constant AGENT_BUILD => '200417'; # 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 d44e7c3010..01f406f04e 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_unix %define version 7.0NG.744 -%define release 200416 +%define release 200417 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 e253b321e8..f947b316cb 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.744 -%define release 200416 +%define release 200417 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 08a2017f9a..83490606c1 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200416" +PI_BUILD="200417" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 17cf19fe47..17a9f69a5f 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200416} +{200417} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 232c10e590..416d400dba 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.744(Build 200416)") +#define PANDORA_VERSION ("7.0NG.744(Build 200417)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 62511726cc..56bab5f6c8 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.744(Build 200416))" + VALUE "ProductVersion", "(7.0NG.744(Build 200417))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 219cebfcea..cb768e5f17 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.744-200416 +Version: 7.0NG.744-200417 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 5c7b889753..dbf04381df 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.744-200416" +pandora_version="7.0NG.744-200417" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 995cb53014..36b71a7875 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 = 'PC200416'; +$build_version = 'PC200417'; $pandora_version = 'v7.0NG.744'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 83e6ce6634..e4d0b2cf2c 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 69ef98fe21..5179f03bdf 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.744 -%define release 200416 +%define release 200417 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 5bb2593f9e..99c5e6f635 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.744 -%define release 200416 +%define release 200417 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 20f13168c0..391969c1d5 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200416" +PI_BUILD="200417" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index fe96296c64..878ee97bed 100644 --- 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.744 PS200416"; +my $version = "7.0NG.744 PS200417"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index c19d3e1111..8b5e02a1cf 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.744 PS200416"; +my $version = "7.0NG.744 PS200417"; # save program name for logging my $progname = basename($0); From 2ca9e6fb4a127a618fe184ddb31d38f63d4eb926 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Fri, 17 Apr 2020 11:18:49 +0200 Subject: [PATCH 031/110] 1st approach avoid quick_shell vulnerability (telnet) --- pandora_console/extensions/quick_shell.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/extensions/quick_shell.php b/pandora_console/extensions/quick_shell.php index 6b70ae21e8..644e9aa564 100644 --- a/pandora_console/extensions/quick_shell.php +++ b/pandora_console/extensions/quick_shell.php @@ -188,9 +188,10 @@ function quickShell() } else if ($method == 'telnet') { // Telnet. $port = $config['gotty_telnet_port']; + $username = preg_replace('/[^a-zA-Z0-9\-\.]/', '', $username); $command_arguments = "var args = '?arg=-l ".$username; $command_arguments .= '&arg='.$address; - $command_arguments .= '&arg='.$method_port."';"; + $command_arguments .= '&arg='.$method_port."&arg=-E';"; } else { ui_print_error_message(__('Please use SSH or Telnet.')); return; From 04ecb0afa5211cacb82b97659b51917c9bb02711 Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 18 Apr 2020 01:00:19 +0200 Subject: [PATCH 032/110] 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 e9c76bf0b5..5f8b2cf649 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.744-200417 +Version: 7.0NG.744-200418 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 892a37b140..efa0f4ef85 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.744-200417" +pandora_version="7.0NG.744-200418" 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 046a1f3f54..e322beb620 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.744'; -use constant AGENT_BUILD => '200417'; +use constant AGENT_BUILD => '200418'; # 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 01f406f04e..6a12f2ef96 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_unix %define version 7.0NG.744 -%define release 200417 +%define release 200418 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 f947b316cb..756b53ee34 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.744 -%define release 200417 +%define release 200418 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 83490606c1..20239ddf41 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200417" +PI_BUILD="200418" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 17a9f69a5f..c7a5929637 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200417} +{200418} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 416d400dba..759834014f 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.744(Build 200417)") +#define PANDORA_VERSION ("7.0NG.744(Build 200418)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 56bab5f6c8..a85a7aa69d 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.744(Build 200417))" + VALUE "ProductVersion", "(7.0NG.744(Build 200418))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index cb768e5f17..68231126dc 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.744-200417 +Version: 7.0NG.744-200418 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 dbf04381df..d15f3d180c 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.744-200417" +pandora_version="7.0NG.744-200418" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 36b71a7875..319e82ff8d 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 = 'PC200417'; +$build_version = 'PC200418'; $pandora_version = 'v7.0NG.744'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index e4d0b2cf2c..4b1189009c 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 5179f03bdf..6f258892f8 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.744 -%define release 200417 +%define release 200418 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 99c5e6f635..6484d43b9b 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.744 -%define release 200417 +%define release 200418 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 391969c1d5..76a3ee0da3 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200417" +PI_BUILD="200418" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 878ee97bed..9a51cac809 100644 --- 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.744 PS200417"; +my $version = "7.0NG.744 PS200418"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 8b5e02a1cf..e548d11fd2 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.744 PS200417"; +my $version = "7.0NG.744 PS200418"; # save program name for logging my $progname = basename($0); From 2e446312534df8a4ccbaf79e6019229bf88b34c2 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 19 Apr 2020 01:00:15 +0200 Subject: [PATCH 033/110] 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 5f8b2cf649..7d0c9e2159 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.744-200418 +Version: 7.0NG.744-200419 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 efa0f4ef85..14247c2db8 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.744-200418" +pandora_version="7.0NG.744-200419" 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 e322beb620..b2d41987fb 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.744'; -use constant AGENT_BUILD => '200418'; +use constant AGENT_BUILD => '200419'; # 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 6a12f2ef96..f69126da50 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_unix %define version 7.0NG.744 -%define release 200418 +%define release 200419 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 756b53ee34..c7c835b8ac 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.744 -%define release 200418 +%define release 200419 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 20239ddf41..1e70e0408c 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200418" +PI_BUILD="200419" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index c7a5929637..aafaf1bf3e 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200418} +{200419} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 759834014f..21f7efa7c0 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.744(Build 200418)") +#define PANDORA_VERSION ("7.0NG.744(Build 200419)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index a85a7aa69d..fd87393eee 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.744(Build 200418))" + VALUE "ProductVersion", "(7.0NG.744(Build 200419))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 68231126dc..d065c5e6c3 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.744-200418 +Version: 7.0NG.744-200419 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 d15f3d180c..62296e1c66 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.744-200418" +pandora_version="7.0NG.744-200419" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 319e82ff8d..d24b09c815 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 = 'PC200418'; +$build_version = 'PC200419'; $pandora_version = 'v7.0NG.744'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 4b1189009c..76e349fdb5 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 6f258892f8..29dad6a8da 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.744 -%define release 200418 +%define release 200419 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 6484d43b9b..268310b38f 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.744 -%define release 200418 +%define release 200419 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 76a3ee0da3..c848a90343 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200418" +PI_BUILD="200419" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 9a51cac809..950e79b3e8 100644 --- 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.744 PS200418"; +my $version = "7.0NG.744 PS200419"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index e548d11fd2..ef09f49164 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.744 PS200418"; +my $version = "7.0NG.744 PS200419"; # save program name for logging my $progname = basename($0); From 3992b81900de64c312a13d06535eba433989a59f Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 20 Apr 2020 01:00:19 +0200 Subject: [PATCH 034/110] 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 7d0c9e2159..6e7436d2d0 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.744-200419 +Version: 7.0NG.744-200420 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 14247c2db8..c45f2be3ca 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.744-200419" +pandora_version="7.0NG.744-200420" 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 b2d41987fb..c90c1bde55 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.744'; -use constant AGENT_BUILD => '200419'; +use constant AGENT_BUILD => '200420'; # 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 f69126da50..c642cb578d 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_unix %define version 7.0NG.744 -%define release 200419 +%define release 200420 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 c7c835b8ac..c41bdd61c5 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.744 -%define release 200419 +%define release 200420 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 1e70e0408c..85deb7224b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200419" +PI_BUILD="200420" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index aafaf1bf3e..2b357499f3 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200419} +{200420} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 21f7efa7c0..87e920ff7b 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.744(Build 200419)") +#define PANDORA_VERSION ("7.0NG.744(Build 200420)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index fd87393eee..9b89c0aa57 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.744(Build 200419))" + VALUE "ProductVersion", "(7.0NG.744(Build 200420))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index d065c5e6c3..eb5ef93048 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.744-200419 +Version: 7.0NG.744-200420 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 62296e1c66..e2b1b23097 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.744-200419" +pandora_version="7.0NG.744-200420" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index d24b09c815..6c8bf2febb 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 = 'PC200419'; +$build_version = 'PC200420'; $pandora_version = 'v7.0NG.744'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 76e349fdb5..d87025bc65 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 29dad6a8da..1721e4bc4b 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.744 -%define release 200419 +%define release 200420 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 268310b38f..79daf74a64 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.744 -%define release 200419 +%define release 200420 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c848a90343..363b76b1dd 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200419" +PI_BUILD="200420" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 950e79b3e8..9f1d902599 100644 --- 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.744 PS200419"; +my $version = "7.0NG.744 PS200420"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index ef09f49164..73b38ab565 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.744 PS200419"; +my $version = "7.0NG.744 PS200420"; # save program name for logging my $progname = basename($0); From ccb3b8ab7aa4cbff80a2e9e8e89c1fb562918fe6 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 20 Apr 2020 15:19:28 +0200 Subject: [PATCH 035/110] Fixed Advanced permissions AD --- pandora_console/include/functions_html.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 76e06c77df..be1ecac492 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -2088,10 +2088,10 @@ function html_print_button($label='OK', $name='', $disabled=false, $script='', $ * * @return string HTML code if return parameter is true. */ -function html_print_textarea($name, $rows, $columns, $value='', $attributes='', $return=false, $class='') +function html_print_textarea($name, $rows, $columns, $value='', $attributes='', $return=false, $class='', $disable=false) { - $output = ''; From b3d7c56de40e6eb42d42bfbc02aa835b402a7945 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 21 Apr 2020 01:00:18 +0200 Subject: [PATCH 036/110] 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 6e7436d2d0..b6c3a073a9 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.744-200420 +Version: 7.0NG.744-200421 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 c45f2be3ca..e7fac4e3c3 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.744-200420" +pandora_version="7.0NG.744-200421" 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 c90c1bde55..30f059fa14 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.744'; -use constant AGENT_BUILD => '200420'; +use constant AGENT_BUILD => '200421'; # 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 c642cb578d..270b3d9905 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_unix %define version 7.0NG.744 -%define release 200420 +%define release 200421 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 c41bdd61c5..e0da66bfce 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.744 -%define release 200420 +%define release 200421 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 85deb7224b..1b7bf5a232 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200420" +PI_BUILD="200421" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 2b357499f3..97ca31d624 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200420} +{200421} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 87e920ff7b..72a94ec828 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.744(Build 200420)") +#define PANDORA_VERSION ("7.0NG.744(Build 200421)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 9b89c0aa57..8b8479ff25 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.744(Build 200420))" + VALUE "ProductVersion", "(7.0NG.744(Build 200421))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index eb5ef93048..6418ac56f0 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.744-200420 +Version: 7.0NG.744-200421 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 e2b1b23097..ebc8dcccad 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.744-200420" +pandora_version="7.0NG.744-200421" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 6c8bf2febb..f8263b144d 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 = 'PC200420'; +$build_version = 'PC200421'; $pandora_version = 'v7.0NG.744'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index d87025bc65..94ad69eeac 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 1721e4bc4b..a495dc6096 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.744 -%define release 200420 +%define release 200421 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 79daf74a64..891fff1f09 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.744 -%define release 200420 +%define release 200421 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 363b76b1dd..1556356131 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200420" +PI_BUILD="200421" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 9f1d902599..b78f65bfc8 100644 --- 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.744 PS200420"; +my $version = "7.0NG.744 PS200421"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 73b38ab565..0522bd2810 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.744 PS200420"; +my $version = "7.0NG.744 PS200421"; # save program name for logging my $progname = basename($0); From 629604aab4620eb190a38bd1ff910d6cb0f1f505 Mon Sep 17 00:00:00 2001 From: Kevin Date: Tue, 21 Apr 2020 13:21:32 +0200 Subject: [PATCH 037/110] Added plugin to sources, deleted from pandora_plugins --- .../autodiscover.py => pandora_agents/unix/plugins/autodiscover | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename pandora_plugins/Autodiscover services/autodiscover.py => pandora_agents/unix/plugins/autodiscover (100%) diff --git a/pandora_plugins/Autodiscover services/autodiscover.py b/pandora_agents/unix/plugins/autodiscover similarity index 100% rename from pandora_plugins/Autodiscover services/autodiscover.py rename to pandora_agents/unix/plugins/autodiscover From d44aa7b1e1fc8dd6766b81d6403942cb148cb85d Mon Sep 17 00:00:00 2001 From: Luis Calvo Date: Tue, 21 Apr 2020 16:02:36 +0200 Subject: [PATCH 038/110] Fixed agent aler list --- pandora_console/include/functions_agents.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 9eaed9c338..3bb01ba0c3 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -310,6 +310,10 @@ function agents_get_alerts_simple($id_agent=false, $filter='', $options=false, $ $subQuery = 'SELECT id_agente_modulo FROM tagente_modulo WHERE delete_pending = 0'; } + + // Filter by agents id. + $id_agents_list = implode(',', $id_agent); + $subQuery .= ' AND id_agente in ('.$id_agents_list.')'; } else if ($id_agent === false || empty($id_agent)) { if ($allModules) { $disabled = ''; From 60f4f21297c6e94fe5acfd0ecfe4d9c6a3e64bf8 Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 22 Apr 2020 01:00:15 +0200 Subject: [PATCH 039/110] 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 b6c3a073a9..a98f8a5579 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.744-200421 +Version: 7.0NG.744-200422 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 e7fac4e3c3..2e30f5a24d 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.744-200421" +pandora_version="7.0NG.744-200422" 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 30f059fa14..633d8f8c0a 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.744'; -use constant AGENT_BUILD => '200421'; +use constant AGENT_BUILD => '200422'; # 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 270b3d9905..5bf1fe3b5c 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_unix %define version 7.0NG.744 -%define release 200421 +%define release 200422 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 e0da66bfce..408dc58a8e 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.744 -%define release 200421 +%define release 200422 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 1b7bf5a232..dcdbcc9900 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200421" +PI_BUILD="200422" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 97ca31d624..58d72ae28b 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200421} +{200422} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 72a94ec828..e1aae7800e 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.744(Build 200421)") +#define PANDORA_VERSION ("7.0NG.744(Build 200422)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 8b8479ff25..523f5e8e52 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.744(Build 200421))" + VALUE "ProductVersion", "(7.0NG.744(Build 200422))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 6418ac56f0..fc8a1d986d 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.744-200421 +Version: 7.0NG.744-200422 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 ebc8dcccad..8dd284a780 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.744-200421" +pandora_version="7.0NG.744-200422" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index f8263b144d..5cb030fbe1 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 = 'PC200421'; +$build_version = 'PC200422'; $pandora_version = 'v7.0NG.744'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 94ad69eeac..deac4a56b5 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index a495dc6096..5267de7fff 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.744 -%define release 200421 +%define release 200422 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 891fff1f09..fa55cd084b 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.744 -%define release 200421 +%define release 200422 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 1556356131..ddf422867f 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.744" -PI_BUILD="200421" +PI_BUILD="200422" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index b78f65bfc8..d8400f2287 100644 --- 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.744 PS200421"; +my $version = "7.0NG.744 PS200422"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 0522bd2810..ae9a694296 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.744 PS200421"; +my $version = "7.0NG.744 PS200422"; # save program name for logging my $progname = basename($0); From f06181376921390f181fc5ec0e2c102d78e91449 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Wed, 22 Apr 2020 11:20:38 +0200 Subject: [PATCH 040/110] Do not set ARCH if it was already set by other build scripts. Ref pandora_enterprise#5731 --- pandora_agents/win32/build.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pandora_agents/win32/build.sh b/pandora_agents/win32/build.sh index 2759a6b9cb..ae9f4cf6e8 100755 --- a/pandora_agents/win32/build.sh +++ b/pandora_agents/win32/build.sh @@ -3,13 +3,18 @@ # The installer will be placed in ./installer/output/. # InstallJammer must be installed and in the PATH. -ARCH=`uname -m` +# ARCH may be set by other build scripts. +if [ "$ARCH" == "" ]; then + ARCH=`uname -m` +fi + +# Set the target host. if [ "$ARCH" == "x86_64" ]; then HOST="x86_64-w64-mingw32" else HOST="i686-w64-mingw32" fi -#./autogen.sh && ./configure --host=$HOST && make clean && make && cp PandoraAgent.exe bin/ && installjammer --build installer/pandora.mpi +# Compile and update the Pandora FMS Agent binary. ./autogen.sh && ./configure --host=$HOST && make clean && make && cp PandoraAgent.exe bin/ From 91d1832f8f778405b256c5b0ef8bab63542f0070 Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 22 Apr 2020 12:42:47 +0200 Subject: [PATCH 041/110] Updated version and build strings. --- pandora_agents/pc/AIX/pandora_agent.conf | 2 +- pandora_agents/pc/FreeBSD/pandora_agent.conf | 2 +- pandora_agents/pc/HP-UX/pandora_agent.conf | 2 +- pandora_agents/pc/Linux/pandora_agent.conf | 2 +- pandora_agents/pc/NT4/pandora_agent.conf | 2 +- pandora_agents/pc/SunOS/pandora_agent.conf | 2 +- pandora_agents/pc/Win32/pandora_agent.conf | 2 +- pandora_agents/shellscript/aix/pandora_agent.conf | 2 +- pandora_agents/shellscript/bsd-ipso/pandora_agent.conf | 2 +- pandora_agents/shellscript/hp-ux/pandora_agent.conf | 2 +- pandora_agents/shellscript/linux/pandora_agent.conf | 2 +- pandora_agents/shellscript/mac_osx/pandora_agent.conf | 2 +- pandora_agents/shellscript/openWRT/pandora_agent.conf | 2 +- pandora_agents/shellscript/solaris/pandora_agent.conf | 2 +- pandora_agents/unix/AIX/pandora_agent.conf | 2 +- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/Darwin/pandora_agent.conf | 2 +- pandora_agents/unix/FreeBSD/pandora_agent.conf | 2 +- pandora_agents/unix/HP-UX/pandora_agent.conf | 2 +- pandora_agents/unix/Linux/pandora_agent.conf | 2 +- pandora_agents/unix/NT4/pandora_agent.conf | 2 +- pandora_agents/unix/NetBSD/pandora_agent.conf | 2 +- pandora_agents/unix/SunOS/pandora_agent.conf | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 4 ++-- pandora_agents/unix/pandora_agent.spec | 4 ++-- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/bin/pandora_agent.conf | 2 +- pandora_agents/win32/installer/pandora.mpi | 4 ++-- 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 | 4 ++-- pandora_console/pandora_console.rhel7.spec | 4 ++-- pandora_console/pandora_console.spec | 4 ++-- pandora_console/pandora_console_install | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/conf/pandora_server.conf.new | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 4 ++-- pandora_server/pandora_server.spec | 4 ++-- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 50 files changed, 58 insertions(+), 58 deletions(-) diff --git a/pandora_agents/pc/AIX/pandora_agent.conf b/pandora_agents/pc/AIX/pandora_agent.conf index 9880d55476..eb17d47c21 100644 --- a/pandora_agents/pc/AIX/pandora_agent.conf +++ b/pandora_agents/pc/AIX/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, AIX version +# Version 7.0NG.745, AIX version # Licensed under GPL license v2, # Copyright (c) 2003-2010 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/FreeBSD/pandora_agent.conf b/pandora_agents/pc/FreeBSD/pandora_agent.conf index 5f18593278..51972f7e78 100644 --- a/pandora_agents/pc/FreeBSD/pandora_agent.conf +++ b/pandora_agents/pc/FreeBSD/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, FreeBSD Version +# Version 7.0NG.745, FreeBSD Version # Licensed under GPL license v2, # Copyright (c) 2003-2010 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/HP-UX/pandora_agent.conf b/pandora_agents/pc/HP-UX/pandora_agent.conf index 8c09c2e1db..f562ee4053 100644 --- a/pandora_agents/pc/HP-UX/pandora_agent.conf +++ b/pandora_agents/pc/HP-UX/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, HP-UX Version +# Version 7.0NG.745, HP-UX Version # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/Linux/pandora_agent.conf b/pandora_agents/pc/Linux/pandora_agent.conf index b2989b95e8..4c1178a025 100644 --- a/pandora_agents/pc/Linux/pandora_agent.conf +++ b/pandora_agents/pc/Linux/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, GNU/Linux +# Version 7.0NG.745, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/NT4/pandora_agent.conf b/pandora_agents/pc/NT4/pandora_agent.conf index a708087446..c254df3ed4 100644 --- a/pandora_agents/pc/NT4/pandora_agent.conf +++ b/pandora_agents/pc/NT4/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, GNU/Linux +# Version 7.0NG.745, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/SunOS/pandora_agent.conf b/pandora_agents/pc/SunOS/pandora_agent.conf index 6ae2ae474f..46e3c5c0db 100644 --- a/pandora_agents/pc/SunOS/pandora_agent.conf +++ b/pandora_agents/pc/SunOS/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, Solaris Version +# Version 7.0NG.745, Solaris Version # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/Win32/pandora_agent.conf b/pandora_agents/pc/Win32/pandora_agent.conf index 4d2b4dc5c4..f1a79ad265 100644 --- a/pandora_agents/pc/Win32/pandora_agent.conf +++ b/pandora_agents/pc/Win32/pandora_agent.conf @@ -1,6 +1,6 @@ # Base config file for Pandora FMS Windows Agent # (c) 2006-2010 Artica Soluciones Tecnologicas -# Version 7.0NG.744 +# Version 7.0NG.745 # This program is Free Software, you can redistribute it and/or modify it # under the terms of the GNU General Public Licence as published by the Free Software diff --git a/pandora_agents/shellscript/aix/pandora_agent.conf b/pandora_agents/shellscript/aix/pandora_agent.conf index f0bf132498..b2eac4399a 100644 --- a/pandora_agents/shellscript/aix/pandora_agent.conf +++ b/pandora_agents/shellscript/aix/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 7.0NG.744, AIX version +# Version 7.0NG.745, AIX version # General Parameters # ================== diff --git a/pandora_agents/shellscript/bsd-ipso/pandora_agent.conf b/pandora_agents/shellscript/bsd-ipso/pandora_agent.conf index 3a79c9f3dc..094c2f850b 100644 --- a/pandora_agents/shellscript/bsd-ipso/pandora_agent.conf +++ b/pandora_agents/shellscript/bsd-ipso/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 7.0NG.744 +# Version 7.0NG.745 # FreeBSD/IPSO version # Licenced under GPL licence, 2003-2007 Sancho Lerena diff --git a/pandora_agents/shellscript/hp-ux/pandora_agent.conf b/pandora_agents/shellscript/hp-ux/pandora_agent.conf index dbb5c3e79f..6b1779741e 100644 --- a/pandora_agents/shellscript/hp-ux/pandora_agent.conf +++ b/pandora_agents/shellscript/hp-ux/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 7.0NG.744, HPUX Version +# Version 7.0NG.745, HPUX Version # General Parameters # ================== diff --git a/pandora_agents/shellscript/linux/pandora_agent.conf b/pandora_agents/shellscript/linux/pandora_agent.conf index 0351cb9fea..cb94b50604 100644 --- a/pandora_agents/shellscript/linux/pandora_agent.conf +++ b/pandora_agents/shellscript/linux/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744 +# Version 7.0NG.745 # Licensed under GPL license v2, # (c) 2003-2010 Artica Soluciones Tecnologicas # please visit http://pandora.sourceforge.net diff --git a/pandora_agents/shellscript/mac_osx/pandora_agent.conf b/pandora_agents/shellscript/mac_osx/pandora_agent.conf index 660a616e40..779da4af44 100644 --- a/pandora_agents/shellscript/mac_osx/pandora_agent.conf +++ b/pandora_agents/shellscript/mac_osx/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744 +# Version 7.0NG.745 # Licensed under GPL license v2, # (c) 2003-2009 Artica Soluciones Tecnologicas # please visit http://pandora.sourceforge.net diff --git a/pandora_agents/shellscript/openWRT/pandora_agent.conf b/pandora_agents/shellscript/openWRT/pandora_agent.conf index 6303271947..fd9a754f23 100644 --- a/pandora_agents/shellscript/openWRT/pandora_agent.conf +++ b/pandora_agents/shellscript/openWRT/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744 +# Version 7.0NG.745 # Licensed under GPL license v2, # please visit http://pandora.sourceforge.net diff --git a/pandora_agents/shellscript/solaris/pandora_agent.conf b/pandora_agents/shellscript/solaris/pandora_agent.conf index fd40952a8e..934e8092c8 100644 --- a/pandora_agents/shellscript/solaris/pandora_agent.conf +++ b/pandora_agents/shellscript/solaris/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 7.0NG.744, Solaris version +# Version 7.0NG.745, Solaris version # General Parameters # ================== diff --git a/pandora_agents/unix/AIX/pandora_agent.conf b/pandora_agents/unix/AIX/pandora_agent.conf index 2860d5f0bc..59dfa821b8 100644 --- a/pandora_agents/unix/AIX/pandora_agent.conf +++ b/pandora_agents/unix/AIX/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, AIX version +# Version 7.0NG.745, AIX version # Licensed under GPL license v2, # Copyright (c) 2003-2010 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index a98f8a5579..bd70c96cff 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.744-200422 +Version: 7.0NG.745 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 2e30f5a24d..5914d66da9 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.744-200422" +pandora_version="7.0NG.745" 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/Darwin/pandora_agent.conf b/pandora_agents/unix/Darwin/pandora_agent.conf index 3477cb8ff2..9f1321be59 100644 --- a/pandora_agents/unix/Darwin/pandora_agent.conf +++ b/pandora_agents/unix/Darwin/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, GNU/Linux +# Version 7.0NG.745, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2012 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/FreeBSD/pandora_agent.conf b/pandora_agents/unix/FreeBSD/pandora_agent.conf index 1c38ab4504..ef101119e1 100644 --- a/pandora_agents/unix/FreeBSD/pandora_agent.conf +++ b/pandora_agents/unix/FreeBSD/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, FreeBSD Version +# Version 7.0NG.745, FreeBSD Version # Licensed under GPL license v2, # Copyright (c) 2003-2016 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/HP-UX/pandora_agent.conf b/pandora_agents/unix/HP-UX/pandora_agent.conf index 7ec21a8215..ac1d967039 100644 --- a/pandora_agents/unix/HP-UX/pandora_agent.conf +++ b/pandora_agents/unix/HP-UX/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, HP-UX Version +# Version 7.0NG.745, HP-UX Version # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/Linux/pandora_agent.conf b/pandora_agents/unix/Linux/pandora_agent.conf index 52ca10f17b..7cb462f7e1 100644 --- a/pandora_agents/unix/Linux/pandora_agent.conf +++ b/pandora_agents/unix/Linux/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, GNU/Linux +# Version 7.0NG.745, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2014 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/NT4/pandora_agent.conf b/pandora_agents/unix/NT4/pandora_agent.conf index 36216608dc..7c614a4d94 100644 --- a/pandora_agents/unix/NT4/pandora_agent.conf +++ b/pandora_agents/unix/NT4/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, GNU/Linux +# Version 7.0NG.745, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/NetBSD/pandora_agent.conf b/pandora_agents/unix/NetBSD/pandora_agent.conf index db64cb1514..e1fe45e718 100644 --- a/pandora_agents/unix/NetBSD/pandora_agent.conf +++ b/pandora_agents/unix/NetBSD/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, NetBSD Version +# Version 7.0NG.745, NetBSD Version # Licensed under GPL license v2, # Copyright (c) 2003-2010 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/SunOS/pandora_agent.conf b/pandora_agents/unix/SunOS/pandora_agent.conf index 0f34c6623e..5855922016 100644 --- a/pandora_agents/unix/SunOS/pandora_agent.conf +++ b/pandora_agents/unix/SunOS/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.744, Solaris Version +# Version 7.0NG.745, Solaris Version # Licensed under GPL license v2, # Copyright (c) 2003-2009 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 633d8f8c0a..511ddd942f 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -54,7 +54,7 @@ my $Sem = undef; # Semaphore used to control the number of threads my $ThreadSem = undef; -use constant AGENT_VERSION => '7.0NG.744'; +use constant AGENT_VERSION => '7.0NG.745'; use constant AGENT_BUILD => '200422'; # Agent log default file size maximum and instances diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 5bf1fe3b5c..2e5126f2b8 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -2,8 +2,8 @@ #Pandora FMS Linux Agent # %define name pandorafms_agent_unix -%define version 7.0NG.744 -%define release 200422 +%define version 7.0NG.745 +%define release 1 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 408dc58a8e..88404d9301 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -2,8 +2,8 @@ #Pandora FMS Linux Agent # %define name pandorafms_agent_unix -%define version 7.0NG.744 -%define release 200422 +%define version 7.0NG.745 +%define release 1 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 dcdbcc9900..4c73dd8b6a 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -9,7 +9,7 @@ # Please see http://www.pandorafms.org. This code is licensed under GPL 2.0 license. # ********************************************************************** -PI_VERSION="7.0NG.744" +PI_VERSION="7.0NG.745" PI_BUILD="200422" OS_NAME=`uname -s` diff --git a/pandora_agents/win32/bin/pandora_agent.conf b/pandora_agents/win32/bin/pandora_agent.conf index 774797aa4b..02d730f2dc 100644 --- a/pandora_agents/win32/bin/pandora_agent.conf +++ b/pandora_agents/win32/bin/pandora_agent.conf @@ -1,6 +1,6 @@ # Base config file for Pandora FMS Windows Agent # (c) 2006-2017 Artica Soluciones Tecnologicas -# Version 7.0NG.744 +# Version 7.0NG.745 # This program is Free Software, you can redistribute it and/or modify it # under the terms of the GNU General Public Licence as published by the Free Software diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 58d72ae28b..f5fdf6ab3a 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -3,7 +3,7 @@ AllowLanguageSelection {Yes} AppName -{Pandora FMS Windows Agent v7.0NG.744} +{Pandora FMS Windows Agent v7.0NG.745} ApplicationID {17E3D2CF-CA02-406B-8A80-9D31C17BD08F} @@ -2387,7 +2387,7 @@ Windows,BuildSeparateArchives {No} Windows,Executable -{<%AppName%>-<%Version%>-Setup<%Ext%>} +{<%AppName%>-Setup<%Ext%>} Windows,FileDescription {<%AppName%> <%Version%> Setup} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index e1aae7800e..dbf4e70c95 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.744(Build 200422)") +#define PANDORA_VERSION ("7.0NG.745(Build 200422)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 523f5e8e52..1eae269a3e 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.744(Build 200422))" + VALUE "ProductVersion", "(7.0NG.745(Build 200422))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index fc8a1d986d..2524cf9537 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.744-200422 +Version: 7.0NG.745 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 8dd284a780..db8ec1b91f 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.744-200422" +pandora_version="7.0NG.745" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5cb030fbe1..4e1dbcdee2 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -21,7 +21,7 @@ * Pandora build version and version */ $build_version = 'PC200422'; -$pandora_version = 'v7.0NG.744'; +$pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. $script_tz = @date_default_timezone_get(); diff --git a/pandora_console/install.php b/pandora_console/install.php index deac4a56b5..650eb3adf0 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -128,7 +128,7 @@
Date: Thu, 23 Apr 2020 01:00:15 +0200 Subject: [PATCH 042/110] 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 | 4 ++-- 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, 26 insertions(+), 26 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index bd70c96cff..a64ebd7f35 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745 +Version: 7.0NG.745-200423 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 5914d66da9..59654342d0 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.745" +pandora_version="7.0NG.745-200423" 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 511ddd942f..9e38f93984 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200422'; +use constant AGENT_BUILD => '200423'; # 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 2e5126f2b8..e06376c023 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_unix %define version 7.0NG.745 -%define release 1 +%define release 200423 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 88404d9301..893dc9a083 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 1 +%define release 200423 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 4c73dd8b6a..f82994c52f 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200422" +PI_BUILD="200423" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index f5fdf6ab3a..c49dc28603 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200422} +{200423} ViewReadme {Yes} @@ -2387,7 +2387,7 @@ Windows,BuildSeparateArchives {No} Windows,Executable -{<%AppName%>-Setup<%Ext%>} +{<%AppName%>-<%Version%>-Setup<%Ext%>} Windows,FileDescription {<%AppName%> <%Version%> Setup} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index dbf4e70c95..262ff19c42 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.745(Build 200422)") +#define PANDORA_VERSION ("7.0NG.745(Build 200423)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 1eae269a3e..db7cba9c6d 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.745(Build 200422))" + VALUE "ProductVersion", "(7.0NG.745(Build 200423))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 2524cf9537..b7440c743e 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745 +Version: 7.0NG.745-200423 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 db8ec1b91f..dbf958094c 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.745" +pandora_version="7.0NG.745-200423" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 4e1dbcdee2..8979eb857e 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 = 'PC200422'; +$build_version = 'PC200423'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 650eb3adf0..7151d2666d 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index e2754390b7..b63b9ae230 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.745 -%define release 1 +%define release 200423 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index de7599b268..0cd3b1f631 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.745 -%define release 1 +%define release 200423 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index bbde0f8bf0..8cb19b8914 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200422" +PI_BUILD="200423" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 55c4944430..1b562a04f9 100644 --- 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.745 PS200422"; +my $version = "7.0NG.745 PS200423"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index b14bd05c3f..f646090ee2 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.745 PS200422"; +my $version = "7.0NG.745 PS200423"; # save program name for logging my $progname = basename($0); From 6f0dbf18bd971e958727ea62bed0e1ebaff2dee5 Mon Sep 17 00:00:00 2001 From: Junichi Satoh Date: Thu, 23 Apr 2020 17:47:10 +0900 Subject: [PATCH 043/110] Updated Japanese console translation. --- pandora_console/include/languages/ja.mo | Bin 584522 -> 656852 bytes pandora_console/include/languages/ja.po | 56806 +++++++++++++--------- 2 files changed, 33567 insertions(+), 23239 deletions(-) diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index d9d18d600ed3cea6e8ef4d21828ff360d12f7f67..148852e3d38619cb0f851bc003ce35dadc99082f 100644 GIT binary patch literal 656852 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 z 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 delta 183769 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%0AIbIULQ5s0 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

    Mp%N6rx3pg&m$ z`_lctV5KDPa|TuV{02Sh;&I*pHgxBfvpv01;A};HKRcTk2X8qe?ebTBsQyi71IqXm z=bd`R864tu4^a#%!=&up;&j>ysHn^tX7vBnIoO+;{s|-H`zQPdBmK7XL!0s59p@zb z+z_^u4*%-#o%&rZM0Q`k!x zK;jeAcT*My>;QheKrQbnSf*NfGz(8-u3|X3gZbKNzMa)Fo@T6rH+|xZ>;LM@`qF|b zY%;a*W9?|MAKOpMs>TDVnAN3C9eJ=leLJZ~?imf@Y;6cT zXPKt7J&=!8_lrn>nKbQ^6pbV;5X*xr<9BJ^vP-GURSE=hj#~n|?LO?}fv_H4cYoE8 z4mIGB54qf5R5~4uiUtcxp(*wr=Wx^KDr4KcIJHj_wX4Guh8`}RKF`#ldjP;ChAG{V zM}@cGWzD?+GjO^sNE|qjEJ#{WHU4rvO0r2mFQ(Y%?kBV6-iM}#vUSuof{ic^MX)8_ zRL_?O(TVD88cmC48>njy*50AqSbDbxTVy;J!=NJ`cd@E;Z5@t08_Rmjw+*OdHH)fh z!Z_Hi^y1cJ`xwsh($}31Bg@4eKygGZ7C^-|n2tlWAQE^5@vh0*(8QYTU20p4eXYqg zkm>RS6kLb(b85fB2)~bI+G3Smgk4uO0LF9C4un{}^goh`*;bcbF=`~RD7n>9Qax6K zVL&i!Igk1SjX`r;?vPIyw;C%xi;IE>*w%20~Tc=NO z4I4Xlw99m5q!h~tha{HVCrQ8u3Ia^mXSuisX0Vw0C$I>iP(f;Xo8dHOwLOfE`Z#@p zJr;|3D%@o_!l)M0q5&>`ntv&EVd*x>x|t3d&@JM$%j&aw;^LZO&>+AnG%EzpSU8CX z8L{=)C7UL30vfP(jV!kg7G0q=Pef&MY!+UZblS)UtWKD0KhmhNnaCu&X)F3mq4Ov6 z0UqUr2p96Ry+qCiY-puaS$PIT+UGT31MKX=jwxl^)_T#0eenW)ZW*)KLxIG#M$x5jlV^B z6j1Th?JB?zpr}sqX$G2HaK4x~ILK=WMKlY#oc7n)-5dz63=m(Pg> zuhppn(s(v`DrjWVLD>=yBkd&t)ReXN{3RXQ#jDYgX3UQ!H)FNpwMzCX8K0_VY+A|q zoDz-IJx+*0r|+Aw6_q(}ED||enzAdPl;)sHs``j(L5Q79&5*hb{4!Q&dIqg+4lVsh zbJk9PoPea4rRGz|`&nJ5CLZX6`&p|nDK!>pa&h&h^39mPZFKp5*3Mhrz>)iL{^%AA zjp2Uh+_sHwG=Z4*o8e^Cy9MhIUg>Tse&1mPw7=1U1xA`M&+MpRY6oBz$lyiS?t@HVD1G^&!m4{+6ternSPWk6W>QE#tKZpWr2BP2M{E zltR#n@!EI4_vafj6DV*s&b_@g8%up3V6hbaAd8I1UtT&s6T07p-su;1&y>B>FBQyB zpo9n6r5KRamA-|bG*I75iSeQvtyxGzizK*7rBnwyZXdZi|eC zr`oZAfJ#ddqiwWh?IPW(54O8Z1yr@EqU!BfmMx#ww!=A2w_`Qy>2>INd}==dJdvnsL58n{6lKVYbv*(vfYoQR_~yJFj=T66e1+Tda3mL?;?NOmywRDVALF{N?0&k`m4!elnRBEm z4U=9Ozf%(~(z@L23S*c29#S1gK8AZ-^%$!~!QCObKXhX?D5*Q^NGrOtroe$(c`>QQ+qs=7c3t_ zeM;_3BkT2_I)~~u?>Kw(>+# zfW9Z%@GKi*r1oX!ZS=+S>?CbG3GeXH{_HurIe<;2cwgAX`qhO$g}uNMQsCzy!lRiZ zcRW|eSm6V@6R1GVU`jW5Op`vQ0Ki!5lG1e$6fAORd(1r89N0&^hN%Nq)fQ`Z`R45x zcH%=UescnyrMryMX^ZH@3oPa#Psx&!IDR+2!c(c(Elvtf2xbwKO95oWB6KQ+N9g=; z1X|v|hV-3!)JVl?5lQqT;HeNhQWeiH_HJc} z7a4fufy3DVdiX1(oD6)4wYT|!QY~FEPd^^zyv!0RePVp}GMpdd#w+YmyKu)oDCk=r zLbpb-b;d8F*+rWlqVQ$;^W{hZ#31V?GE67k;E6QVBLlJcD!B!(83@wEU8W#az}z5^ zd7ASg+igc^;1rdyff)c#w-l30v9}$u{*{CB)aSONW?kSM#V=xpBtW(#Nak#muU&g# z+tiDx$S&GOOK&@#t%>2oIUy%9)k9wo#tqMpyHqMWGfuzCVr}&5SQcy~j%8bH zbh8Q4iynM~jkh_==j?&E!boUvy4C9lCB6k>H9Yy4>^+2CohZt z!fH{@tlK3Wzs3vLS>C*59B51toSLyItcW_NvMzKol{JV!rsAcAb6_Ii`N>ya$TqlG zlq-iUNP!%HN=rFCi{30O&fw{+hMj`C!|(1rfg!DK$#@oEd_R$4Q?`eTox#R{$v}6s zXbPOJ#Zy@;v|Y|%S#gCP8`(UP)!yQ@mQ>59Q5Z zv4Bm8Wa2+Fv!QJLOyoAuz8UPfjtY~&{VsrQ0XmVd{LKD6q>?iuB~ z3$Xyc%VOQB%`7(07df1zGj}#YQY#&s1q|~0EPQh+lleI{`9}}TX4{Q6A24s^O-;@P zAog-k5iUTZ=fD{6n8PX;UgH}HdL?DMTqz<*8X}NDhROqwSVR){rpiN}H#I5XVSVwl z(wrS-*(OVFA|1JCrj^Zw<^lSyP+sNv@I+=`nuk;yEVVqDTWAJna11mRLKY@L&zwvTWV2`r&t~6I@5OAeQ#TQ!v^U^)J=q$maa$L&=8=|?Q@YwSaPr4uw!s(b z4Uzz$kxILku=nV#96*#?M|p^00Yt-02LKF!i_b{*iBnaB+xw~cOWn+ z4tddnyLKZuwt~IJOvGojT*;c*LL?V1@g+PKI6^9lLFdnajQb~#F=~{LnBahXpg5Iv z+Gq+BRGiOF8QWH|83>=}0SUEQ!{UwcYuI(0H(VjwyHJGrVs)6Oq#HRRj%KZ8o142o zGm~JO$yHdEy+-j0SXOFjBBt;8p1Q1K>*f{03V&M2`WUU&v)MMIUJ(4SuBq|l8dTxKvbh^5 z_bfc1(;L}l`gjxT6PJ$bnYscGnp@)W-qanzn^_N5mWRB*G%uRAnbo1zYeiL>uo+ZR z$`2}3}89%WX zvC0uY0*`O|kTvjC&IJNY>%1s-3X3qVe8`Ybnz)a(r1tx8WaE7xxqjKl-VczrPty`A z)@Tg+gdw8v=K&r_r#=NywY>|HKH7f9;;H*?+@Ak7z=`b7SZnpxaDC2p+vunyd5;@72?!m!BT z)ix`aR>EERxpaZ0EX#!_1p^Mg4A4OZl+Dwn5LkHAuI+|bt&#yX2$2?bp#p0e5SGe` zRw<@oLh_Ku_6zQiy|M~2|4*jDX3EHzl?y@jCO$L|Xvt?OT>U?>LOc zm=i34PMm-%5LXYL!JO})_4l8EoFDs+%~rrEqR>60+I*X-EOh6%h%i1l$p(5;%4ulK z$U2C={GK49js9oYHao3v>WrnM=is@^sFm^Nc{Uhe?FTT-^GnzS8h(L2LH1JI1OAM( zzviM@rR-_SEoClhR>sCt>Qy}YA0sd$sb?9wlzi@R>d#(m>Wrf?F42?*gy7q$9JoBDSEII7|su_vHp}=2Fp#Qz17F}mCbm9hU=G4@m{=oMp z%*pRJ@l_2xvVm94ZASZ_nbYoAkq!3&F+M~Os^5mI_1rlYXjK3#`;~R2nvI>c4cBjs zqnO2C_!@0~XYuH%^atCEJNuZv`V-3V#wH$#n4C$1(ab+lF46xRhadHrgQ(f4+w7lU z71~9noJ27iC>eMDV*9;mFlT{Pq3pffVz%Wv?_{U9ym?2uxnL z#+y@{a5#AHhVyV^egvOuV>-!s8>Ll4V%V{2yjv{`CfyY+ue@tSs>8)`WmP#v9g+~P zD@%36%Z(&j(1a)+6bil5{Rxjo^9m0Ce@Ryjlze?96pqWj;Y7p&CO~F+qAW=!cs`Tr zc#^IS6+A^lKUfqv5{h0iH>i;2#slhUtf9hE64PkM+l0)?^7(X!bSvYmk}EDLC2L^i zkr!9(D4Pf0WCG^hMod;_NkP(;8L}=Q3RMVT7^ECa zSu-m)RIUvDndYe7!m7anz^iZpJkO`A5C8zAG);4*A)_g+p)2P_@%GhB2|2H?@o(i-YJ$$?7wV(zQA70I6D=+s%OxVkvdjDfi7D*JBUk^BN$2Se<^Jek5U zMO~->Nmw!wI<nX;JA}W|z*GU%q*c6@A4_V19ETzcS?KIpQi{5&&;FFRgqtR*saD zx^!T&!{yYDA6=g8sEu%B&=f~h4Ls~r6mh}YTTY-HzO71PHc{MaN0_Vfjv!KID|@H3 zKZ+;Cn@pQ2m#AI?<)JFdq=b2-Yf-y8Aivh%09yTNilY%i@aADAC7xkYt;%C4n?6}b zw2(X7o!hhy3M1uZPf;_(uyyU(Pq<4a(_{hzC|6HWo_JoflD#- zAdwkwU9;jay@`v?f~xq`TD=mEy1F#(;VO|g0#69~a>_l>gBrezQ=LqVV-A^o4`Z_;}aw*0;jqUmMm!qt-pd?p_9`b;T4sZLC1JV<9|J+ z`*(7LWq2751{BkFEw5CkIk?gvKwOH3;weNE@-`2 zz6xc4H4zy8qb3iv*Fo#vn*2*@Sep+;H6d2FiRG13iN^(9um*CY_lH5OfI5tI)}p97 zynW^5V_Bw5>ud8m)e7{cwph(>e@oi~V6ml{)-^ z3$T^9;77A0J@u^yDfAO(A#TdFXPcmMKrAhe2Ux57!Q^z@?CJeYbU@~Rm;yO%tYN z8YTUPB%Pr8ytc8i9!Fc~bMc&aQMy4cFPWhurPF*d+wD4Aqf_ya@+OfoyL07*ZP31j zrZkUA2N1ZwA`ic!rFxZ0Jq+W8u;2s~fOu(^PO0_TDlrKij9^R)P;@UMDX1;)PkkRmB|>~#KF6rl zj=yhfqRV7Uk))KGhSU+sd#a2YodqMoXvz3&>v?CFP1_~&RU&C$Yd~_*0Xw<%n~3n! z=nn8Wu6N+~8EqfpL3ZH=_0+Hw#C8cXkr1k3f~$qm-prH{Q_}S~_7(>BK2WJ813Yeo4^t*7xM~Z4Jzwb0ARp?)i1Qi&plIS^Y*KPw-Rp z_G&~#f_w9WHn(*~l-{`Bhu5|-piQ_41?2xL9$@5CoKxVh&IsfDQ+%n-$bN>SQR2L3 z;nscjEbl~p`|^ire_uX`T0Fr;?$vNXjRQwL)XL~Ajw_eyhu^ie=hkpEYn z=Pruw$%HB@an-`YmX$@;yYL99Jm-~+pHU*&KR`!-r1=+%H&D@bXNb|RAD?RH`nC{7 zN&6ft;^Y8cml6i@MwC1d&z?SzAEe#kxV7&a^1v|g(8@)xsMdwp({Bx7A6lehExvjd zr$}i4*2+FnggQ%AiI`rn-3D=AdN!H6;Dr~utjHO?lFS(#mik4;-n49XsdDc z1vGC+c>!gCDD1%b@k(Ks4|WEj%TvJSG!NBqW7{ zQ+O#izqD{!NgApSV1o)uQ!`{b$6eQhHQT(jj8+2!TTDHy#*7lALmm4DwWvQ0-q!+9GTJDfjM-(v<;kJ!<#4oBM~X|p`;5Z+2z z_9FVni5%PShfCw+^D_UBY6)G#=QcPT^hx!R#8S1 z30(-3qLUdYuy023C#b_{-qaU^8mrQgcL5{xPv=4NKCknAHlx8f{*sLb$B016T8?ah9O+Ig#`E8qtUi}fTA9LTG@Hox*@H?qAh-(of}sXHPj@w?xDle7 ztdix(w5&db2m8>%>3oav)C@k^9$RJpFx)IMqBBUacZH}OgOA7&}tnLJ3>hkKo6<4RYc;K%M z;9ZSbPv2o@EBLBgVvh)GlaGIcB9B$C~mY{W(H%;)WVy)-O@Su@^Q!0!js z`UTp?^jN|frGAQ%i46;R4vpIb{qpJ}UZcKBB!l8jm3Nd@Aon~{Hb?qD&;_0zAb% zT-Xif#;o4bfkn-E;6w8uvtfryI3RSt2y5hyM4Csq9UW86RQ9&1TQ;npEt?lrx8@my z7e-yf3DPH_qHLZ;Z+(QZ={j9RGne_X%$^h&V2`(9YH>kEL0kZ5W61*P&ZdA|{(xrU z`z+?QsZA~tY85e$xA!~L)Ka2U( zYRY_E=o6_=fN5;ySO>qRkW!cMb2P&a_C9tIuijMBU==3HL&PQMQp(1p8|Cn-?qYO= zknVA6CVJ!ccCaYn<_+lmB{0&llN=73oWnnBU$$yZX%<$f%ttoI9qBf5vcQd`6__72 zm06GAQo%*K4>QsHnx*^|dT0d7e3iWB0^jE6@`M1BuCZ{0(RLY6K_=uP3?HJSqK0{9 zxi1m!+8l4``eNWGNTCa(1Izi?YJehGQ;^sX-0Ab?q6!TJ2hI+aN@wUbc=v_bq?`9*Yooij4r+`8y4&@6jd)TR%9L|3Hus|tVP+10$a zw|D8fELvL)TxHjF=&Lkr9Z$D;%N)sbg}jr^2q@xT+vv(hzLt(`0*)sHK&W^VUqLTz z<}cOP?VHr{Q%+xnym{%cn3t9nJSKg&nI}@6Em;4LZ-JVAcm(`~qn{&I6u*@>rXgE- zxJsqrY56b^U_R-+JQV7@y_KJ_q3;@R?h6(HKAU6>>B=@flCJEBi}CDs{VSaYIXJdH9@uT4F6^LI(?;jzYxdti_JJ@zqzNMQP~@Q$Q9LQv`YZZXXFna_Br z@m(>Wi(>hYF~2FVpcKpYF-K|O{zq`WtVfuWiudt$RBbPo(BpRy#=1VkQRQA`U2(g3 zbrkl*WuUrn+$TKJMnezaHxtn1jxs;x2k!Nov{66_$GkfoiBLgy>9UQaU@#f2CGnB1B5PG90bC9Y$v>pT?ct*s&a@=pp}PsJ>!Q% ze2*;n#g z#phH1ulaI20MVG6EY_(L$7oh}*ov6rxWItpoCm`6;m2_FV0a;g1=RmIAKMGo*h^bD zi!o5t>71SNx)Qqr@vXlr7}uqvw2Y>1hkexZY1({Mz67Sa=Qn&fwf>d|8~)#NG}Wyh z#G+HM&5^mWl031D2SK@GD4}MsDrC(<#Ss<>0fmE11w$t>RDA885!vS4=-oy|nfOA6Gfq2|}7SM`s^W zU}xqs#(&30*r?Rz43_Da8^7oMoysxDr-)NL2IN2*bvVWEYXV$e(T+*$I{8>~WoYTg z0ji#O$}I3uIG8q^;?)}H_ATiX(8mR?APQh5NiLJmDi}7aEfLYW3$T635m+>%o!lRW z1{g=0B|1M+MAesX;49-a?qYGvQHFU*FG1kNiWbQbT6jbE?@KFKcGz|JGLY--%2dHx znYA)>eLN!Hqt0>%9Xbt{@wH`W>W?C47hNAJ7_~aXpHb>DCjEcIQsb#rH;moyIwR|; zI+}`%0WH>gxtUEO<>FEV-q8dW_6n$eE15~tUNRBY6WS}sYd8q|JY%3UI1=v^aw@NauOCBE7-LtU2^` z>^v{`^6{vISc?7p(3+||V=X*8DM#m)fzxuOIK%xBSCbD3d;t%60nIqWKXY>-(s@7N zEuu}r1v@UuPX?Uh(P3KoO5H6%yvb0};ZwX>H+O(f1{gfOT(k(WLUngparc9`571H= zPv_6_C?8p&CL69sH2~Uxf`tz>TSjlvQxovYBYKL2RnW!L%nG@`mxDSA{(?)<=y zp{Kz+4nL!DDgVStFaN|-Y2{V8^TV(5{q9O^Og1Hd31l|v4MYYSUE`T*nHUqV^KsrS zEOm(Ck}Js5x6t)nZbXc`vV3n;g-k}$OW+~2cFDAZ0qXfPKSBqlh$vU#J+~@zsrgW< zCixfM$lpv!H(gg+_zUk&2YaKgA?qw!%!ps`3^D=v|L$zDmCxp>{Nua!eB@Eu`wQP` z{QN7o!Oi`h|3-b2aLXgE05zP8Mh?g5Qar}M5G0qQj5CCu{)4|~n@(|yM72=0eVJPY z>rg+Pz2l4t^Sb9(g?|IM;ROD4dM$FJP6q-}%9_%7e{%7l>@z1g3$G3S0#tC>;r}ZwsEqI1tTd!uO~V(2~I`M5+^sBIz$f#75R#54Xm@sv&-yd*jky) z3G9qahzrHIY52>gw?@fNv1*k0JG`YcRYY^6y`Mm1y>lhPVGIipPuOWyuox}{Bbz$S zMmTFysJQ6v%8yV*0{t@&4a;tZiFtGJt4P$Ogz93lalX2E z+LuP%C;p)9SOELc(SSgW_5r}{tt;N6H!g$Fm+UEZIEx~-miGxir&dRlb_y_5eIL^k zAiVp1$m~G}9ADY3t_t;zM@e&PF7~2n_yHc|PQ2*ukdS5r-Do7@=yZbkJo4hYywX`1 z3}76$^^-7$a)ya$2O8sCnoJ$)BmRW|tOjqGMN_;SLNIjOx;1A}XX%vsP*@ z3e8?($&FB3kX&E1K$cen5$9(W3Mx}9_j4QiKe3;i8LE?n&vi~_Y;GnlI|4kTG>|ab&Hu zBW3PfdoXRITVd7$k04WS_(w=~?NNee!ZS;p!nn{{^zx<1rAYbvypwpJ?mQ~m(zMRv zBwaht97b6eG1^|wQqt1!da5@_v#zVZuoF3CkoBqPP>eXws4L8AeAivvu!A$sr*6H_ zH~mge5%LIl)D5}F)=tID*HSXI`-fx=MRzNyP-=x@eK^tN&4`Ba5)@(IM7kBq?c zjOZ;k1zSi~mm48hWR<*f%TAT9qt*y?pQN1r&(}2fs*~n}dh~*XPVCBRxueqZUZpxq z->s$(dbLoq?{3oz087)*kC391;M2+$&ebdbK#FRa8;M^2)hFIhYk8B#e}5GW=loux zTa$m?EVMH=ro#=~9aO?V$qnkr{|V8lQdozAo`6lMxJfWp#ZcSGrlrxcogg|V)^lnM zN^x~Xm|vxvJN7iT-8kD@+~?2{hW@=pt%g<+7dUj?bxa~cvps^vH)60a?2&1PvM+BK z{oV&c-K38=X{0?VhB>Hd9y-$)efIm8Y>JH5HTKek?!+Gf&Gxu=o~)to$pLIusI+TPDsS*@sQ=u?keBEu2g{u1iFwK4-(ZH0_1O=;A)kaXtiAhqHAlER59~@}ArBy_Edlx-H+MkOx&To~PVHQ*#(E3=;KiEj(q; zVh5G1V>~X`QdhMICWIHD3{I|dBR z-8Mgcwr5ld>ux&LnCd{Qgg2SL(R!GugMD#_LoY2EE(U@8e_8Z#7;VOgy1*Z=i{o_R z4MDVM9CYFFaUz%=JO-8Q_ZE;<`8e=c%ik2eQLgtE%+}M#;Jn%27Tf8gx5a9s|2twV zN)6r<11ax4(axyxzSwG`hf;Blrm3Qnk(DX}YzY;6h~UPo;!2t5u%LV^99!)SNgYW6 z!$nvXY^H_XOjJmR#&i;)DFF5o{2(w0yuDPpMR}fE14@4ur>kfsqR*ItL9;}{Ec5%1 z5*bWaU(wj`c+uCus_ukJivE{x3lA5!ArlE&Q@?cdO`ni17E$^eV2+V35S}Ef{$5KS zI%I&{^3?U9tH;ox@PKAp=Ago@bH#h66j0iDQO{Sq`oLMsY3F#6uChhxu?ZqNOsDU+ z2J<30UCUY;5OgnvDhPenA~e@c1ht#;842ylSUUGsFbSc?`JZN`~m>D_uTB2FNv%zMd|&`Daa$>1!$> zSk~4|n<1X7qCV5NM7C8Jk~=fdxv1ex@ftKYD3lBkHabI2O0UIFQT9w&;>$C|P(LNq zK&5geQFf;2O`%z$hW^<6Jtbzr8o!=}TupIGgbV35T6NS^$IH>>60D84GczFD*i*cIHBH+*T7N z7KM6VmH(05hv&~kLkam0b$AznjkVc=N2IMWC)9I9k!yi3Gi*lJC1Qll*q0;5+3BG^ zxE6ZrIjKtv#Is&)BEplPydXvZ$r)G^8XL(H(TarCe5sDjj6)nOJ!05u;R4cC7*Db%!HNYkcl9tm zgrCkKQy?3A9D*Qglmu!dXQkL)DcI^>zn0=R6LsRX9i#961ag|1CxU$-840u_PgM7o zxhyC0L@H&jMM5^Zeuc_AI*&L(1xsn>8%QBY%QN4YB$Q-9^32YgqgRQ>*mDBep3==^ z+7rp33#&u{HCqX^w0E_L`!_uNZ~;u^+0~+l|6RBdU(})jYhXT`t`W=V)*7*fmbMj6 zUl|_K*QbRAqIDZZn5z*huH3wsJs>9`XUh>Bl{Rv*kCMSKrq-H(`TdD^}tAX z<^jl#*eG1a@QngZiC6akTG+QqqF1?-M9C%$*Wa4}pyig1L6x?2lv;@fZ^ppMej;@1 zCFE(;`^!bEvs3h^VCZOC5-vnt%Nk>S$yoegy(8^_ zq1bIu?`tU4GgREC;n1$I3G%h#5tn}H@S!_9#b{cxOY~%B6#=;by&}wLmAkUQa$98# zbn9+0z^3|0(da$mId_ET zQBdD({jHL2fq-OqaOvG1T*46%6JuKGl625`F!cy;0vi^V&0GnbP_}^nc@n7TgCk-% ztEn*P1WNqK5%#2HCNO~&+SJ;L2Ob9E1gfcqxjK>BVuBHzSC+W|kYIsLy_9B@=kL_W zLU~s?wDSRkt*ZuraY95mi2RR=BpQ5FgauB&G}pid-R(P+Dr$6h4!#xw+$MJV)orzv z3I}+`_B@m2Rua*X)?N+&ZD%C^W5V^{cY~C*4B199fc@Wi&cYICyv6$vZ0`G|m{i%% zY66$0p*i^~Ko2U(>_A$S&qd_d(xO7~k*jkR(>tO)) zXKgIexjU;8>d>PFwD?=mgrZJ}RFtD&x!xmj59rd`xB+6nfEJt(U3}zL zm&zN!LpAZp7;&-B-&8YjmXlSEk2gtQO>3}SaPK!EKWQNf+%}~+jr$thr=L%Na zUV=M{tyZx?le>>e=`N^*d}`YtL8m4^z;w0W7{Th`*T{N>7J^r64x8jb>C6I0?Enki ztVi<Z51!&D&1+>_$E8s%GIWYv0?Gka2)^BEEi5ONFw);}slelR? z2@Sn0zOeH5R0ynUw7VdJZN?|1Vw5*MKNl)J7XcUAcnKPQszX$f2}RJMt91NA2X?6M zWsnPVdSkr?{Rq!AY+6Zk?Z)W$(daUv-Y%h2S;soyB1PRFc9zS1{Wz(m~m zNxVTHUlTDt*xkq_cL@ujsOw^Tu;mlUJxk<}V}F)j>p-#2z9CvYpn89U>sq4+OI4T^ zm^(&DKN>>|szBYkP6o!5V53aPalyP@z?z>$v*0Rf%QQ7;uTk=K5!>;uvsxHHQqJbN z5qFhsj^!shfTxa;&{^)oX`Q~Ym)wi9Vl=R*VTurc(%A$RRXJuK0$O}SH2N<;Q&xS> zLfmFd+gAnZf4M5^Pxe$V|oz-&&$AePnt7T z$Cz#rHM}Kan%}jHCvMZC*E}8i%3JEtz(at`pzwU}le2gC?YLu$NRTK?MG{2;^;?ha z?vNwlLx*mOzLfa0h_-{=lF2_dFIkTeO4n;4f8(uR0i2)u4J6K~-^8Qw_=%8dTizm0rb(4!7AwKBAKEueqEuw4;4Cp+*^dXIk4EY>biZ#f)e#)3_WINr3?<`1Ma!wD;usMYh6k#g zJ|PE`e*Q~5NGU@J-lQA#xNMnb$@0&L2;_w}X J`e5I%{{`6cP1XPa diff --git a/pandora_console/include/languages/ja.po b/pandora_console/include/languages/ja.po index 685f4d7c32..47fb746d89 100644 --- a/pandora_console/include/languages/ja.po +++ b/pandora_console/include/languages/ja.po @@ -7,1904 +7,2073 @@ msgid "" msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2018-03-14 10:58+0100\n" -"PO-Revision-Date: 2018-06-10 08:00+0000\n" +"POT-Creation-Date: 2020-01-20 11:12+0100\n" +"PO-Revision-Date: 2020-04-18 06:23+0000\n" "Last-Translator: Junichi Satoh \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2018-06-11 05:48+0000\n" -"X-Generator: Launchpad (build 18684)\n" +"X-Launchpad-Export-Date: 2020-04-23 08:41+0000\n" +"X-Generator: Launchpad (build 486bbbd6cb608f8eb468ed0d08689a349dfabe49)\n" #: ../../extensions/agents_alerts.php:55 -#: ../../extensions/agents_modules.php:55 +#: ../../extensions/agents_modules.php:316 #: ../../operation/agentes/group_view.php:61 -#: ../../operation/agentes/tactical.php:46 -#: ../../enterprise/extensions/ipam/ipam_list.php:188 -#: ../../enterprise/godmode/reporting/cluster_view.php:254 -#: ../../enterprise/operation/services/services.list.php:345 -#: ../../enterprise/operation/services/services.service.php:144 +#: ../../operation/agentes/tactical.php:45 +#: ../../enterprise/extensions/ipam/ipam_list.php:142 +#: ../../enterprise/godmode/reporting/cluster_view.php:284 +#: ../../enterprise/operation/services/services.list.php:416 +#: ../../enterprise/operation/services/services.service.php:180 msgid "Last update" msgstr "最終更新" -#: ../../extensions/agents_alerts.php:95 -#: ../../extensions/agents_modules.php:138 ../../general/ui/agents_list.php:69 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/agent_manager.php:254 -#: ../../godmode/agentes/configurar_agente.php:386 -#: ../../godmode/agentes/modificar_agente.php:156 -#: ../../godmode/agentes/modificar_agente.php:473 -#: ../../godmode/agentes/planned_downtime.editor.php:495 -#: ../../godmode/agentes/planned_downtime.editor.php:780 -#: ../../godmode/agentes/planned_downtime.list.php:393 -#: ../../godmode/alerts/alert_actions.php:341 -#: ../../godmode/alerts/alert_special_days.php:246 -#: ../../godmode/alerts/alert_templates.php:300 -#: ../../godmode/alerts/configure_alert_action.php:116 +#: ../../extensions/agents_alerts.php:94 +#: ../../extensions/agents_modules.php:389 ../../general/ui/agents_list.php:76 +#: ../../godmode/agentes/agent_incidents.php:92 +#: ../../godmode/agentes/configurar_agente.php:449 +#: ../../godmode/agentes/modificar_agente.php:164 +#: ../../godmode/agentes/modificar_agente.php:491 +#: ../../godmode/agentes/planned_downtime.editor.php:647 +#: ../../godmode/agentes/planned_downtime.editor.php:1036 +#: ../../godmode/agentes/planned_downtime.list.php:400 +#: ../../godmode/alerts/alert_actions.php:184 +#: ../../godmode/alerts/alert_commands.php:402 +#: ../../godmode/alerts/alert_special_days.php:274 +#: ../../godmode/alerts/alert_templates.php:366 +#: ../../godmode/alerts/configure_alert_action.php:140 +#: ../../godmode/alerts/configure_alert_command.php:180 #: ../../godmode/alerts/configure_alert_special_days.php:69 -#: ../../godmode/alerts/configure_alert_template.php:754 -#: ../../godmode/events/custom_events.php:80 -#: ../../godmode/events/custom_events.php:156 -#: ../../godmode/events/event_edit_filter.php:226 -#: ../../godmode/events/event_filter.php:109 -#: ../../godmode/events/event_responses.editor.php:82 -#: ../../godmode/events/event_responses.list.php:56 -#: ../../godmode/gis_maps/configure_gis_map.php:366 -#: ../../godmode/massive/massive_add_action_alerts.php:151 -#: ../../godmode/massive/massive_add_alerts.php:151 -#: ../../godmode/massive/massive_add_profiles.php:89 -#: ../../godmode/massive/massive_add_tags.php:124 -#: ../../godmode/massive/massive_copy_modules.php:71 -#: ../../godmode/massive/massive_copy_modules.php:187 -#: ../../godmode/massive/massive_delete_action_alerts.php:151 -#: ../../godmode/massive/massive_delete_agents.php:105 -#: ../../godmode/massive/massive_delete_alerts.php:212 -#: ../../godmode/massive/massive_delete_profiles.php:103 -#: ../../godmode/massive/massive_edit_agents.php:260 -#: ../../godmode/massive/massive_edit_agents.php:353 -#: ../../godmode/massive/massive_enable_disable_alerts.php:136 -#: ../../godmode/massive/massive_standby_alerts.php:136 -#: ../../godmode/modules/manage_network_components.php:479 -#: ../../godmode/modules/manage_network_components.php:568 -#: ../../godmode/modules/manage_network_components_form_common.php:101 -#: ../../godmode/modules/manage_network_templates_form.php:202 -#: ../../godmode/modules/manage_network_templates_form.php:269 -#: ../../godmode/modules/manage_network_templates_form.php:302 -#: ../../godmode/netflow/nf_edit.php:120 -#: ../../godmode/netflow/nf_edit_form.php:193 -#: ../../godmode/reporting/create_container.php:228 -#: ../../godmode/reporting/create_container.php:478 -#: ../../godmode/reporting/create_container.php:559 -#: ../../godmode/reporting/graph_builder.main.php:127 -#: ../../godmode/reporting/graphs.php:158 -#: ../../godmode/reporting/map_builder.php:235 -#: ../../godmode/reporting/map_builder.php:259 -#: ../../godmode/reporting/reporting_builder.item_editor.php:907 -#: ../../godmode/reporting/reporting_builder.main.php:69 -#: ../../godmode/reporting/reporting_builder.php:465 -#: ../../godmode/reporting/reporting_builder.php:595 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:198 -#: ../../godmode/reporting/visual_console_favorite.php:58 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:312 -#: ../../godmode/setup/gis.php:63 ../../godmode/setup/gis_step_2.php:153 -#: ../../godmode/setup/news.php:164 -#: ../../godmode/snmpconsole/snmp_alert.php:657 -#: ../../godmode/users/configure_user.php:738 -#: ../../godmode/users/user_list.php:225 -#: ../../include/functions_pandora_networkmap.php:1636 -#: ../../include/functions_pandora_networkmap.php:1822 -#: ../../include/functions_container.php:132 -#: ../../include/functions_events.php:38 -#: ../../include/functions_events.php:2536 -#: ../../include/functions_events.php:3656 -#: ../../include/functions_visual_map.php:3943 -#: ../../include/functions_visual_map_editor.php:63 -#: ../../include/functions_visual_map_editor.php:450 -#: ../../include/functions_visual_map_editor.php:874 -#: ../../include/functions_graph.php:6423 -#: ../../include/functions_groups.php:739 -#: ../../include/functions_networkmap.php:1758 -#: ../../include/functions_reporting_html.php:2082 -#: ../../include/functions_reporting_html.php:2117 -#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:139 -#: ../../mobile/operation/agents.php:196 ../../mobile/operation/agents.php:197 -#: ../../mobile/operation/agents.php:340 ../../mobile/operation/alerts.php:84 -#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:178 -#: ../../mobile/operation/alerts.php:179 ../../mobile/operation/events.php:361 -#: ../../mobile/operation/events.php:365 ../../mobile/operation/events.php:501 -#: ../../mobile/operation/events.php:604 ../../mobile/operation/events.php:605 -#: ../../mobile/operation/modules.php:128 -#: ../../mobile/operation/modules.php:132 -#: ../../mobile/operation/modules.php:203 -#: ../../mobile/operation/modules.php:204 -#: ../../mobile/operation/networkmaps.php:65 -#: ../../mobile/operation/networkmaps.php:69 -#: ../../mobile/operation/networkmaps.php:129 -#: ../../mobile/operation/networkmaps.php:130 -#: ../../mobile/operation/networkmaps.php:197 -#: ../../mobile/operation/visualmaps.php:49 -#: ../../mobile/operation/visualmaps.php:53 -#: ../../mobile/operation/visualmaps.php:141 -#: ../../operation/agentes/alerts_status.functions.php:68 -#: ../../operation/agentes/estado_agente.php:195 -#: ../../operation/agentes/estado_agente.php:562 -#: ../../operation/agentes/estado_generalagente.php:274 -#: ../../operation/agentes/exportdata.php:235 -#: ../../operation/agentes/group_view.php:164 -#: ../../operation/agentes/pandora_networkmap.editor.php:224 -#: ../../operation/agentes/pandora_networkmap.editor.php:248 -#: ../../operation/agentes/status_monitor.php:290 -#: ../../operation/agentes/ver_agente.php:762 -#: ../../operation/events/events.build_table.php:185 -#: ../../operation/events/events_list.php:615 -#: ../../operation/events/sound_events.php:79 -#: ../../operation/gis_maps/ajax.php:309 -#: ../../operation/gis_maps/gis_map.php:90 -#: ../../operation/incidents/incident.php:339 -#: ../../operation/incidents/incident_detail.php:308 -#: ../../operation/netflow/nf_live_view.php:309 -#: ../../operation/search_agents.php:47 ../../operation/search_agents.php:59 -#: ../../operation/search_maps.php:32 ../../operation/users/user_edit.php:516 -#: ../../enterprise/dashboard/dashboards.php:88 -#: ../../enterprise/dashboard/main_dashboard.php:319 -#: ../../enterprise/dashboard/main_dashboard.php:357 -#: ../../enterprise/dashboard/widgets/agent_module.php:41 -#: ../../enterprise/dashboard/widgets/alerts_fired.php:28 -#: ../../enterprise/dashboard/widgets/top_n.php:306 -#: ../../enterprise/dashboard/widgets/tree_view.php:46 -#: ../../enterprise/extensions/cron/functions.php:40 -#: ../../enterprise/extensions/cron/main.php:317 -#: ../../enterprise/extensions/vmware/ajax.php:95 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:168 -#: ../../enterprise/godmode/agentes/collections.php:232 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:88 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:101 -#: ../../enterprise/godmode/alerts/alert_events.php:491 -#: ../../enterprise/godmode/alerts/alert_events_list.php:361 -#: ../../enterprise/godmode/alerts/alert_events_list.php:423 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:409 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:78 -#: ../../enterprise/godmode/modules/configure_local_component.php:217 -#: ../../enterprise/godmode/modules/local_components.php:401 -#: ../../enterprise/godmode/modules/local_components.php:483 -#: ../../enterprise/godmode/policies/configure_policy.php:68 -#: ../../enterprise/godmode/policies/policies.php:229 -#: ../../enterprise/godmode/policies/policies.php:258 -#: ../../enterprise/godmode/policies/policy_agents.php:554 -#: ../../enterprise/godmode/policies/policy_agents.php:577 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:158 -#: ../../enterprise/godmode/reporting/graph_template_list.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:288 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:115 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1486 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:308 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:83 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:276 -#: ../../enterprise/godmode/reporting/cluster_list.php:90 -#: ../../enterprise/godmode/reporting/cluster_list.php:162 -#: ../../enterprise/godmode/services/services.service.php:290 +#: ../../godmode/alerts/configure_alert_template.php:917 +#: ../../godmode/events/custom_events.php:99 +#: ../../godmode/events/event_edit_filter.php:265 +#: ../../godmode/events/event_filter.php:122 +#: ../../godmode/events/event_responses.editor.php:87 +#: ../../godmode/events/event_responses.list.php:52 +#: ../../godmode/gis_maps/configure_gis_map.php:462 +#: ../../godmode/gis_maps/configure_gis_map.php:566 +#: ../../godmode/massive/massive_add_action_alerts.php:156 +#: ../../godmode/massive/massive_add_alerts.php:183 +#: ../../godmode/massive/massive_add_profiles.php:102 +#: ../../godmode/massive/massive_copy_modules.php:84 +#: ../../godmode/massive/massive_copy_modules.php:237 +#: ../../godmode/massive/massive_delete_action_alerts.php:163 +#: ../../godmode/massive/massive_delete_agents.php:114 +#: ../../godmode/massive/massive_delete_alerts.php:247 +#: ../../godmode/massive/massive_delete_profiles.php:109 +#: ../../godmode/massive/massive_edit_agents.php:400 +#: ../../godmode/massive/massive_edit_agents.php:550 +#: ../../godmode/massive/massive_enable_disable_alerts.php:146 +#: ../../godmode/massive/massive_standby_alerts.php:146 +#: ../../godmode/modules/manage_network_components.php:537 +#: ../../godmode/modules/manage_network_components.php:673 +#: ../../godmode/modules/manage_network_components_form_common.php:142 +#: ../../godmode/modules/manage_network_templates_form.php:223 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/modules/manage_network_templates_form.php:327 +#: ../../godmode/netflow/nf_edit.php:147 +#: ../../godmode/netflow/nf_edit_form.php:202 +#: ../../godmode/reporting/create_container.php:217 +#: ../../godmode/reporting/create_container.php:495 +#: ../../godmode/reporting/create_container.php:584 +#: ../../godmode/reporting/graph_builder.main.php:116 +#: ../../godmode/reporting/graphs.php:168 +#: ../../godmode/reporting/graphs.php:266 +#: ../../godmode/reporting/map_builder.php:308 +#: ../../godmode/reporting/map_builder.php:336 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1218 +#: ../../godmode/reporting/reporting_builder.main.php:91 +#: ../../godmode/reporting/reporting_builder.php:643 +#: ../../godmode/reporting/reporting_builder.php:829 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:270 +#: ../../godmode/reporting/visual_console_favorite.php:111 +#: ../../godmode/setup/gis.php:75 ../../godmode/setup/gis_step_2.php:200 +#: ../../godmode/setup/news.php:178 ../../godmode/setup/setup_integria.php:289 +#: ../../godmode/setup/setup_integria.php:412 +#: ../../godmode/snmpconsole/snmp_alert.php:772 +#: ../../godmode/users/user_list.php:260 +#: ../../godmode/wizards/HostDevices.class.php:779 +#: ../../include/ajax/custom_fields.php:618 +#: ../../include/ajax/custom_fields.php:667 +#: ../../include/class/CredentialStore.class.php:729 +#: ../../include/class/CredentialStore.class.php:760 +#: ../../include/class/CredentialStore.class.php:845 +#: ../../include/class/CustomNetScan.class.php:499 +#: ../../include/class/NetworkMap.class.php:2863 +#: ../../include/class/NetworkMap.class.php:2916 +#: ../../include/class/NetworkMap.class.php:3203 +#: ../../include/functions_container.php:150 +#: ../../include/functions_cron.php:459 ../../include/functions_events.php:193 +#: ../../include/functions_events.php:244 +#: ../../include/functions_events.php:4593 +#: ../../include/functions_events.php:6038 +#: ../../include/functions_events.php.orig:191 +#: ../../include/functions_events.php.orig:242 +#: ../../include/functions_events.php.orig:4487 +#: ../../include/functions_events.php.orig:5942 +#: ../../include/functions_gis.php:228 ../../include/functions_graph.php:4974 +#: ../../include/functions_visual_map.php:4298 +#: ../../include/functions_visual_map_editor.php:70 +#: ../../include/functions_visual_map_editor.php:526 +#: ../../include/functions_visual_map_editor.php:1307 +#: ../../include/functions_reporting_html.php:2610 +#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_profile.php:212 ../../mobile/operation/agents.php:79 +#: ../../mobile/operation/agents.php:143 ../../mobile/operation/agents.php:219 +#: ../../mobile/operation/agents.php:220 ../../mobile/operation/agents.php:393 +#: ../../mobile/operation/alerts.php:95 ../../mobile/operation/alerts.php:100 +#: ../../mobile/operation/alerts.php:212 ../../mobile/operation/alerts.php:213 +#: ../../mobile/operation/events.php:385 ../../mobile/operation/events.php:390 +#: ../../mobile/operation/events.php:544 ../../mobile/operation/events.php:662 +#: ../../mobile/operation/events.php:663 ../../mobile/operation/modules.php:147 +#: ../../mobile/operation/modules.php:152 +#: ../../mobile/operation/modules.php:241 +#: ../../mobile/operation/modules.php:242 +#: ../../mobile/operation/visualmaps.php:55 +#: ../../mobile/operation/visualmaps.php:60 +#: ../../mobile/operation/visualmaps.php:164 +#: ../../operation/agentes/alerts_status.functions.php:73 +#: ../../operation/agentes/estado_agente.php:211 +#: ../../operation/agentes/estado_agente.php:710 +#: ../../operation/agentes/estado_generalagente.php:339 +#: ../../operation/agentes/exportdata.php:226 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/pandora_networkmap.editor.php:268 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +#: ../../operation/agentes/status_monitor.php:357 +#: ../../operation/agentes/ver_agente.php:848 +#: ../../operation/events/events.build_table.php:222 +#: ../../operation/events/events.php:877 +#: ../../operation/events/events_list.php:903 +#: ../../operation/events/sound_events.php:71 +#: ../../operation/gis_maps/ajax.php:332 ../../operation/gis_maps/ajax.php:438 +#: ../../operation/gis_maps/gis_map.php:103 +#: ../../operation/incidents/configure_integriaims_incident.php:242 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:375 +#: ../../operation/incidents/incident.php:423 +#: ../../operation/incidents/incident_detail.php:338 +#: ../../operation/incidents/list_integriaims_incidents.php:120 +#: ../../operation/netflow/nf_live_view.php:372 +#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:49 +#: ../../operation/search_maps.php:28 ../../operation/users/user_edit.php:754 +#: ../../enterprise/dashboard/dashboards.php:114 +#: ../../enterprise/dashboard/main_dashboard.php:337 +#: ../../enterprise/dashboard/main_dashboard.php:396 +#: ../../enterprise/dashboard/widgets/agent_module.php:57 +#: ../../enterprise/dashboard/widgets/alerts_fired.php:31 +#: ../../enterprise/dashboard/widgets/tree_view.php:55 +#: ../../enterprise/dashboard/widgets/top_n.php:338 +#: ../../enterprise/extensions/ipam/ipam_editor.php:173 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:189 +#: ../../enterprise/godmode/agentes/collections.php:323 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:111 +#: ../../enterprise/godmode/alerts/alert_events.php:589 +#: ../../enterprise/godmode/alerts/alert_events_list.php:411 +#: ../../enterprise/godmode/alerts/alert_events_list.php:502 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:403 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:85 +#: ../../enterprise/godmode/modules/configure_local_component.php:268 +#: ../../enterprise/godmode/modules/local_components.php:436 +#: ../../enterprise/godmode/modules/local_components.php:560 +#: ../../enterprise/godmode/policies/configure_policy.php:77 +#: ../../enterprise/godmode/policies/policies.php:329 +#: ../../enterprise/godmode/policies/policies.php:428 +#: ../../enterprise/godmode/policies/policy_agents.php:671 +#: ../../enterprise/godmode/policies/policy_agents.php:714 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:309 +#: ../../enterprise/godmode/reporting/cluster_list.php:92 +#: ../../enterprise/godmode/reporting/cluster_list.php:189 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:164 +#: ../../enterprise/godmode/reporting/graph_template_list.php:148 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:147 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1805 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:323 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:94 +#: ../../enterprise/godmode/reporting/visual_console_template.php:169 +#: ../../enterprise/godmode/reporting/visual_console_template.php:197 +#: ../../enterprise/godmode/services/services.service.php:392 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:632 #: ../../enterprise/include/ajax/clustermap.php:46 -#: ../../enterprise/include/functions_alert_event.php:926 -#: ../../enterprise/include/functions_events.php:76 -#: ../../enterprise/include/functions_reporting_pdf.php:2396 -#: ../../enterprise/include/functions_reporting_pdf.php:2446 -#: ../../enterprise/meta/advanced/synchronizing.user.php:576 -#: ../../enterprise/meta/agentsearch.php:105 -#: ../../enterprise/meta/include/functions_events_meta.php:67 -#: ../../enterprise/meta/include/functions_wizard_meta.php:153 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1633 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:329 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:398 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:506 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:587 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:271 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:360 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:72 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:674 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:821 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2520 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2624 +#: ../../enterprise/include/class/Aws.cloud.php:451 +#: ../../enterprise/include/class/Aws.cloud.php:1118 +#: ../../enterprise/include/class/Azure.cloud.php:760 +#: ../../enterprise/include/class/MySQL.app.php:473 +#: ../../enterprise/include/class/Omnishell.class.php:399 +#: ../../enterprise/include/class/Omnishell.class.php:428 +#: ../../enterprise/include/class/Omnishell.class.php:678 +#: ../../enterprise/include/class/Oracle.app.php:471 +#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/VMware.app.php:656 +#: ../../enterprise/include/functions_alert_event.php:1134 +#: ../../enterprise/include/functions_events.php:97 +#: ../../enterprise/include/functions_tasklist.php:172 +#: ../../enterprise/meta/advanced/collections.php:321 +#: ../../enterprise/meta/advanced/cron_main.php:390 +#: ../../enterprise/meta/advanced/synchronizing.user.php:633 +#: ../../enterprise/meta/agentsearch.php:116 +#: ../../enterprise/meta/agentsearch.php:299 +#: ../../enterprise/meta/include/functions_events_meta.php:74 +#: ../../enterprise/meta/include/functions_wizard_meta.php:193 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1803 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:138 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:255 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:352 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:417 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:606 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:310 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:413 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:71 #: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 -#: ../../enterprise/operation/agentes/tag_view.php:75 -#: ../../enterprise/operation/agentes/tag_view.php:467 -#: ../../enterprise/operation/agentes/transactional_map.php:150 -#: ../../enterprise/operation/agentes/ver_agente.php:50 -#: ../../enterprise/operation/agentes/ver_agente.php:71 -#: ../../enterprise/operation/inventory/inventory.php:165 -#: ../../enterprise/operation/log/log_viewer.php:215 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:196 -#: ../../enterprise/operation/services/services.list.php:183 -#: ../../enterprise/operation/services/services.list.php:335 -#: ../../enterprise/operation/services/services.service.php:132 -#: ../../enterprise/operation/services/services.table_services.php:152 +#: ../../enterprise/operation/agentes/tag_view.php:82 +#: ../../enterprise/operation/agentes/tag_view.php:577 +#: ../../enterprise/operation/agentes/transactional_map.php:182 +#: ../../enterprise/operation/agentes/ver_agente.php:49 +#: ../../enterprise/operation/agentes/ver_agente.php:70 +#: ../../enterprise/operation/inventory/inventory.php:180 +#: ../../enterprise/operation/log/log_viewer.php:450 +#: ../../enterprise/operation/services/services.list.php:212 +#: ../../enterprise/operation/services/services.list.php:408 +#: ../../enterprise/operation/services/services.service.php:166 +#: ../../enterprise/operation/services/services.table_services.php:191 msgid "Group" msgstr "グループ" -#: ../../extensions/agents_alerts.php:98 +#: ../../extensions/agents_alerts.php:97 msgid "Show modules without alerts" msgstr "アラート無しでモジュールを表示" -#: ../../extensions/agents_alerts.php:103 -#: ../../extensions/agents_modules.php:225 ../../general/login_page.php:71 -#: ../../general/login_page.php:229 ../../include/ajax/module.php:844 -#: ../../include/functions_pandora_networkmap.php:1009 -#: ../../operation/events/events.php:490 -#: ../../operation/reporting/graph_viewer.php:259 -#: ../../operation/servers/recon_view.php:52 -#: ../../operation/visual_console/public_console.php:112 -#: ../../operation/visual_console/render_view.php:176 -#: ../../enterprise/dashboard/main_dashboard.php:201 -#: ../../enterprise/dashboard/widgets/top_n.php:286 -#: ../../enterprise/extensions/ipam/ipam_network.php:159 -#: ../../enterprise/godmode/policies/policy_queue.php:490 -#: ../../enterprise/meta/advanced/policymanager.queue.php:236 +#: ../../extensions/agents_alerts.php:101 +#: ../../extensions/agents_modules.php:492 ../../general/login_page.php:70 +#: ../../general/login_page.php:294 ../../include/ajax/module.php:912 +#: ../../include/class/NetworkMap.class.php:2817 +#: ../../operation/events/events.php:671 +#: ../../operation/gis_maps/render_view.php:147 +#: ../../operation/reporting/graph_viewer.php:291 +#: ../../operation/servers/recon_view.php:50 +#: ../../operation/visual_console/legacy_public_view.php:120 +#: ../../operation/visual_console/legacy_view.php:214 +#: ../../operation/visual_console/public_view.php:102 +#: ../../operation/visual_console/view.php:191 +#: ../../enterprise/dashboard/main_dashboard.php:183 +#: ../../enterprise/dashboard/widgets/top_n.php:312 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1243 +#: ../../enterprise/godmode/policies/policy_queue.php:566 +#: ../../enterprise/include/class/Omnishell.class.php:544 +#: ../../enterprise/include/class/Omnishell.class.php:1276 +#: ../../enterprise/meta/advanced/policymanager.queue.php:238 msgid "Refresh" msgstr "リフレッシュ" -#: ../../extensions/agents_alerts.php:105 -#: ../../extensions/agents_alerts.php:251 -#: ../../godmode/alerts/alert_list.builder.php:136 -#: ../../godmode/alerts/configure_alert_action.php:144 -#: ../../godmode/setup/setup_visuals.php:803 -#: ../../godmode/snmpconsole/snmp_alert.php:938 -#: ../../include/functions.php:430 ../../include/functions.php:564 -#: ../../include/functions_html.php:831 -#: ../../include/functions_netflow.php:1134 -#: ../../include/functions_netflow.php:1144 -#: ../../include/functions_netflow.php:1161 -#: ../../include/functions_netflow.php:1169 -#: ../../include/functions_netflow.php:1193 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:275 -#: ../../enterprise/meta/advanced/metasetup.visual.php:162 +#: ../../extensions/agents_alerts.php:104 +#: ../../extensions/agents_alerts.php:301 +#: ../../godmode/setup/setup_visuals.php:940 +#: ../../godmode/setup/setup_visuals.php:941 +#: ../../godmode/setup/setup_visuals.php:1297 +#: ../../godmode/snmpconsole/snmp_alert.php:1033 +#: ../../include/functions.php:488 ../../include/functions.php:628 +#: ../../include/functions_html.php:1065 +#: ../../include/functions_visual_map_editor.php:1133 +#: ../../include/functions_visual_map_editor.php:1134 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:312 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:897 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1379 +#: ../../enterprise/meta/advanced/metasetup.visual.php:224 +#: ../../enterprise/meta/advanced/metasetup.visual.php:416 +#: ../../enterprise/meta/advanced/metasetup.visual.php:417 msgid "seconds" msgstr "秒" -#: ../../extensions/agents_alerts.php:106 ../../include/functions.php:2611 -#: ../../operation/gis_maps/render_view.php:138 +#: ../../extensions/agents_alerts.php:105 ../../include/functions.php:3193 +#: ../../operation/gis_maps/render_view.php:139 msgid "1 minute" msgstr "1 分" -#: ../../extensions/agents_alerts.php:107 ../../include/functions.php:2612 -#: ../../operation/gis_maps/render_view.php:139 +#: ../../extensions/agents_alerts.php:106 ../../include/functions.php:3194 +#: ../../operation/gis_maps/render_view.php:140 msgid "2 minutes" msgstr "2 分" -#: ../../extensions/agents_alerts.php:108 ../../include/ajax/module.php:137 -#: ../../include/functions.php:2613 -#: ../../operation/gis_maps/render_view.php:140 +#: ../../extensions/agents_alerts.php:107 ../../include/ajax/module.php:163 +#: ../../include/functions.php:3195 +#: ../../include/functions_notifications.php:721 +#: ../../operation/gis_maps/render_view.php:141 msgid "5 minutes" msgstr "5 分" -#: ../../extensions/agents_alerts.php:109 -#: ../../operation/gis_maps/render_view.php:141 +#: ../../extensions/agents_alerts.php:108 +#: ../../operation/gis_maps/render_view.php:142 msgid "10 minutes" msgstr "10 分" -#: ../../extensions/agents_alerts.php:115 -#: ../../extensions/agents_modules.php:113 -#: ../../extensions/agents_modules.php:124 -#: ../../extensions/agents_modules.php:130 -#: ../../extensions/disabled/matrix_events.php:31 -#: ../../operation/gis_maps/render_view.php:111 -#: ../../operation/reporting/graph_viewer.php:165 -#: ../../operation/reporting/reporting_viewer.php:103 -#: ../../operation/visual_console/pure_ajax.php:136 -#: ../../operation/visual_console/render_view.php:139 -#: ../../enterprise/dashboard/main_dashboard.php:151 -#: ../../enterprise/operation/agentes/manage_transmap.php:92 +#: ../../extensions/agents_alerts.php:125 +#: ../../extensions/agents_modules.php:374 +#: ../../extensions/agents_modules.php:381 +#: ../../extensions/agents_modules.php:384 +#: ../../extensions/disabled/matrix_events.php:28 +#: ../../operation/gis_maps/render_view.php:123 +#: ../../operation/reporting/graph_viewer.php:173 +#: ../../operation/reporting/reporting_viewer.php:114 +#: ../../operation/visual_console/legacy_view.php:172 +#: ../../operation/visual_console/pure_ajax.php:169 +#: ../../operation/visual_console/view.php:141 +#: ../../enterprise/dashboard/main_dashboard.php:146 +#: ../../enterprise/operation/agentes/manage_transmap.php:108 msgid "Full screen mode" msgstr "フルスクリーンモード" -#: ../../extensions/agents_alerts.php:120 -#: ../../extensions/agents_modules.php:216 -#: ../../operation/events/events.php:481 -#: ../../operation/gis_maps/render_view.php:115 -#: ../../operation/reporting/graph_viewer.php:170 -#: ../../operation/reporting/reporting_viewer.php:108 -#: ../../operation/visual_console/render_view.php:167 -#: ../../enterprise/dashboard/main_dashboard.php:165 +#: ../../extensions/agents_alerts.php:127 +#: ../../extensions/agents_modules.php:483 +#: ../../operation/events/events.php:661 +#: ../../operation/gis_maps/render_view.php:125 +#: ../../operation/reporting/graph_viewer.php:175 +#: ../../operation/reporting/reporting_viewer.php:116 +#: ../../operation/visual_console/legacy_view.php:205 +#: ../../operation/visual_console/view.php:183 +#: ../../enterprise/dashboard/main_dashboard.php:156 msgid "Back to normal mode" msgstr "通常モードへ戻る" -#: ../../extensions/agents_alerts.php:133 +#: ../../extensions/agents_alerts.php:143 msgid "Agents/Alerts" msgstr "エージェント/アラート" -#: ../../extensions/agents_alerts.php:143 -#: ../../operation/agentes/networkmap.dinamic.php:103 -#: ../../operation/agentes/pandora_networkmap.view.php:784 -#: ../../operation/events/events.php:355 -#: ../../operation/snmpconsole/snmp_browser.php:112 -#: ../../operation/snmpconsole/snmp_statistics.php:49 -#: ../../operation/snmpconsole/snmp_view.php:90 -#: ../../enterprise/dashboard/dashboards.php:89 -#: ../../enterprise/dashboard/dashboards.php:142 +#: ../../extensions/agents_alerts.php:161 +#: ../../operation/agentes/networkmap.dinamic.php:112 +#: ../../operation/agentes/pandora_networkmap.view.php:837 +#: ../../operation/events/events.php:710 +#: ../../operation/snmpconsole/snmp_browser.php:186 +#: ../../operation/snmpconsole/snmp_statistics.php:43 +#: ../../operation/snmpconsole/snmp_view.php:88 +#: ../../enterprise/dashboard/dashboards.php:115 +#: ../../enterprise/dashboard/dashboards.php:164 msgid "Full screen" msgstr "全画面" -#: ../../extensions/agents_alerts.php:179 -#: ../../extensions/agents_alerts.php:325 -#: ../../extensions/agents_modules.php:162 -#: ../../extensions/agents_modules.php:396 -#: ../../godmode/alerts/alert_list.list.php:71 -#: ../../godmode/massive/massive_add_alerts.php:157 -#: ../../godmode/massive/massive_add_tags.php:129 -#: ../../godmode/massive/massive_delete_agents.php:127 -#: ../../godmode/massive/massive_delete_alerts.php:218 -#: ../../godmode/massive/massive_delete_modules.php:522 -#: ../../godmode/massive/massive_delete_tags.php:192 -#: ../../godmode/massive/massive_edit_agents.php:281 -#: ../../godmode/massive/massive_edit_modules.php:362 -#: ../../godmode/massive/massive_edit_plugins.php:299 -#: ../../godmode/massive/massive_enable_disable_alerts.php:141 -#: ../../godmode/massive/massive_standby_alerts.php:142 -#: ../../godmode/reporting/graph_builder.graph_editor.php:312 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1062 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1134 -#: ../../godmode/reporting/reporting_builder.list_items.php:165 -#: ../../godmode/reporting/reporting_builder.list_items.php:190 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../include/functions_pandora_networkmap.php:1831 -#: ../../include/functions_groups.php:46 -#: ../../include/functions_groups.php:778 -#: ../../include/functions_groups.php:780 -#: ../../include/functions_groups.php:782 -#: ../../include/functions_groups.php:783 -#: ../../include/functions_groups.php:784 -#: ../../include/functions_reporting_html.php:1325 -#: ../../include/functions_reporting_html.php:1565 -#: ../../mobile/include/functions_web.php:22 -#: ../../mobile/operation/agents.php:179 ../../mobile/operation/home.php:65 -#: ../../operation/agentes/group_view.php:120 -#: ../../operation/agentes/group_view.php:158 -#: ../../operation/search_results.php:74 -#: ../../enterprise/dashboard/widgets/agent_module.php:294 -#: ../../enterprise/dashboard/widgets/groups_status.php:86 -#: ../../enterprise/dashboard/widgets/service_map.php:93 -#: ../../enterprise/extensions/cron/functions.php:33 -#: ../../enterprise/extensions/cron/main.php:316 -#: ../../enterprise/godmode/agentes/collections.agents.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:107 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:92 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:221 -#: ../../enterprise/godmode/policies/policies.php:257 -#: ../../enterprise/godmode/policies/policies.php:409 -#: ../../enterprise/godmode/policies/policy.php:50 -#: ../../enterprise/godmode/policies/policy_agents.php:418 -#: ../../enterprise/godmode/policies/policy_agents.php:536 -#: ../../enterprise/godmode/policies/policy_queue.php:395 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:154 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:201 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:155 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:324 -#: ../../enterprise/include/functions_policies.php:3486 -#: ../../enterprise/include/functions_reporting.php:5834 -#: ../../enterprise/include/functions_reporting_pdf.php:608 -#: ../../enterprise/include/functions_reporting_pdf.php:741 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:278 -#: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/meta/include/functions_autoprovision.php:384 -#: ../../enterprise/meta/monitoring/group_view.php:98 -#: ../../enterprise/meta/monitoring/group_view.php:136 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:228 -#: ../../enterprise/operation/services/services.service_map.php:133 +#: ../../extensions/agents_alerts.php:205 +#: ../../extensions/agents_alerts.php:390 +#: ../../extensions/agents_modules.php:416 +#: ../../extensions/agents_modules.php:690 +#: ../../godmode/alerts/alert_list.list.php:68 +#: ../../godmode/massive/massive_add_alerts.php:203 +#: ../../godmode/massive/massive_delete_agents.php:172 +#: ../../godmode/massive/massive_delete_alerts.php:271 +#: ../../godmode/massive/massive_delete_modules.php:511 +#: ../../godmode/massive/massive_edit_agents.php:457 +#: ../../godmode/massive/massive_edit_modules.php:483 +#: ../../godmode/massive/massive_edit_plugins.php:345 +#: ../../godmode/massive/massive_enable_disable_alerts.php:151 +#: ../../godmode/massive/massive_standby_alerts.php:164 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1428 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1490 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1610 +#: ../../godmode/reporting/reporting_builder.list_items.php:208 +#: ../../godmode/reporting/reporting_builder.list_items.php:229 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +#: ../../include/class/Diagnostics.class.php:1152 +#: ../../include/class/Diagnostics.class.php:1156 +#: ../../include/class/Diagnostics.class.php:1160 +#: ../../include/class/Diagnostics.class.php:1164 +#: ../../include/class/NetworkMap.class.php:3215 +#: ../../include/functions_cron.php:557 ../../include/functions_groups.php:53 +#: ../../include/functions_reporting_html.php:1548 +#: ../../include/functions_reporting_html.php:1890 +#: ../../include/functions_reporting_html.php:2348 +#: ../../mobile/include/functions_web.php:21 +#: ../../mobile/operation/agent.php:160 ../../mobile/operation/agents.php:190 +#: ../../mobile/operation/home.php:72 +#: ../../operation/agentes/group_view.php:154 +#: ../../operation/agentes/group_view.php:187 +#: ../../operation/search_results.php:79 +#: ../../enterprise/dashboard/widgets/agent_module.php:339 +#: ../../enterprise/dashboard/widgets/groups_status.php:95 +#: ../../enterprise/dashboard/widgets/service_map.php:109 +#: ../../enterprise/godmode/agentes/collections.agents.php:55 +#: ../../enterprise/godmode/agentes/collections.data.php:113 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:217 +#: ../../enterprise/godmode/policies/policies.php:427 +#: ../../enterprise/godmode/policies/policies.php:547 +#: ../../enterprise/godmode/policies/policy.php:60 +#: ../../enterprise/godmode/policies/policy_agents.php:532 +#: ../../enterprise/godmode/policies/policy_agents.php:651 +#: ../../enterprise/godmode/policies/policy_queue.php:459 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:366 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:296 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +#: ../../enterprise/include/functions_cron.php:210 +#: ../../enterprise/include/functions_policies.php:3800 +#: ../../enterprise/include/functions_reporting.php:7176 +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../enterprise/include/functions_tasklist.php:278 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:313 +#: ../../enterprise/meta/advanced/policymanager.queue.php:258 +#: ../../enterprise/meta/include/functions_autoprovision.php:450 +#: ../../enterprise/meta/monitoring/group_view.php:137 +#: ../../enterprise/meta/monitoring/group_view.php:178 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:237 +#: ../../enterprise/operation/services/services.service_map.php:179 msgid "Agents" msgstr "エージェント" -#: ../../extensions/agents_alerts.php:180 -#: ../../extensions/agents_modules.php:396 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:829 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:542 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:375 -#: ../../godmode/agentes/configurar_agente.php:325 -#: ../../godmode/agentes/configurar_agente.php:559 -#: ../../godmode/agentes/modificar_agente.php:574 -#: ../../godmode/agentes/planned_downtime.editor.php:783 -#: ../../godmode/agentes/planned_downtime.editor.php:857 -#: ../../godmode/massive/massive_add_tags.php:139 -#: ../../godmode/massive/massive_copy_modules.php:149 -#: ../../godmode/massive/massive_delete_modules.php:500 -#: ../../godmode/massive/massive_delete_tags.php:199 -#: ../../godmode/massive/massive_edit_modules.php:324 -#: ../../godmode/massive/massive_edit_plugins.php:308 -#: ../../godmode/reporting/graph_builder.graph_editor.php:314 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1104 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1153 -#: ../../godmode/reporting/reporting_builder.list_items.php:167 -#: ../../godmode/reporting/reporting_builder.list_items.php:193 -#: ../../godmode/reporting/visual_console_builder.wizard.php:294 -#: ../../godmode/servers/servers.build_table.php:68 -#: ../../include/functions_reporting_html.php:1325 -#: ../../include/functions_reporting_html.php:3359 -#: ../../include/functions_reports.php:563 -#: ../../include/functions_reports.php:565 -#: ../../include/functions_reports.php:567 -#: ../../include/functions_reports.php:569 -#: ../../include/functions_reports.php:571 -#: ../../include/functions_reports.php:573 -#: ../../include/functions_reports.php:575 -#: ../../include/functions_reports.php:577 -#: ../../mobile/operation/agent.php:266 ../../mobile/operation/agents.php:79 -#: ../../mobile/operation/agents.php:350 ../../mobile/operation/agents.php:351 -#: ../../mobile/operation/home.php:71 ../../mobile/operation/modules.php:186 -#: ../../operation/agentes/estado_agente.php:570 -#: ../../operation/agentes/exportdata.php:275 -#: ../../operation/agentes/graphs.php:154 -#: ../../operation/agentes/group_view.php:121 -#: ../../operation/agentes/group_view.php:159 -#: ../../operation/search_agents.php:63 ../../operation/search_results.php:134 -#: ../../operation/tree.php:73 -#: ../../enterprise/dashboard/widgets/agent_module.php:294 -#: ../../enterprise/dashboard/widgets/groups_status.php:158 -#: ../../enterprise/dashboard/widgets/service_map.php:98 -#: ../../enterprise/dashboard/widgets/top_n.php:332 -#: ../../enterprise/dashboard/widgets/tree_view.php:39 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:104 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:137 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:93 -#: ../../enterprise/godmode/policies/policies.php:389 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:813 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:527 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:374 -#: ../../enterprise/godmode/policies/policy_modules.php:389 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:157 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:161 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:556 -#: ../../enterprise/include/ajax/clustermap.php:255 -#: ../../enterprise/include/ajax/clustermap.php:466 -#: ../../enterprise/include/functions_policies.php:3391 -#: ../../enterprise/include/functions_reporting_pdf.php:608 -#: ../../enterprise/include/functions_reporting_pdf.php:760 -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/agentsearch.php:106 -#: ../../enterprise/meta/include/functions_wizard_meta.php:305 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1649 -#: ../../enterprise/meta/monitoring/group_view.php:99 -#: ../../enterprise/meta/monitoring/group_view.php:137 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:407 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:515 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:596 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:225 -#: ../../enterprise/operation/agentes/tag_view.php:469 -#: ../../enterprise/operation/services/services.service_map.php:138 +#: ../../extensions/agents_alerts.php:206 +#: ../../extensions/agents_modules.php:690 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:884 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:608 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:575 +#: ../../godmode/agentes/configurar_agente.php:388 +#: ../../godmode/agentes/configurar_agente.php:623 +#: ../../godmode/agentes/modificar_agente.php:608 +#: ../../godmode/agentes/planned_downtime.editor.php:1039 +#: ../../godmode/agentes/planned_downtime.editor.php:1117 +#: ../../godmode/massive/massive_copy_modules.php:183 +#: ../../godmode/massive/massive_delete_modules.php:439 +#: ../../godmode/massive/massive_edit_modules.php:398 +#: ../../godmode/massive/massive_edit_plugins.php:363 +#: ../../godmode/reporting/graph_builder.graph_editor.php:336 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1559 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1651 +#: ../../godmode/reporting/reporting_builder.list_items.php:210 +#: ../../godmode/reporting/reporting_builder.list_items.php:239 +#: ../../godmode/reporting/visual_console_builder.wizard.php:452 +#: ../../godmode/servers/servers.build_table.php:69 +#: ../../include/functions_reports.php:718 +#: ../../include/functions_reports.php:722 +#: ../../include/functions_reports.php:726 +#: ../../include/functions_reports.php:730 +#: ../../include/functions_reports.php:734 +#: ../../include/functions_reports.php:738 +#: ../../include/functions_reports.php:742 +#: ../../include/functions_reports.php:746 +#: ../../include/functions_reporting_html.php:1548 +#: ../../include/functions_reporting_html.php:4309 +#: ../../mobile/operation/agent.php:304 ../../mobile/operation/agents.php:82 +#: ../../mobile/operation/agents.php:399 ../../mobile/operation/home.php:78 +#: ../../mobile/operation/modules.php:212 +#: ../../operation/agentes/estado_agente.php:716 +#: ../../operation/agentes/exportdata.php:281 +#: ../../operation/agentes/graphs.php:188 +#: ../../operation/agentes/group_view.php:155 +#: ../../operation/agentes/group_view.php:188 +#: ../../operation/search_agents.php:52 ../../operation/search_results.php:157 +#: ../../operation/tree.php:83 +#: ../../enterprise/dashboard/widgets/agent_module.php:339 +#: ../../enterprise/dashboard/widgets/groups_status.php:155 +#: ../../enterprise/dashboard/widgets/tree_view.php:42 +#: ../../enterprise/dashboard/widgets/service_map.php:114 +#: ../../enterprise/dashboard/widgets/top_n.php:378 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:109 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:159 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:359 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:110 +#: ../../enterprise/godmode/policies/policies.php:525 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:861 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:559 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:638 +#: ../../enterprise/godmode/policies/policy_modules.php:449 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:946 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:222 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:197 +#: ../../enterprise/include/ajax/clustermap.php:267 +#: ../../enterprise/include/ajax/clustermap.php:487 +#: ../../enterprise/include/functions_policies.php:3719 +#: ../../enterprise/include/functions_reporting_csv.php:2125 +#: ../../enterprise/include/functions_reporting_pdf.php:759 +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/agentsearch.php:117 +#: ../../enterprise/meta/include/functions_wizard_meta.php:407 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1819 +#: ../../enterprise/meta/monitoring/group_view.php:138 +#: ../../enterprise/meta/monitoring/group_view.php:179 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:426 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:536 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:615 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:226 +#: ../../enterprise/operation/agentes/tag_view.php:579 +#: ../../enterprise/operation/services/services.service_map.php:184 msgid "Modules" msgstr "モジュール" -#: ../../extensions/agents_alerts.php:181 -#: ../../extensions/agents_alerts.php:199 -#: ../../extensions/module_groups.php:84 -#: ../../godmode/agentes/fields_manager.php:99 -#: ../../godmode/agentes/modificar_agente.php:478 -#: ../../godmode/agentes/planned_downtime.editor.php:786 -#: ../../godmode/alerts/alert_list.builder.php:83 -#: ../../godmode/alerts/alert_list.list.php:121 -#: ../../godmode/alerts/alert_list.list.php:410 -#: ../../godmode/alerts/alert_view.php:344 -#: ../../godmode/category/category.php:111 -#: ../../godmode/events/event_responses.list.php:57 -#: ../../godmode/groups/group_list.php:378 ../../godmode/menu.php:156 -#: ../../godmode/tag/tag.php:205 ../../include/functions_treeview.php:388 -#: ../../include/functions_filemanager.php:583 -#: ../../include/functions_reporting_html.php:1961 -#: ../../enterprise/extensions/backup/main.php:103 -#: ../../enterprise/extensions/cron/main.php:251 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:261 -#: ../../enterprise/godmode/agentes/collections.php:235 -#: ../../enterprise/godmode/agentes/inventory_manager.php:237 -#: ../../enterprise/godmode/alerts/alert_events_list.php:421 -#: ../../enterprise/godmode/policies/policy_alerts.php:241 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:171 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:245 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:483 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:654 -#: ../../enterprise/godmode/reporting/cluster_list.php:177 -#: ../../enterprise/godmode/setup/setup_skins.php:120 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:323 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:359 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1196 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1408 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1500 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1583 -#: ../../enterprise/meta/include/functions_alerts_meta.php:111 -#: ../../enterprise/meta/include/functions_alerts_meta.php:128 -#: ../../enterprise/meta/include/functions_autoprovision.php:385 +#: ../../extensions/agents_alerts.php:207 +#: ../../extensions/agents_alerts.php:225 +#: ../../godmode/agentes/fields_manager.php:121 +#: ../../godmode/agentes/modificar_agente.php:493 +#: ../../godmode/agentes/planned_downtime.editor.php:1042 +#: ../../godmode/alerts/alert_commands.php:404 +#: ../../godmode/alerts/alert_list.builder.php:95 +#: ../../godmode/alerts/alert_list.list.php:114 +#: ../../godmode/alerts/alert_list.list.php:447 +#: ../../godmode/alerts/alert_view.php:347 +#: ../../godmode/category/category.php:112 +#: ../../godmode/events/event_responses.list.php:53 +#: ../../godmode/groups/group_list.php:588 ../../godmode/menu.php:201 +#: ../../godmode/tag/tag.php:230 ../../include/functions_cron.php:460 +#: ../../include/functions_treeview.php:403 +#: ../../include/functions_filemanager.php:622 +#: ../../include/functions_reporting_html.php:2406 +#: ../../enterprise/extensions/backup/main.php:130 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:321 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:374 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:273 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:83 +#: ../../enterprise/godmode/agentes/collections.php:326 +#: ../../enterprise/godmode/agentes/inventory_manager.php:221 +#: ../../enterprise/godmode/alerts/alert_events_list.php:500 +#: ../../enterprise/godmode/policies/policy_alerts.php:287 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:256 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:555 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:821 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1038 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1303 +#: ../../enterprise/godmode/reporting/cluster_list.php:194 +#: ../../enterprise/godmode/setup/setup_skins.php:122 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:343 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2021 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2166 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3128 +#: ../../enterprise/include/functions_reporting_csv.php:2210 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:416 +#: ../../enterprise/meta/advanced/collections.php:324 +#: ../../enterprise/meta/include/functions_alerts_meta.php:125 +#: ../../enterprise/meta/include/functions_alerts_meta.php:144 +#: ../../enterprise/meta/include/functions_autoprovision.php:451 #: ../../enterprise/meta/monitoring/wizard/wizard.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:122 -#: ../../enterprise/operation/agentes/transactional_map.php:155 -#: ../../enterprise/operation/services/services.list.php:348 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:150 +#: ../../enterprise/operation/agentes/transactional_map.php:187 +#: ../../enterprise/operation/services/services.list.php:419 msgid "Actions" msgstr "アクション" -#: ../../extensions/agents_alerts.php:191 -#: ../../godmode/snmpconsole/snmp_alert.php:82 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:455 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 +#: ../../extensions/agents_alerts.php:217 +#: ../../godmode/snmpconsole/snmp_alert.php:84 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:473 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:553 msgid "Create alert" msgstr "アラート作成" -#: ../../extensions/agents_alerts.php:210 -#: ../../godmode/alerts/alert_list.builder.php:94 -#: ../../godmode/alerts/configure_alert_template.php:567 +#: ../../extensions/agents_alerts.php:239 +#: ../../godmode/alerts/alert_list.builder.php:109 +#: ../../godmode/alerts/configure_alert_template.php:656 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:835 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1317 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:417 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 msgid "Default action" msgstr "通常のアクション" -#: ../../extensions/agents_alerts.php:213 -#: ../../godmode/alerts/alert_list.builder.php:97 -#: ../../godmode/alerts/alert_list.list.php:616 -#: ../../godmode/massive/massive_add_action_alerts.php:183 -#: ../../include/ajax/alert_list.ajax.php:176 -#: ../../enterprise/godmode/alerts/alert_events_list.php:599 -#: ../../enterprise/godmode/policies/policy_alerts.php:465 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:278 +#: ../../extensions/agents_alerts.php:249 +#: ../../godmode/alerts/alert_list.builder.php:119 +#: ../../godmode/alerts/alert_list.list.php:710 +#: ../../godmode/massive/massive_add_action_alerts.php:214 +#: ../../include/ajax/alert_list.ajax.php:240 +#: ../../enterprise/godmode/alerts/alert_events_list.php:690 +#: ../../enterprise/godmode/policies/policy_alerts.php:531 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:322 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:845 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1327 msgid "Number of alerts match from" msgstr "アクションを起こすアラート数: 開始" -#: ../../extensions/agents_alerts.php:215 -#: ../../godmode/alerts/alert_list.builder.php:99 -#: ../../godmode/alerts/alert_list.list.php:533 -#: ../../godmode/alerts/alert_list.list.php:620 -#: ../../godmode/alerts/alert_templates.php:96 -#: ../../godmode/massive/massive_add_action_alerts.php:185 -#: ../../include/ajax/alert_list.ajax.php:180 -#: ../../include/functions_reporting.php:10658 -#: ../../operation/reporting/reporting_viewer.php:198 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 -#: ../../enterprise/godmode/alerts/alert_events_list.php:560 -#: ../../enterprise/godmode/alerts/alert_events_list.php:601 -#: ../../enterprise/godmode/policies/policy_alerts.php:337 -#: ../../enterprise/godmode/policies/policy_alerts.php:469 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:223 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:280 -#: ../../enterprise/include/functions_reporting.php:5005 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:150 +#: ../../extensions/agents_alerts.php:251 +#: ../../godmode/alerts/alert_list.builder.php:121 +#: ../../godmode/alerts/alert_list.list.php:600 +#: ../../godmode/alerts/alert_list.list.php:721 +#: ../../godmode/alerts/alert_templates.php:98 +#: ../../godmode/massive/massive_add_action_alerts.php:216 +#: ../../include/ajax/alert_list.ajax.php:251 +#: ../../include/functions_reporting_html.php:126 +#: ../../include/functions_reporting.php:11645 +#: ../../operation/reporting/reporting_viewer.php:216 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/godmode/alerts/alert_events_list.php:692 +#: ../../enterprise/godmode/policies/policy_alerts.php:370 +#: ../../enterprise/godmode/policies/policy_alerts.php:535 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:324 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:847 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1329 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:920 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:950 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2197 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3036 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3162 +#: ../../enterprise/include/functions_reporting_pdf.php:1522 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 msgid "to" msgstr "終了" -#: ../../extensions/agents_alerts.php:224 -#: ../../godmode/alerts/alert_list.builder.php:109 -#: ../../godmode/alerts/configure_alert_action.php:101 -#: ../../enterprise/godmode/alerts/alert_events.php:517 +#: ../../extensions/agents_alerts.php:262 +#: ../../godmode/alerts/alert_list.builder.php:128 +#: ../../godmode/alerts/configure_alert_action.php:116 +#: ../../enterprise/godmode/alerts/alert_events.php:640 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:858 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1340 msgid "Create Action" msgstr "アクションの作成" -#: ../../extensions/agents_alerts.php:228 -#: ../../extensions/agents_alerts.php:496 -#: ../../godmode/alerts/alert_list.builder.php:113 -#: ../../godmode/alerts/alert_list.list.php:407 -#: ../../godmode/alerts/alert_view.php:75 -#: ../../include/functions_treeview.php:387 -#: ../../include/functions_treeview.php:428 -#: ../../include/functions_reporting_html.php:1960 -#: ../../include/functions_reporting_html.php:1963 -#: ../../mobile/operation/alerts.php:270 -#: ../../operation/agentes/alerts_status.php:462 -#: ../../operation/agentes/alerts_status.php:503 -#: ../../operation/agentes/alerts_status.php:537 -#: ../../operation/agentes/alerts_status.php:571 -#: ../../operation/search_alerts.php:45 -#: ../../operation/servers/recon_view.php:104 -#: ../../enterprise/extensions/cron/main.php:315 -#: ../../enterprise/godmode/policies/policy_alerts.php:239 -#: ../../enterprise/godmode/policies/policy_alerts.php:438 -#: ../../enterprise/operation/agentes/policy_view.php:195 +#: ../../extensions/agents_alerts.php:266 +#: ../../extensions/agents_alerts.php:586 +#: ../../godmode/alerts/alert_list.builder.php:132 +#: ../../godmode/alerts/alert_list.list.php:446 +#: ../../godmode/alerts/alert_view.php:72 ../../include/functions_cron.php:554 +#: ../../include/functions_treeview.php:402 +#: ../../include/functions_treeview.php:443 +#: ../../include/functions_reporting_html.php:2405 +#: ../../include/functions_reporting_html.php:2408 +#: ../../mobile/operation/alerts.php:323 +#: ../../operation/agentes/alerts_status.php:514 +#: ../../operation/agentes/alerts_status.php:549 +#: ../../operation/agentes/alerts_status.php:584 +#: ../../operation/agentes/alerts_status.php:616 +#: ../../operation/search_alerts.php:35 +#: ../../operation/servers/recon_view.php:106 +#: ../../enterprise/godmode/policies/policy_alerts.php:285 +#: ../../enterprise/godmode/policies/policy_alerts.php:492 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:749 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:862 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1231 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1344 +#: ../../enterprise/godmode/reporting/visual_console_template.php:87 +#: ../../enterprise/include/functions_reporting_csv.php:2210 +#: ../../enterprise/include/functions_tasklist.php:275 +#: ../../enterprise/operation/agentes/policy_view.php:208 msgid "Template" msgstr "テンプレート" -#: ../../extensions/agents_alerts.php:240 ../../extensions/insert_data.php:179 -#: ../../general/header.php:215 ../../godmode/alerts/alert_list.builder.php:77 -#: ../../godmode/alerts/alert_list.builder.php:125 -#: ../../godmode/alerts/configure_alert_template.php:595 -#: ../../godmode/gis_maps/configure_gis_map.php:588 -#: ../../godmode/massive/massive_add_alerts.php:176 -#: ../../godmode/massive/massive_copy_modules.php:95 -#: ../../godmode/massive/massive_delete_alerts.php:208 -#: ../../godmode/massive/massive_delete_modules.php:428 -#: ../../godmode/massive/massive_delete_modules.php:502 -#: ../../godmode/massive/massive_edit_modules.php:266 -#: ../../godmode/massive/massive_edit_modules.php:326 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:85 -#: ../../enterprise/godmode/alerts/alert_events.php:513 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:103 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:207 -#: ../../enterprise/godmode/policies/policy_alerts.php:509 -#: ../../enterprise/godmode/policies/policy_alerts.php:513 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:328 -#: ../../enterprise/meta/advanced/synchronizing.user.php:549 -#: ../../enterprise/meta/general/main_header.php:394 +#: ../../extensions/agents_alerts.php:282 ../../extensions/insert_data.php:183 +#: ../../general/header.php:263 ../../godmode/alerts/alert_list.builder.php:81 +#: ../../godmode/alerts/alert_list.builder.php:148 +#: ../../godmode/massive/massive_add_alerts.php:255 +#: ../../godmode/massive/massive_copy_modules.php:122 +#: ../../godmode/massive/massive_delete_alerts.php:240 +#: ../../godmode/massive/massive_delete_modules.php:310 +#: ../../godmode/massive/massive_delete_modules.php:445 +#: ../../godmode/massive/massive_edit_modules.php:291 +#: ../../godmode/massive/massive_edit_modules.php:404 +#: ../../godmode/setup/setup_integria.php:295 +#: ../../godmode/setup/setup_integria.php:313 +#: ../../godmode/setup/setup_integria.php:342 +#: ../../godmode/setup/setup_integria.php:360 +#: ../../godmode/setup/setup_integria.php:418 +#: ../../godmode/setup/setup_integria.php:436 +#: ../../godmode/setup/setup_integria.php:465 +#: ../../godmode/setup/setup_integria.php:483 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:146 +#: ../../operation/incidents/configure_integriaims_incident.php:216 +#: ../../operation/incidents/configure_integriaims_incident.php:232 +#: ../../operation/incidents/configure_integriaims_incident.php:278 +#: ../../enterprise/godmode/alerts/alert_events.php:631 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:198 +#: ../../enterprise/godmode/policies/policy_alerts.php:582 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:387 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:735 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:765 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:807 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:878 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1217 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1247 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1289 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1360 +#: ../../enterprise/godmode/services/services.service.php:521 +#: ../../enterprise/godmode/services/services.service.php:532 +#: ../../enterprise/godmode/services/services.service.php:551 +#: ../../enterprise/meta/advanced/synchronizing.user.php:608 +#: ../../enterprise/meta/general/main_header.php:493 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:224 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:223 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:313 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:482 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:555 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:239 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:336 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:574 #: ../../enterprise/meta/monitoring/wizard/wizard.php:107 msgid "Select" msgstr "選択" -#: ../../extensions/agents_alerts.php:246 -#: ../../godmode/alerts/alert_list.builder.php:131 -#: ../../godmode/alerts/configure_alert_template.php:502 +#: ../../extensions/agents_alerts.php:295 +#: ../../godmode/alerts/alert_list.builder.php:161 +#: ../../godmode/alerts/configure_alert_template.php:561 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:778 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:891 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1260 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1373 msgid "Create Template" msgstr "テンプレートの作成" -#: ../../extensions/agents_alerts.php:249 -#: ../../godmode/alerts/alert_list.builder.php:134 -#: ../../godmode/alerts/alert_list.list.php:539 -#: ../../godmode/alerts/alert_list.list.php:626 -#: ../../godmode/alerts/alert_view.php:391 -#: ../../godmode/alerts/configure_alert_action.php:142 -#: ../../include/ajax/alert_list.ajax.php:186 -#: ../../include/functions_reporting_html.php:2116 -#: ../../include/functions_reporting_html.php:3221 -#: ../../enterprise/godmode/alerts/alert_events_list.php:563 -#: ../../enterprise/godmode/alerts/alert_events_list.php:604 -#: ../../enterprise/include/functions_reporting_pdf.php:2445 +#: ../../extensions/agents_alerts.php:299 +#: ../../godmode/alerts/alert_list.builder.php:165 +#: ../../godmode/alerts/alert_list.list.php:607 +#: ../../godmode/alerts/alert_list.list.php:734 +#: ../../godmode/alerts/alert_view.php:389 +#: ../../godmode/alerts/configure_alert_action.php:179 +#: ../../include/ajax/alert_list.ajax.php:264 +#: ../../include/functions_reporting_html.php:2662 +#: ../../include/functions_reporting_html.php:4140 +#: ../../enterprise/godmode/alerts/alert_events_list.php:650 +#: ../../enterprise/godmode/alerts/alert_events_list.php:695 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:895 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1377 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3042 msgid "Threshold" msgstr "しきい値" -#: ../../extensions/agents_alerts.php:257 -#: ../../godmode/alerts/alert_list.builder.php:144 +#: ../../extensions/agents_alerts.php:307 +#: ../../godmode/alerts/alert_list.builder.php:196 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:911 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1393 msgid "Add alert" msgstr "アラートの追加" -#: ../../extensions/agents_alerts.php:262 -#: ../../extensions/agents_alerts.php:496 ../../extensions/insert_data.php:158 -#: ../../extensions/module_groups.php:41 -#: ../../godmode/agentes/module_manager_editor_common.php:689 -#: ../../godmode/agentes/module_manager_editor_common.php:717 -#: ../../godmode/agentes/module_manager_editor_prediction.php:110 -#: ../../godmode/agentes/planned_downtime.list.php:171 -#: ../../godmode/alerts/alert_list.builder.php:59 -#: ../../godmode/alerts/alert_list.list.php:379 -#: ../../godmode/alerts/alert_list.list.php:591 -#: ../../godmode/alerts/alert_view.php:66 -#: ../../godmode/gis_maps/configure_gis_map.php:420 -#: ../../godmode/massive/massive_copy_modules.php:86 -#: ../../godmode/massive/massive_copy_modules.php:205 -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_standby_alerts.php:154 -#: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../godmode/reporting/create_container.php:322 -#: ../../godmode/reporting/create_container.php:492 -#: ../../godmode/reporting/create_container.php:561 -#: ../../godmode/reporting/graph_builder.graph_editor.php:204 -#: ../../godmode/reporting/reporting_builder.item_editor.php:962 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1711 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1910 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1917 -#: ../../godmode/reporting/reporting_builder.list_items.php:294 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.wizard.php:303 -#: ../../godmode/reporting/visual_console_builder.wizard.php:577 -#: ../../godmode/reporting/visual_console_builder.wizard.php:600 -#: ../../godmode/servers/plugin.php:66 -#: ../../include/ajax/alert_list.ajax.php:151 -#: ../../include/functions_reporting.php:3900 -#: ../../include/functions_reporting.php:4044 -#: ../../include/functions_reporting.php:4186 -#: ../../include/functions_pandora_networkmap.php:1630 -#: ../../include/functions_pandora_networkmap.php:1800 -#: ../../include/functions_visual_map_editor.php:335 -#: ../../include/functions_visual_map_editor.php:367 -#: ../../include/functions_graph.php:6212 -#: ../../include/functions_reporting_html.php:399 -#: ../../include/functions_reporting_html.php:733 -#: ../../include/functions_reporting_html.php:813 -#: ../../include/functions_reporting_html.php:822 -#: ../../include/functions_reporting_html.php:1488 -#: ../../include/functions_reporting_html.php:1892 -#: ../../include/functions_reporting_html.php:1899 -#: ../../include/functions_reporting_html.php:1958 -#: ../../include/functions_reporting_html.php:2232 -#: ../../include/functions_reporting_html.php:2317 -#: ../../include/functions_reporting_html.php:2360 -#: ../../include/functions_reporting_html.php:2656 -#: ../../include/functions_reporting_html.php:2703 -#: ../../include/functions_reporting_html.php:2741 -#: ../../include/functions_reporting_html.php:2993 -#: ../../include/functions_reporting_html.php:3147 -#: ../../include/functions_reporting_html.php:3358 -#: ../../mobile/operation/agents.php:69 ../../mobile/operation/agents.php:333 -#: ../../mobile/operation/alerts.php:266 ../../mobile/operation/events.php:510 -#: ../../mobile/operation/home.php:92 ../../mobile/operation/modules.php:496 -#: ../../operation/agentes/alerts_status.php:460 -#: ../../operation/agentes/alerts_status.php:535 -#: ../../operation/agentes/estado_agente.php:535 -#: ../../operation/agentes/estado_monitores.php:95 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:96 -#: ../../operation/agentes/status_monitor.php:956 -#: ../../operation/agentes/ver_agente.php:893 -#: ../../operation/events/events.build_table.php:36 -#: ../../operation/events/sound_events.php:88 -#: ../../operation/gis_maps/ajax.php:216 ../../operation/gis_maps/ajax.php:247 -#: ../../operation/incidents/incident_detail.php:349 -#: ../../operation/search_agents.php:44 ../../operation/search_agents.php:50 -#: ../../operation/search_alerts.php:39 ../../operation/search_modules.php:42 -#: ../../enterprise/dashboard/widgets/agent_module.php:87 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:41 -#: ../../enterprise/dashboard/widgets/module_icon.php:52 -#: ../../enterprise/dashboard/widgets/module_status.php:41 -#: ../../enterprise/dashboard/widgets/module_table_value.php:49 -#: ../../enterprise/dashboard/widgets/module_value.php:52 +#: ../../extensions/agents_alerts.php:312 +#: ../../extensions/agents_alerts.php:586 ../../extensions/insert_data.php:155 +#: ../../godmode/agentes/module_manager_editor_common.php:1169 +#: ../../godmode/agentes/module_manager_editor_common.php:1222 +#: ../../godmode/agentes/module_manager_editor_prediction.php:112 +#: ../../godmode/agentes/planned_downtime.list.php:177 +#: ../../godmode/agentes/status_monitor_custom_fields.php:77 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/alerts/alert_list.builder.php:55 +#: ../../godmode/alerts/alert_list.list.php:440 +#: ../../godmode/alerts/alert_list.list.php:684 +#: ../../godmode/alerts/alert_view.php:64 +#: ../../godmode/gis_maps/configure_gis_map.php:517 +#: ../../godmode/massive/massive_copy_modules.php:115 +#: ../../godmode/massive/massive_copy_modules.php:279 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/reporting/create_container.php:348 +#: ../../godmode/reporting/create_container.php:515 +#: ../../godmode/reporting/create_container.php:586 +#: ../../godmode/reporting/graph_builder.graph_editor.php:198 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1309 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2860 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3282 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3294 +#: ../../godmode/reporting/reporting_builder.list_items.php:377 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.wizard.php:470 +#: ../../godmode/reporting/visual_console_builder.wizard.php:758 +#: ../../godmode/reporting/visual_console_builder.wizard.php:781 +#: ../../godmode/servers/plugin.php:70 +#: ../../include/ajax/alert_list.ajax.php:183 +#: ../../include/class/NetworkMap.class.php:2857 +#: ../../include/class/NetworkMap.class.php:2910 +#: ../../include/class/NetworkMap.class.php:3159 +#: ../../include/functions_gis.php:229 ../../include/functions_graph.php:5099 +#: ../../include/functions_visual_map_editor.php:388 +#: ../../include/functions_visual_map_editor.php:421 +#: ../../include/functions_reporting_html.php:492 +#: ../../include/functions_reporting_html.php:854 +#: ../../include/functions_reporting_html.php:965 +#: ../../include/functions_reporting_html.php:973 +#: ../../include/functions_reporting_html.php:1782 +#: ../../include/functions_reporting_html.php:2311 +#: ../../include/functions_reporting_html.php:2403 +#: ../../include/functions_reporting_html.php:2706 +#: ../../include/functions_reporting_html.php:2764 +#: ../../include/functions_reporting_html.php:2772 +#: ../../include/functions_reporting_html.php:2780 +#: ../../include/functions_reporting_html.php:2792 +#: ../../include/functions_reporting_html.php:2912 +#: ../../include/functions_reporting_html.php:3031 +#: ../../include/functions_reporting_html.php:3104 +#: ../../include/functions_reporting_html.php:3615 +#: ../../include/functions_reporting_html.php:3671 +#: ../../include/functions_reporting_html.php:3709 +#: ../../include/functions_reporting_html.php:4018 +#: ../../include/functions_reporting_html.php:4058 +#: ../../include/functions_reporting_html.php:4308 +#: ../../include/functions_reporting_html.php:5069 +#: ../../include/functions_reporting.php:4953 +#: ../../mobile/operation/agents.php:75 ../../mobile/operation/agents.php:388 +#: ../../mobile/operation/alerts.php:316 ../../mobile/operation/events.php:553 +#: ../../mobile/operation/home.php:92 ../../mobile/operation/modules.php:570 +#: ../../operation/agentes/alerts_status.php:512 +#: ../../operation/agentes/alerts_status.php:582 +#: ../../operation/agentes/estado_agente.php:695 +#: ../../operation/agentes/estado_monitores.php:116 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1112 +#: ../../operation/agentes/ver_agente.php:991 +#: ../../operation/events/events.build_table.php:80 +#: ../../operation/events/events.php:1629 +#: ../../operation/events/sound_events.php:77 +#: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 +#: ../../operation/incidents/incident_detail.php:376 +#: ../../operation/search_agents.php:41 ../../operation/search_agents.php:46 +#: ../../operation/search_alerts.php:33 ../../operation/search_modules.php:32 +#: ../../enterprise/dashboard/widgets/agent_module.php:119 +#: ../../enterprise/dashboard/widgets/wux_transaction.php:59 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:48 +#: ../../enterprise/dashboard/widgets/module_icon.php:61 +#: ../../enterprise/dashboard/widgets/module_status.php:48 +#: ../../enterprise/dashboard/widgets/module_table_value.php:54 +#: ../../enterprise/dashboard/widgets/module_value.php:61 #: ../../enterprise/dashboard/widgets/single_graph.php:43 -#: ../../enterprise/dashboard/widgets/sla_percent.php:40 -#: ../../enterprise/dashboard/widgets/top_n.php:126 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:57 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:57 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:65 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:172 -#: ../../enterprise/extensions/ipam/ipam_network.php:537 -#: ../../enterprise/godmode/agentes/collections.agents.php:102 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:77 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:96 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:213 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:84 -#: ../../enterprise/godmode/policies/policy_linking.php:120 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2132 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2282 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2289 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:231 -#: ../../enterprise/godmode/services/services.elements.php:346 -#: ../../enterprise/godmode/services/services.elements.php:363 -#: ../../enterprise/include/ajax/clustermap.php:38 -#: ../../enterprise/include/functions_alert_event.php:923 -#: ../../enterprise/include/functions_events.php:111 -#: ../../enterprise/include/functions_inventory.php:235 -#: ../../enterprise/include/functions_inventory.php:651 -#: ../../enterprise/include/functions_inventory.php:707 -#: ../../enterprise/include/functions_log.php:369 -#: ../../enterprise/include/functions_reporting.php:1649 -#: ../../enterprise/include/functions_reporting.php:1862 -#: ../../enterprise/include/functions_reporting.php:1985 -#: ../../enterprise/include/functions_reporting.php:1999 -#: ../../enterprise/include/functions_reporting.php:2457 -#: ../../enterprise/include/functions_reporting.php:3234 -#: ../../enterprise/include/functions_reporting_csv.php:334 -#: ../../enterprise/include/functions_reporting_csv.php:358 -#: ../../enterprise/include/functions_reporting_csv.php:417 -#: ../../enterprise/include/functions_reporting_csv.php:443 -#: ../../enterprise/include/functions_reporting_csv.php:513 -#: ../../enterprise/include/functions_reporting_csv.php:531 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:953 -#: ../../enterprise/include/functions_reporting_csv.php:990 -#: ../../enterprise/include/functions_reporting_csv.php:1039 -#: ../../enterprise/include/functions_reporting_csv.php:1086 -#: ../../enterprise/include/functions_reporting_csv.php:1158 -#: ../../enterprise/include/functions_reporting_csv.php:1274 -#: ../../enterprise/include/functions_reporting_csv.php:1416 -#: ../../enterprise/include/functions_reporting_csv.php:1486 -#: ../../enterprise/include/functions_reporting_pdf.php:357 -#: ../../enterprise/include/functions_reporting_pdf.php:415 -#: ../../enterprise/include/functions_reporting_pdf.php:820 -#: ../../enterprise/include/functions_reporting_pdf.php:881 -#: ../../enterprise/include/functions_reporting_pdf.php:908 -#: ../../enterprise/include/functions_reporting_pdf.php:941 -#: ../../enterprise/include/functions_reporting_pdf.php:1007 -#: ../../enterprise/include/functions_reporting_pdf.php:1345 -#: ../../enterprise/include/functions_reporting_pdf.php:1690 -#: ../../enterprise/include/functions_reporting_pdf.php:1923 -#: ../../enterprise/include/functions_reporting_pdf.php:1941 -#: ../../enterprise/include/functions_services.php:1531 -#: ../../enterprise/meta/agentsearch.php:102 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3248 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:245 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:333 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:404 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:593 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:119 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:270 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:359 -#: ../../enterprise/operation/agentes/tag_view.php:462 -#: ../../enterprise/operation/inventory/inventory.php:207 -#: ../../enterprise/operation/log/log_viewer.php:211 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:186 +#: ../../enterprise/dashboard/widgets/sla_percent.php:47 +#: ../../enterprise/dashboard/widgets/top_n.php:151 +#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:66 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:212 +#: ../../enterprise/extensions/ipam/ipam_network.php:325 +#: ../../enterprise/godmode/agentes/collections.agents.php:106 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:82 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:396 +#: ../../enterprise/godmode/policies/policy_linking.php:122 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:693 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1177 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1877 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3146 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3355 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3373 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:287 +#: ../../enterprise/godmode/services/services.elements.php:616 +#: ../../enterprise/godmode/services/services.elements.php:641 +#: ../../enterprise/godmode/services/services.elements.php:656 +#: ../../enterprise/godmode/services/services.elements.php:663 +#: ../../enterprise/include/ajax/clustermap.php:37 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:818 +#: ../../enterprise/include/functions_alert_event.php:1131 +#: ../../enterprise/include/functions_services.php:2499 +#: ../../enterprise/include/functions_events.php:147 +#: ../../enterprise/include/functions_inventory.php:253 +#: ../../enterprise/include/functions_inventory.php:710 +#: ../../enterprise/include/functions_inventory.php:766 +#: ../../enterprise/include/functions_log.php:381 +#: ../../enterprise/include/functions_reporting.php:1675 +#: ../../enterprise/include/functions_reporting.php:2010 +#: ../../enterprise/include/functions_reporting.php:2041 +#: ../../enterprise/include/functions_reporting.php:2059 +#: ../../enterprise/include/functions_reporting.php:2595 +#: ../../enterprise/include/functions_reporting.php:3587 +#: ../../enterprise/include/functions_reporting_csv.php:462 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:977 +#: ../../enterprise/include/functions_reporting_csv.php:1008 +#: ../../enterprise/include/functions_reporting_csv.php:1063 +#: ../../enterprise/include/functions_reporting_csv.php:1118 +#: ../../enterprise/include/functions_reporting_csv.php:1167 +#: ../../enterprise/include/functions_reporting_csv.php:1222 +#: ../../enterprise/include/functions_reporting_csv.php:1251 +#: ../../enterprise/include/functions_reporting_csv.php:1295 +#: ../../enterprise/include/functions_reporting_csv.php:1341 +#: ../../enterprise/include/functions_reporting_csv.php:1414 +#: ../../enterprise/include/functions_reporting_csv.php:1533 +#: ../../enterprise/include/functions_reporting_csv.php:1728 +#: ../../enterprise/include/functions_reporting_csv.php:1801 +#: ../../enterprise/include/functions_reporting_csv.php:2058 +#: ../../enterprise/include/functions_reporting_csv.php:2094 +#: ../../enterprise/include/functions_reporting_csv.php:2125 +#: ../../enterprise/include/functions_reporting_csv.php:2210 +#: ../../enterprise/include/functions_reporting_csv.php:2239 +#: ../../enterprise/include/functions_reporting_pdf.php:465 +#: ../../enterprise/include/functions_reporting_pdf.php:473 +#: ../../enterprise/include/functions_reporting_pdf.php:481 +#: ../../enterprise/include/functions_reporting_pdf.php:497 +#: ../../enterprise/include/functions_reporting_pdf.php:654 +#: ../../enterprise/meta/agentsearch.php:113 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3474 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:95 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:689 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:356 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:423 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:533 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:612 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:147 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:309 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:412 +#: ../../enterprise/operation/agentes/tag_view.php:572 +#: ../../enterprise/operation/inventory/inventory.php:224 +#: ../../enterprise/operation/log/log_viewer.php:436 msgid "Agent" msgstr "エージェント" -#: ../../extensions/agents_alerts.php:262 +#: ../../extensions/agents_alerts.php:312 msgid "module" msgstr "モジュール" -#: ../../extensions/agents_alerts.php:303 +#: ../../extensions/agents_alerts.php:353 msgid "There are no agents with alerts" msgstr "アラートがついたエージェントがありません" -#: ../../extensions/agents_alerts.php:325 -#: ../../godmode/alerts/alert_templates.php:133 -#: ../../godmode/alerts/alert_templates.php:176 -#: ../../godmode/alerts/alert_templates.php:195 +#: ../../extensions/agents_alerts.php:390 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:187 #: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_delete_action_alerts.php:167 +#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/massive/massive_add_action_alerts.php:177 +#: ../../godmode/massive/massive_delete_action_alerts.php:193 msgid "Alert templates" msgstr "アラートテンプレート" -#: ../../extensions/agents_alerts.php:332 +#: ../../extensions/agents_alerts.php:395 msgid "Previous templates" msgstr "前のテンプレート" -#: ../../extensions/agents_alerts.php:370 +#: ../../extensions/agents_alerts.php:439 msgid "More templates" msgstr "次のテンプレート" -#: ../../extensions/agents_alerts.php:402 -#: ../../godmode/agentes/configurar_agente.php:335 -#: ../../godmode/agentes/modificar_agente.php:578 -#: ../../godmode/alerts/alert_actions.php:66 -#: ../../godmode/alerts/alert_actions.php:92 -#: ../../godmode/alerts/alert_actions.php:110 -#: ../../godmode/alerts/alert_actions.php:127 -#: ../../godmode/alerts/alert_actions.php:207 -#: ../../godmode/alerts/alert_actions.php:218 -#: ../../godmode/alerts/alert_actions.php:287 -#: ../../godmode/alerts/alert_actions.php:306 -#: ../../godmode/alerts/alert_actions.php:319 -#: ../../godmode/alerts/alert_commands.php:267 -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/alerts/alert_special_days.php:44 -#: ../../godmode/alerts/alert_templates.php:133 -#: ../../godmode/alerts/alert_templates.php:176 -#: ../../godmode/alerts/alert_templates.php:195 +#: ../../extensions/agents_alerts.php:472 +#: ../../godmode/agentes/configurar_agente.php:397 +#: ../../godmode/agentes/modificar_agente.php:614 +#: ../../godmode/alerts/alert_actions.php:61 +#: ../../godmode/alerts/alert_commands.php:272 +#: ../../godmode/alerts/alert_list.php:506 +#: ../../godmode/alerts/alert_list.php:508 +#: ../../godmode/alerts/alert_special_days.php:45 +#: ../../godmode/alerts/alert_templates.php:136 +#: ../../godmode/alerts/alert_templates.php:187 #: ../../godmode/alerts/alert_templates.php:211 -#: ../../godmode/alerts/configure_alert_action.php:56 -#: ../../godmode/alerts/configure_alert_action.php:65 -#: ../../godmode/alerts/configure_alert_command.php:41 +#: ../../godmode/alerts/alert_templates.php:232 +#: ../../godmode/alerts/configure_alert_action.php:60 +#: ../../godmode/alerts/configure_alert_action.php:73 +#: ../../godmode/alerts/configure_alert_command.php:43 #: ../../godmode/alerts/configure_alert_special_days.php:55 -#: ../../godmode/alerts/configure_alert_template.php:65 -#: ../../godmode/alerts/configure_alert_template.php:85 -#: ../../godmode/alerts/configure_alert_template.php:103 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:376 -#: ../../godmode/massive/massive_copy_modules.php:158 -#: ../../godmode/menu.php:140 ../../include/functions_treeview.php:380 -#: ../../include/functions_graph.php:850 -#: ../../include/functions_graph.php:4626 -#: ../../include/functions_graph.php:5511 -#: ../../include/functions_reporting_html.php:1611 -#: ../../include/functions_reporting_html.php:3368 -#: ../../include/functions_reports.php:610 -#: ../../include/functions_reports.php:612 -#: ../../include/functions_reports.php:615 -#: ../../mobile/include/functions_web.php:25 -#: ../../mobile/operation/agent.php:283 ../../mobile/operation/agents.php:83 -#: ../../mobile/operation/agents.php:347 ../../mobile/operation/alerts.php:154 -#: ../../mobile/operation/home.php:58 -#: ../../operation/agentes/estado_agente.php:576 -#: ../../operation/agentes/ver_agente.php:1048 -#: ../../operation/search_agents.php:65 ../../operation/search_results.php:94 -#: ../../enterprise/godmode/alerts/alert_events.php:71 -#: ../../enterprise/godmode/alerts/alert_events_list.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:144 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:91 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:69 -#: ../../enterprise/godmode/policies/policies.php:397 -#: ../../enterprise/godmode/policies/policy_alerts.php:32 -#: ../../enterprise/godmode/services/services.service.php:368 -#: ../../enterprise/include/functions_policies.php:3439 -#: ../../enterprise/include/functions_reporting_pdf.php:783 -#: ../../enterprise/meta/agentsearch.php:108 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1374 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1584 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:599 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:85 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:103 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:73 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:226 -#: ../../enterprise/operation/agentes/tag_view.php:471 +#: ../../godmode/alerts/configure_alert_template.php:69 +#: ../../godmode/alerts/configure_alert_template.php:93 +#: ../../godmode/alerts/configure_alert_template.php:126 +#: ../../godmode/groups/configure_group.php:184 +#: ../../godmode/groups/group_list.php:582 +#: ../../godmode/massive/massive_copy_modules.php:200 +#: ../../godmode/menu.php:187 ../../include/functions_reports.php:812 +#: ../../include/functions_reports.php:816 +#: ../../include/functions_reports.php:821 +#: ../../include/functions_treeview.php:395 +#: ../../include/functions_reporting_html.php:1918 +#: ../../include/functions_reporting_html.php:4318 +#: ../../mobile/include/functions_web.php:24 +#: ../../mobile/operation/agent.php:328 ../../mobile/operation/agents.php:84 +#: ../../mobile/operation/agents.php:397 ../../mobile/operation/alerts.php:176 +#: ../../mobile/operation/home.php:65 +#: ../../operation/agentes/estado_agente.php:722 +#: ../../operation/agentes/ver_agente.php:1173 +#: ../../operation/search_agents.php:54 ../../operation/search_results.php:105 +#: ../../enterprise/godmode/alerts/alert_events.php:84 +#: ../../enterprise/godmode/alerts/alert_events_list.php:71 +#: ../../enterprise/godmode/alerts/alert_events_list.php:121 +#: ../../enterprise/godmode/alerts/alert_events_list.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:156 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 +#: ../../enterprise/godmode/policies/policies.php:535 +#: ../../enterprise/godmode/policies/policy_alerts.php:35 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:171 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:176 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:180 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:251 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:256 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:260 +#: ../../enterprise/godmode/services/services.service.php:494 +#: ../../enterprise/include/functions_policies.php:3760 +#: ../../enterprise/meta/agentsearch.php:119 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1535 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1751 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:618 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:231 +#: ../../enterprise/operation/agentes/tag_view.php:581 msgid "Alerts" msgstr "アラート" -#: ../../extensions/agents_alerts.php:431 -#: ../../extensions/agents_modules.php:173 -#: ../../extensions/insert_data.php:173 ../../extensions/module_groups.php:43 -#: ../../godmode/agentes/agent_manager.php:325 -#: ../../godmode/agentes/agent_manager.php:341 -#: ../../godmode/agentes/module_manager_editor_common.php:699 -#: ../../godmode/agentes/module_manager_editor_common.php:718 -#: ../../godmode/agentes/module_manager_editor_prediction.php:135 -#: ../../godmode/agentes/planned_downtime.editor.php:865 -#: ../../godmode/agentes/planned_downtime.list.php:175 -#: ../../godmode/alerts/alert_list.builder.php:71 -#: ../../godmode/alerts/alert_list.list.php:393 -#: ../../godmode/alerts/alert_list.list.php:600 -#: ../../godmode/alerts/alert_view.php:71 -#: ../../godmode/massive/massive_edit_agents.php:351 -#: ../../godmode/massive/massive_enable_disable_alerts.php:154 -#: ../../godmode/massive/massive_enable_disable_alerts.php:171 -#: ../../godmode/massive/massive_standby_alerts.php:154 -#: ../../godmode/massive/massive_standby_alerts.php:171 -#: ../../godmode/reporting/create_container.php:345 -#: ../../godmode/reporting/create_container.php:498 -#: ../../godmode/reporting/create_container.php:562 -#: ../../godmode/reporting/graph_builder.graph_editor.php:205 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1016 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1911 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1918 -#: ../../godmode/reporting/reporting_builder.list_items.php:299 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.wizard.php:302 -#: ../../godmode/reporting/visual_console_builder.wizard.php:609 -#: ../../godmode/servers/plugin.php:67 -#: ../../include/ajax/alert_list.ajax.php:160 -#: ../../include/functions_reporting.php:3903 -#: ../../include/functions_reporting.php:4047 -#: ../../include/functions_reporting.php:4189 -#: ../../include/functions_treeview.php:66 -#: ../../include/functions_visual_map_editor.php:402 -#: ../../include/functions_graph.php:6328 -#: ../../include/functions_reporting_html.php:400 -#: ../../include/functions_reporting_html.php:734 -#: ../../include/functions_reporting_html.php:1489 -#: ../../include/functions_reporting_html.php:1959 -#: ../../include/functions_reporting_html.php:2233 -#: ../../include/functions_reporting_html.php:2324 -#: ../../include/functions_reporting_html.php:2367 -#: ../../include/functions_reporting_html.php:2657 -#: ../../include/functions_reporting_html.php:2704 -#: ../../mobile/operation/alerts.php:268 -#: ../../operation/agentes/alerts_status.php:461 -#: ../../operation/agentes/alerts_status.php:502 -#: ../../operation/agentes/alerts_status.php:536 -#: ../../operation/agentes/alerts_status.php:570 -#: ../../operation/agentes/estado_monitores.php:97 -#: ../../operation/agentes/exportdata.csv.php:77 -#: ../../operation/agentes/exportdata.excel.php:76 -#: ../../operation/agentes/exportdata.php:97 -#: ../../operation/search_alerts.php:42 ../../operation/search_modules.php:35 -#: ../../enterprise/dashboard/widgets/agent_module.php:97 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:52 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:58 -#: ../../enterprise/dashboard/widgets/module_icon.php:63 -#: ../../enterprise/dashboard/widgets/module_icon.php:69 -#: ../../enterprise/dashboard/widgets/module_status.php:52 -#: ../../enterprise/dashboard/widgets/module_status.php:58 -#: ../../enterprise/dashboard/widgets/module_table_value.php:60 -#: ../../enterprise/dashboard/widgets/module_table_value.php:66 -#: ../../enterprise/dashboard/widgets/module_value.php:64 -#: ../../enterprise/dashboard/widgets/module_value.php:70 -#: ../../enterprise/dashboard/widgets/single_graph.php:55 -#: ../../enterprise/dashboard/widgets/single_graph.php:61 -#: ../../enterprise/dashboard/widgets/sla_percent.php:51 -#: ../../enterprise/dashboard/widgets/sla_percent.php:57 -#: ../../enterprise/dashboard/widgets/top_n.php:127 -#: ../../enterprise/dashboard/widgets/top_n.php:310 -#: ../../enterprise/extensions/disabled/check_acls.php:121 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:174 -#: ../../enterprise/godmode/agentes/inventory_manager.php:149 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:19 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:408 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/policies/policy_alerts.php:240 -#: ../../enterprise/godmode/policies/policy_alerts.php:447 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -#: ../../enterprise/godmode/policies/policy_linking.php:121 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:145 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1546 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2133 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:241 -#: ../../enterprise/godmode/services/services.elements.php:345 -#: ../../enterprise/godmode/services/services.elements.php:366 -#: ../../enterprise/include/functions_alert_event.php:924 -#: ../../enterprise/include/functions_events.php:120 -#: ../../enterprise/include/functions_inventory.php:652 -#: ../../enterprise/include/functions_inventory.php:708 -#: ../../enterprise/include/functions_reporting.php:1649 -#: ../../enterprise/include/functions_reporting.php:2457 -#: ../../enterprise/include/functions_reporting.php:3234 -#: ../../enterprise/include/functions_reporting_csv.php:334 -#: ../../enterprise/include/functions_reporting_csv.php:359 -#: ../../enterprise/include/functions_reporting_csv.php:417 -#: ../../enterprise/include/functions_reporting_csv.php:443 -#: ../../enterprise/include/functions_reporting_csv.php:513 -#: ../../enterprise/include/functions_reporting_csv.php:531 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:953 -#: ../../enterprise/include/functions_reporting_csv.php:990 -#: ../../enterprise/include/functions_reporting_csv.php:1040 -#: ../../enterprise/include/functions_reporting_csv.php:1087 -#: ../../enterprise/include/functions_reporting_csv.php:1159 -#: ../../enterprise/include/functions_reporting_csv.php:1275 -#: ../../enterprise/include/functions_reporting_csv.php:1417 -#: ../../enterprise/include/functions_reporting_csv.php:1487 -#: ../../enterprise/include/functions_reporting_pdf.php:358 -#: ../../enterprise/include/functions_reporting_pdf.php:821 -#: ../../enterprise/include/functions_reporting_pdf.php:882 -#: ../../enterprise/include/functions_reporting_pdf.php:909 -#: ../../enterprise/include/functions_reporting_pdf.php:1008 -#: ../../enterprise/include/functions_reporting_pdf.php:1346 -#: ../../enterprise/include/functions_reporting_pdf.php:1690 -#: ../../enterprise/include/functions_reporting_pdf.php:1928 -#: ../../enterprise/include/functions_reporting_pdf.php:1947 -#: ../../enterprise/include/functions_services.php:1581 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3255 +#: ../../extensions/agents_alerts.php:519 +#: ../../extensions/agents_modules.php:429 ../../extensions/insert_data.php:172 +#: ../../godmode/agentes/agent_manager.php:542 +#: ../../godmode/agentes/agent_manager.php:616 +#: ../../godmode/agentes/module_manager_editor_common.php:1179 +#: ../../godmode/agentes/module_manager_editor_common.php:1223 +#: ../../godmode/agentes/module_manager_editor_prediction.php:138 +#: ../../godmode/agentes/planned_downtime.editor.php:1125 +#: ../../godmode/agentes/planned_downtime.list.php:181 +#: ../../godmode/alerts/alert_list.builder.php:69 +#: ../../godmode/alerts/alert_list.list.php:442 +#: ../../godmode/alerts/alert_list.list.php:694 +#: ../../godmode/alerts/alert_view.php:68 +#: ../../godmode/massive/massive_edit_agents.php:548 +#: ../../godmode/massive/massive_edit_agents.php:727 +#: ../../godmode/massive/massive_enable_disable_alerts.php:172 +#: ../../godmode/massive/massive_enable_disable_alerts.php:207 +#: ../../godmode/massive/massive_standby_alerts.php:184 +#: ../../godmode/massive/massive_standby_alerts.php:219 +#: ../../godmode/reporting/create_container.php:371 +#: ../../godmode/reporting/create_container.php:521 +#: ../../godmode/reporting/create_container.php:587 +#: ../../godmode/reporting/graph_builder.graph_editor.php:199 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1367 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2865 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3285 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3297 +#: ../../godmode/reporting/reporting_builder.list_items.php:382 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:469 +#: ../../godmode/reporting/visual_console_builder.wizard.php:790 +#: ../../godmode/servers/plugin.php:71 +#: ../../include/ajax/alert_list.ajax.php:204 +#: ../../include/functions_treeview.php:64 +#: ../../include/functions_graph.php:5206 +#: ../../include/functions_visual_map_editor.php:463 +#: ../../include/functions_reporting_html.php:493 +#: ../../include/functions_reporting_html.php:855 +#: ../../include/functions_reporting_html.php:1783 +#: ../../include/functions_reporting_html.php:2404 +#: ../../include/functions_reporting_html.php:2765 +#: ../../include/functions_reporting_html.php:2773 +#: ../../include/functions_reporting_html.php:2781 +#: ../../include/functions_reporting_html.php:2793 +#: ../../include/functions_reporting_html.php:2913 +#: ../../include/functions_reporting_html.php:3037 +#: ../../include/functions_reporting_html.php:3110 +#: ../../include/functions_reporting_html.php:3616 +#: ../../include/functions_reporting_html.php:3672 +#: ../../include/functions_reporting.php:4954 +#: ../../mobile/operation/alerts.php:319 +#: ../../operation/agentes/alerts_status.php:513 +#: ../../operation/agentes/alerts_status.php:548 +#: ../../operation/agentes/alerts_status.php:583 +#: ../../operation/agentes/alerts_status.php:615 +#: ../../operation/agentes/estado_monitores.php:118 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:31 +#: ../../enterprise/dashboard/widgets/agent_module.php:138 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:64 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:73 +#: ../../enterprise/dashboard/widgets/module_icon.php:77 +#: ../../enterprise/dashboard/widgets/module_icon.php:86 +#: ../../enterprise/dashboard/widgets/module_status.php:64 +#: ../../enterprise/dashboard/widgets/module_status.php:73 +#: ../../enterprise/dashboard/widgets/module_table_value.php:70 +#: ../../enterprise/dashboard/widgets/module_table_value.php:79 +#: ../../enterprise/dashboard/widgets/module_value.php:78 +#: ../../enterprise/dashboard/widgets/module_value.php:87 +#: ../../enterprise/dashboard/widgets/single_graph.php:63 +#: ../../enterprise/dashboard/widgets/single_graph.php:72 +#: ../../enterprise/dashboard/widgets/sla_percent.php:63 +#: ../../enterprise/dashboard/widgets/sla_percent.php:72 +#: ../../enterprise/dashboard/widgets/top_n.php:152 +#: ../../enterprise/dashboard/widgets/top_n.php:350 +#: ../../enterprise/extensions/disabled/check_acls.php:139 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:204 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:21 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/policies/policy_alerts.php:286 +#: ../../enterprise/godmode/policies/policy_alerts.php:502 +#: ../../enterprise/godmode/policies/policy_linking.php:123 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:724 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:796 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1206 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1278 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:152 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1901 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3149 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3360 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3378 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 +#: ../../enterprise/godmode/services/services.elements.php:613 +#: ../../enterprise/godmode/services/services.elements.php:645 +#: ../../enterprise/godmode/services/services.elements.php:655 +#: ../../enterprise/godmode/services/services.elements.php:712 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:819 +#: ../../enterprise/include/functions_alert_event.php:1132 +#: ../../enterprise/include/functions_services.php:2561 +#: ../../enterprise/include/functions_events.php:157 +#: ../../enterprise/include/functions_inventory.php:711 +#: ../../enterprise/include/functions_inventory.php:767 +#: ../../enterprise/include/functions_reporting.php:1676 +#: ../../enterprise/include/functions_reporting.php:2596 +#: ../../enterprise/include/functions_reporting.php:3588 +#: ../../enterprise/include/functions_reporting_csv.php:463 +#: ../../enterprise/include/functions_reporting_csv.php:683 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:770 +#: ../../enterprise/include/functions_reporting_csv.php:809 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/include/functions_reporting_csv.php:881 +#: ../../enterprise/include/functions_reporting_csv.php:977 +#: ../../enterprise/include/functions_reporting_csv.php:1008 +#: ../../enterprise/include/functions_reporting_csv.php:1063 +#: ../../enterprise/include/functions_reporting_csv.php:1118 +#: ../../enterprise/include/functions_reporting_csv.php:1167 +#: ../../enterprise/include/functions_reporting_csv.php:1222 +#: ../../enterprise/include/functions_reporting_csv.php:1251 +#: ../../enterprise/include/functions_reporting_csv.php:1296 +#: ../../enterprise/include/functions_reporting_csv.php:1342 +#: ../../enterprise/include/functions_reporting_csv.php:1415 +#: ../../enterprise/include/functions_reporting_csv.php:1534 +#: ../../enterprise/include/functions_reporting_csv.php:1729 +#: ../../enterprise/include/functions_reporting_csv.php:1802 +#: ../../enterprise/include/functions_reporting_csv.php:2058 +#: ../../enterprise/include/functions_reporting_csv.php:2094 +#: ../../enterprise/include/functions_reporting_csv.php:2210 +#: ../../enterprise/include/functions_reporting_pdf.php:466 +#: ../../enterprise/include/functions_reporting_pdf.php:474 +#: ../../enterprise/include/functions_reporting_pdf.php:482 +#: ../../enterprise/include/functions_reporting_pdf.php:498 +#: ../../enterprise/include/functions_ui.php:47 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3481 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/operation/agentes/agent_inventory.php:64 -#: ../../enterprise/operation/agentes/policy_view.php:194 -#: ../../enterprise/operation/inventory/inventory.php:170 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:191 +#: ../../enterprise/operation/agentes/agent_inventory.php:69 +#: ../../enterprise/operation/agentes/policy_view.php:207 +#: ../../enterprise/operation/inventory/inventory.php:185 msgid "Module" msgstr "モジュール" -#: ../../extensions/agents_alerts.php:432 ../../general/logon_ok.php:225 -#: ../../general/logon_ok.php:422 ../../godmode/admin_access_logs.php:61 -#: ../../godmode/admin_access_logs.php:189 -#: ../../godmode/agentes/agent_template.php:231 -#: ../../godmode/agentes/module_manager.php:571 -#: ../../godmode/agentes/planned_downtime.editor.php:866 -#: ../../godmode/alerts/alert_list.list.php:608 -#: ../../godmode/alerts/alert_view.php:417 -#: ../../godmode/events/event_filter.php:113 -#: ../../godmode/massive/massive_add_action_alerts.php:179 -#: ../../godmode/massive/massive_delete_action_alerts.php:181 -#: ../../godmode/massive/massive_enable_disable_alerts.php:163 -#: ../../godmode/massive/massive_operations.php:271 -#: ../../godmode/massive/massive_standby_alerts.php:163 -#: ../../godmode/modules/manage_nc_groups.php:195 -#: ../../godmode/modules/manage_network_components.php:570 -#: ../../godmode/modules/manage_network_templates.php:192 -#: ../../godmode/netflow/nf_edit.php:121 -#: ../../godmode/netflow/nf_item_list.php:152 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1717 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1912 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1921 -#: ../../godmode/reporting/visual_console_builder.elements.php:85 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/snmpconsole/snmp_alert.php:1172 -#: ../../godmode/snmpconsole/snmp_alert.php:1264 -#: ../../godmode/snmpconsole/snmp_filters.php:226 -#: ../../godmode/users/configure_user.php:740 -#: ../../include/ajax/alert_list.ajax.php:168 ../../include/functions.php:2337 -#: ../../include/functions_ui_renders.php:97 -#: ../../include/functions_events.php:3713 -#: ../../include/functions_reporting_html.php:1962 -#: ../../include/functions_reporting_html.php:3710 -#: ../../mobile/operation/tactical.php:308 -#: ../../operation/agentes/alerts_status.functions.php:106 -#: ../../operation/agentes/alerts_status.php:463 -#: ../../operation/agentes/alerts_status.php:504 -#: ../../operation/agentes/alerts_status.php:538 -#: ../../operation/agentes/alerts_status.php:572 -#: ../../operation/events/events.build_table.php:253 -#: ../../operation/incidents/incident.php:343 -#: ../../operation/search_alerts.php:48 -#: ../../operation/snmpconsole/snmp_view.php:739 -#: ../../operation/snmpconsole/snmp_view.php:1041 -#: ../../enterprise/dashboard/widgets/top_n.php:129 -#: ../../enterprise/extensions/ipam/ipam_list.php:200 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/alerts/alert_events.php:510 -#: ../../enterprise/godmode/alerts/alert_events.php:522 -#: ../../enterprise/godmode/alerts/alert_events_list.php:424 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 -#: ../../enterprise/godmode/policies/policy_alerts.php:455 -#: ../../enterprise/godmode/policies/policy_modules.php:1236 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:151 -#: ../../enterprise/godmode/reporting/graph_template_list.php:133 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2137 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2284 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2292 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/include/functions_services.php:1521 -#: ../../enterprise/operation/agentes/policy_view.php:196 +#: ../../extensions/agents_alerts.php:520 ../../general/logon_ok.php:246 +#: ../../godmode/admin_access_logs.php:82 +#: ../../godmode/admin_access_logs.php:197 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/module_manager.php:654 +#: ../../godmode/agentes/planned_downtime.editor.php:1126 +#: ../../godmode/alerts/alert_list.list.php:702 +#: ../../godmode/alerts/alert_view.php:415 +#: ../../godmode/events/event_filter.php:126 +#: ../../godmode/massive/massive_add_action_alerts.php:210 +#: ../../godmode/massive/massive_delete_action_alerts.php:224 +#: ../../godmode/massive/massive_enable_disable_alerts.php:199 +#: ../../godmode/massive/massive_operations.php:311 +#: ../../godmode/massive/massive_standby_alerts.php:211 +#: ../../godmode/modules/manage_nc_groups.php:232 +#: ../../godmode/modules/manage_network_components.php:675 +#: ../../godmode/modules/manage_network_templates.php:229 +#: ../../godmode/netflow/nf_edit.php:148 +#: ../../godmode/netflow/nf_item_list.php:180 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2905 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3288 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3309 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/snmpconsole/snmp_alert.php:1277 +#: ../../godmode/snmpconsole/snmp_alert.php:1354 +#: ../../godmode/snmpconsole/snmp_filters.php:260 +#: ../../include/ajax/alert_list.ajax.php:219 ../../include/functions.php:2884 +#: ../../include/functions_events.php:6117 +#: ../../include/functions_events.php.orig:6021 +#: ../../include/functions_ui_renders.php:117 +#: ../../include/functions_reporting_html.php:2407 +#: ../../include/functions_reporting_html.php:4645 +#: ../../include/functions_profile.php:215 +#: ../../mobile/operation/tactical.php:348 +#: ../../operation/agentes/alerts_status.functions.php:110 +#: ../../operation/agentes/alerts_status.php:515 +#: ../../operation/agentes/alerts_status.php:550 +#: ../../operation/agentes/alerts_status.php:585 +#: ../../operation/agentes/alerts_status.php:617 +#: ../../operation/events/events.build_table.php:362 +#: ../../operation/search_alerts.php:36 +#: ../../operation/snmpconsole/snmp_view.php:836 +#: ../../operation/snmpconsole/snmp_view.php:1185 +#: ../../enterprise/dashboard/widgets/top_n.php:154 +#: ../../enterprise/extensions/ipam/ipam_list.php:145 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../enterprise/godmode/alerts/alert_events.php:625 +#: ../../enterprise/godmode/alerts/alert_events.php:644 +#: ../../enterprise/godmode/alerts/alert_events_list.php:503 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:375 +#: ../../enterprise/godmode/policies/policy_alerts.php:510 +#: ../../enterprise/godmode/policies/policy_modules.php:1493 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 +#: ../../enterprise/godmode/reporting/graph_template_list.php:152 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3169 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3365 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3388 +#: ../../enterprise/godmode/servers/manage_export.php:142 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:389 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:447 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2290 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2627 +#: ../../enterprise/include/functions_services.php:2486 +#: ../../enterprise/operation/agentes/policy_view.php:209 msgid "Action" msgstr "アクション" -#: ../../extensions/agents_alerts.php:433 -#: ../../godmode/alerts/alert_view.php:79 -#: ../../godmode/snmpconsole/snmp_alert.php:1169 -#: ../../include/functions_treeview.php:430 -#: ../../include/functions_reporting_html.php:3222 -#: ../../operation/agentes/alerts_status.php:464 -#: ../../operation/agentes/alerts_status.php:505 -#: ../../operation/agentes/alerts_status.php:539 -#: ../../operation/agentes/alerts_status.php:573 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1528 -#: ../../enterprise/operation/agentes/policy_view.php:197 +#: ../../extensions/agents_alerts.php:521 +#: ../../godmode/alerts/alert_view.php:76 +#: ../../godmode/snmpconsole/snmp_alert.php:1274 +#: ../../include/functions_treeview.php:445 +#: ../../include/functions_reporting_html.php:4141 +#: ../../operation/agentes/alerts_status.php:516 +#: ../../operation/agentes/alerts_status.php:551 +#: ../../operation/agentes/alerts_status.php:586 +#: ../../operation/agentes/alerts_status.php:618 +#: ../../enterprise/operation/agentes/policy_view.php:210 msgid "Last fired" msgstr "通知日時" -#: ../../extensions/agents_alerts.php:434 ../../extensions/net_tools.php:243 -#: ../../godmode/agentes/agent_incidents.php:86 -#: ../../godmode/agentes/agent_manager.php:359 -#: ../../godmode/agentes/module_manager.php:567 -#: ../../godmode/alerts/alert_list.list.php:411 -#: ../../godmode/alerts/alert_view.php:96 -#: ../../godmode/events/custom_events.php:83 -#: ../../godmode/events/custom_events.php:157 -#: ../../godmode/massive/massive_copy_modules.php:83 -#: ../../godmode/massive/massive_copy_modules.php:201 -#: ../../godmode/massive/massive_delete_agents.php:119 -#: ../../godmode/massive/massive_delete_modules.php:471 -#: ../../godmode/massive/massive_edit_agents.php:275 -#: ../../godmode/massive/massive_edit_agents.php:418 -#: ../../godmode/servers/servers.build_table.php:65 -#: ../../include/ajax/module.php:781 -#: ../../include/functions_pandora_networkmap.php:1647 -#: ../../include/functions_events.php:39 -#: ../../include/functions_events.php:2514 -#: ../../include/functions_events.php:3619 -#: ../../include/functions_snmp_browser.php:481 -#: ../../include/functions_reporting_html.php:404 -#: ../../include/functions_reporting_html.php:809 -#: ../../include/functions_reporting_html.php:819 -#: ../../include/functions_reporting_html.php:1024 -#: ../../include/functions_reporting_html.php:1034 -#: ../../include/functions_reporting_html.php:1645 -#: ../../include/functions_reporting_html.php:2086 -#: ../../include/functions_reporting_html.php:2121 -#: ../../include/functions_reporting_html.php:2937 -#: ../../include/functions_snmp.php:325 ../../mobile/operation/agents.php:81 -#: ../../mobile/operation/agents.php:126 ../../mobile/operation/agents.php:205 -#: ../../mobile/operation/agents.php:206 ../../mobile/operation/agents.php:345 -#: ../../mobile/operation/alerts.php:75 ../../mobile/operation/alerts.php:76 -#: ../../mobile/operation/alerts.php:194 ../../mobile/operation/alerts.php:195 -#: ../../mobile/operation/alerts.php:274 ../../mobile/operation/events.php:342 -#: ../../mobile/operation/events.php:343 ../../mobile/operation/events.php:493 -#: ../../mobile/operation/events.php:613 ../../mobile/operation/events.php:614 -#: ../../mobile/operation/modules.php:119 -#: ../../mobile/operation/modules.php:120 -#: ../../mobile/operation/modules.php:212 -#: ../../mobile/operation/modules.php:213 -#: ../../mobile/operation/modules.php:503 -#: ../../mobile/operation/modules.php:507 -#: ../../mobile/operation/modules.php:511 -#: ../../mobile/operation/modules.php:515 -#: ../../mobile/operation/modules.php:523 -#: ../../mobile/operation/modules.php:528 -#: ../../mobile/operation/modules.php:533 -#: ../../mobile/operation/modules.php:623 -#: ../../mobile/operation/modules.php:754 -#: ../../operation/agentes/alerts_status.functions.php:83 -#: ../../operation/agentes/alerts_status.php:465 -#: ../../operation/agentes/alerts_status.php:506 -#: ../../operation/agentes/alerts_status.php:540 -#: ../../operation/agentes/alerts_status.php:574 -#: ../../operation/agentes/estado_agente.php:221 -#: ../../operation/agentes/estado_agente.php:573 -#: ../../operation/agentes/status_monitor.php:979 -#: ../../operation/events/events.build_table.php:144 -#: ../../operation/incidents/incident.php:240 -#: ../../operation/incidents/incident.php:336 -#: ../../operation/incidents/incident_detail.php:276 -#: ../../operation/messages/message_list.php:121 -#: ../../operation/search_agents.php:64 ../../operation/search_modules.php:51 -#: ../../operation/servers/recon_view.php:101 -#: ../../operation/snmpconsole/snmp_view.php:461 -#: ../../operation/snmpconsole/snmp_view.php:705 -#: ../../operation/snmpconsole/snmp_view.php:1025 +#: ../../extensions/agents_alerts.php:522 ../../extensions/net_tools.php:241 +#: ../../godmode/agentes/agent_incidents.php:89 +#: ../../godmode/agentes/module_manager.php:650 +#: ../../godmode/agentes/status_monitor_custom_fields.php:97 +#: ../../godmode/agentes/status_monitor_custom_fields.php:148 +#: ../../godmode/alerts/alert_list.list.php:445 +#: ../../godmode/alerts/alert_view.php:91 +#: ../../godmode/events/custom_events.php:100 +#: ../../godmode/massive/massive_copy_modules.php:105 +#: ../../godmode/massive/massive_copy_modules.php:265 +#: ../../godmode/massive/massive_delete_agents.php:142 +#: ../../godmode/massive/massive_delete_modules.php:391 +#: ../../godmode/massive/massive_edit_agents.php:429 +#: ../../godmode/massive/massive_edit_agents.php:640 +#: ../../godmode/servers/servers.build_table.php:66 +#: ../../godmode/setup/setup_integria.php:354 +#: ../../godmode/setup/setup_integria.php:477 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:403 +#: ../../include/ajax/custom_fields.php:406 ../../include/ajax/module.php:838 +#: ../../include/class/NetworkMap.class.php:2933 +#: ../../include/functions_snmp.php:369 +#: ../../include/functions_snmp_browser.php:539 +#: ../../include/functions_events.php:194 +#: ../../include/functions_events.php:247 +#: ../../include/functions_events.php:2402 +#: ../../include/functions_events.php:4567 +#: ../../include/functions_events.php:5994 +#: ../../include/functions_events.php.orig:192 +#: ../../include/functions_events.php.orig:245 +#: ../../include/functions_events.php.orig:2308 +#: ../../include/functions_events.php.orig:4461 +#: ../../include/functions_events.php.orig:5898 +#: ../../include/functions_reporting_html.php:497 +#: ../../include/functions_reporting_html.php:961 +#: ../../include/functions_reporting_html.php:970 +#: ../../include/functions_reporting_html.php:1182 +#: ../../include/functions_reporting_html.php:1190 +#: ../../include/functions_reporting_html.php:1957 +#: ../../include/functions_reporting_html.php:2614 +#: ../../include/functions_reporting_html.php:2667 +#: ../../include/functions_reporting_html.php:3950 +#: ../../mobile/operation/agents.php:83 ../../mobile/operation/agents.php:130 +#: ../../mobile/operation/agents.php:228 ../../mobile/operation/agents.php:229 +#: ../../mobile/operation/agents.php:396 ../../mobile/operation/alerts.php:87 +#: ../../mobile/operation/alerts.php:88 ../../mobile/operation/alerts.php:228 +#: ../../mobile/operation/alerts.php:229 ../../mobile/operation/alerts.php:331 +#: ../../mobile/operation/events.php:368 ../../mobile/operation/events.php:369 +#: ../../mobile/operation/events.php:536 ../../mobile/operation/events.php:671 +#: ../../mobile/operation/events.php:672 ../../mobile/operation/modules.php:139 +#: ../../mobile/operation/modules.php:140 +#: ../../mobile/operation/modules.php:250 +#: ../../mobile/operation/modules.php:251 +#: ../../mobile/operation/modules.php:576 +#: ../../mobile/operation/modules.php:582 +#: ../../mobile/operation/modules.php:588 +#: ../../mobile/operation/modules.php:594 +#: ../../mobile/operation/modules.php:605 +#: ../../mobile/operation/modules.php:613 +#: ../../mobile/operation/modules.php:621 +#: ../../mobile/operation/modules.php:692 +#: ../../mobile/operation/modules.php:700 +#: ../../mobile/operation/modules.php:820 +#: ../../operation/agentes/alerts_status.functions.php:88 +#: ../../operation/agentes/alerts_status.php:517 +#: ../../operation/agentes/alerts_status.php:552 +#: ../../operation/agentes/alerts_status.php:587 +#: ../../operation/agentes/alerts_status.php:619 +#: ../../operation/agentes/estado_agente.php:237 +#: ../../operation/agentes/estado_agente.php:719 +#: ../../operation/agentes/status_monitor.php:1139 +#: ../../operation/events/events.build_table.php:351 +#: ../../operation/incidents/configure_integriaims_incident.php:226 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:373 +#: ../../operation/incidents/incident.php:303 +#: ../../operation/incidents/incident.php:420 +#: ../../operation/incidents/incident_detail.php:304 +#: ../../operation/incidents/integriaims_export_csv.php:91 +#: ../../operation/incidents/list_integriaims_incidents.php:109 +#: ../../operation/messages/message_list.php:160 +#: ../../operation/search_agents.php:53 ../../operation/search_modules.php:35 +#: ../../operation/search_policies.php:37 +#: ../../operation/servers/recon_view.php:103 +#: ../../operation/snmpconsole/snmp_view.php:560 +#: ../../operation/snmpconsole/snmp_view.php:794 +#: ../../operation/snmpconsole/snmp_view.php:1145 +#: ../../enterprise/dashboard/widgets/system_group_status.php:44 #: ../../enterprise/dashboard/widgets/tactical.php:32 -#: ../../enterprise/extensions/backup/main.php:101 -#: ../../enterprise/extensions/vmware/vmware_view.php:1016 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/agentes/collection_manager.php:108 -#: ../../enterprise/godmode/agentes/collection_manager.php:166 -#: ../../enterprise/godmode/alerts/alert_events_list.php:425 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:92 -#: ../../enterprise/godmode/policies/policies.php:253 -#: ../../enterprise/godmode/policies/policy_agents.php:574 -#: ../../enterprise/godmode/policies/policy_agents.php:819 -#: ../../enterprise/godmode/policies/policy_collections.php:124 -#: ../../enterprise/godmode/policies/policy_collections.php:195 -#: ../../enterprise/godmode/policies/policy_queue.php:368 -#: ../../enterprise/godmode/reporting/cluster_list.php:121 -#: ../../enterprise/godmode/reporting/cluster_list.php:173 -#: ../../enterprise/godmode/servers/list_satellite.php:36 -#: ../../enterprise/include/ajax/clustermap.php:65 -#: ../../enterprise/include/ajax/clustermap.php:275 -#: ../../enterprise/include/functions_reporting.php:1650 -#: ../../enterprise/include/functions_reporting.php:2458 -#: ../../enterprise/include/functions_reporting.php:3235 -#: ../../enterprise/include/functions_reporting.php:4846 -#: ../../enterprise/include/functions_reporting.php:5147 -#: ../../enterprise/include/functions_reporting_csv.php:1434 -#: ../../enterprise/include/functions_reporting_pdf.php:1350 -#: ../../enterprise/include/functions_reporting_pdf.php:1691 -#: ../../enterprise/include/functions_reporting_pdf.php:2123 -#: ../../enterprise/include/functions_reporting_pdf.php:2400 -#: ../../enterprise/include/functions_reporting_pdf.php:2450 -#: ../../enterprise/include/functions_services.php:1518 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:357 -#: ../../enterprise/meta/advanced/policymanager.queue.php:222 -#: ../../enterprise/meta/advanced/servers.build_table.php:60 -#: ../../enterprise/meta/agentsearch.php:107 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1552 -#: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/operation/agentes/collection_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:47 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:198 -#: ../../enterprise/operation/agentes/policy_view.php:307 -#: ../../enterprise/operation/agentes/tag_view.php:470 -#: ../../enterprise/operation/agentes/tag_view.php:538 -#: ../../enterprise/operation/services/services.list.php:175 -#: ../../enterprise/operation/services/services.list.php:342 -#: ../../enterprise/operation/services/services.service.php:140 -#: ../../enterprise/operation/services/services.table_services.php:144 +#: ../../enterprise/extensions/backup/main.php:128 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/extensions/vmware/vmware_view.php:1092 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/agentes/collection_manager.php:118 +#: ../../enterprise/godmode/agentes/collection_manager.php:204 +#: ../../enterprise/godmode/alerts/alert_events_list.php:504 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:108 +#: ../../enterprise/godmode/policies/policies.php:425 +#: ../../enterprise/godmode/policies/policy_agents.php:711 +#: ../../enterprise/godmode/policies/policy_agents.php:1075 +#: ../../enterprise/godmode/policies/policy_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_collections.php:152 +#: ../../enterprise/godmode/policies/policy_collections.php:247 +#: ../../enterprise/godmode/policies/policy_modules.php:1493 +#: ../../enterprise/godmode/policies/policy_queue.php:427 +#: ../../enterprise/godmode/reporting/cluster_list.php:137 +#: ../../enterprise/godmode/reporting/cluster_list.php:192 +#: ../../enterprise/godmode/servers/HA_cluster.php:130 +#: ../../enterprise/godmode/servers/list_satellite.php:37 +#: ../../enterprise/include/ajax/clustermap.php:71 +#: ../../enterprise/include/ajax/clustermap.php:290 +#: ../../enterprise/include/functions_services.php:2482 +#: ../../enterprise/include/functions_reporting.php:1680 +#: ../../enterprise/include/functions_reporting.php:2600 +#: ../../enterprise/include/functions_reporting.php:3592 +#: ../../enterprise/include/functions_reporting.php:5707 +#: ../../enterprise/include/functions_reporting_csv.php:1746 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:414 +#: ../../enterprise/meta/advanced/policymanager.queue.php:225 +#: ../../enterprise/meta/advanced/servers.build_table.php:59 +#: ../../enterprise/meta/agentsearch.php:118 +#: ../../enterprise/meta/agentsearch.php:300 +#: ../../enterprise/meta/include/functions_events_meta.php:78 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:692 +#: ../../enterprise/operation/agentes/collection_view.php:65 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:142 +#: ../../enterprise/operation/agentes/policy_view.php:211 +#: ../../enterprise/operation/agentes/policy_view.php:326 +#: ../../enterprise/operation/agentes/tag_view.php:580 +#: ../../enterprise/operation/agentes/tag_view.php:657 +#: ../../enterprise/operation/services/services.list.php:195 +#: ../../enterprise/operation/services/services.list.php:413 +#: ../../enterprise/operation/services/services.service.php:174 +#: ../../enterprise/operation/services/services.table_services.php:174 msgid "Status" msgstr "状態" -#: ../../extensions/agents_alerts.php:464 -#: ../../godmode/agentes/module_manager_editor_common.php:397 -#: ../../godmode/alerts/alert_list.list.php:504 -#: ../../godmode/alerts/alert_special_days.php:275 -#: ../../godmode/alerts/alert_special_days.php:287 +#: ../../extensions/agents_alerts.php:556 +#: ../../godmode/agentes/module_manager_editor_common.php:762 +#: ../../godmode/alerts/alert_list.list.php:572 +#: ../../godmode/alerts/alert_special_days.php:306 +#: ../../godmode/alerts/alert_special_days.php:318 #: ../../godmode/alerts/alert_view.php:43 -#: ../../godmode/events/event_edit_filter.php:278 -#: ../../godmode/massive/massive_edit_agents.php:460 -#: ../../godmode/setup/gis_step_2.php:367 -#: ../../godmode/setup/gis_step_2.php:451 -#: ../../godmode/setup/setup_visuals.php:183 -#: ../../godmode/setup/setup_visuals.php:662 -#: ../../godmode/setup/setup_visuals.php:674 -#: ../../godmode/users/configure_user.php:514 -#: ../../godmode/users/configure_user.php:586 -#: ../../include/functions_ui.php:935 -#: ../../operation/events/events_list.php:543 -#: ../../operation/gis_maps/gis_map.php:93 -#: ../../operation/snmpconsole/snmp_view.php:452 -#: ../../operation/users/user_edit.php:249 -#: ../../operation/users/user_edit.php:251 -#: ../../operation/users/user_edit.php:259 -#: ../../operation/users/user_edit.php:278 -#: ../../enterprise/dashboard/main_dashboard.php:74 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:186 -#: ../../enterprise/godmode/policies/policy_alerts.php:304 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:199 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:88 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:117 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:122 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:78 -#: ../../enterprise/meta/advanced/metasetup.visual.php:237 -#: ../../enterprise/meta/advanced/metasetup.visual.php:290 -#: ../../enterprise/meta/advanced/metasetup.visual.php:295 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1520 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../godmode/massive/massive_edit_agents.php:682 +#: ../../godmode/setup/gis_step_2.php:397 +#: ../../godmode/setup/gis_step_2.php:483 +#: ../../godmode/setup/setup_visuals.php:193 +#: ../../godmode/setup/setup_visuals.php:215 +#: ../../godmode/setup/setup_visuals.php:438 +#: ../../godmode/setup/setup_visuals.php:458 +#: ../../godmode/setup/setup_visuals.php:1057 +#: ../../godmode/setup/setup_visuals.php:1105 +#: ../../godmode/users/configure_user.php:694 +#: ../../godmode/users/configure_user.php:839 +#: ../../include/functions_ui.php:1210 +#: ../../operation/events/events_list.php:849 +#: ../../operation/gis_maps/gis_map.php:106 +#: ../../operation/snmpconsole/snmp_view.php:542 +#: ../../operation/users/user_edit.php:299 +#: ../../operation/users/user_edit.php:302 +#: ../../operation/users/user_edit.php:313 +#: ../../operation/users/user_edit.php:338 +#: ../../enterprise/dashboard/main_dashboard.php:117 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:383 +#: ../../enterprise/godmode/policies/policy_alerts.php:340 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:229 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:107 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:134 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:89 +#: ../../enterprise/meta/advanced/metasetup.visual.php:289 +#: ../../enterprise/meta/advanced/metasetup.visual.php:302 +#: ../../enterprise/meta/advanced/metasetup.visual.php:518 +#: ../../enterprise/meta/advanced/metasetup.visual.php:549 #: ../../enterprise/meta/monitoring/wizard/wizard.php:99 -#: ../../enterprise/operation/agentes/policy_view.php:253 +#: ../../enterprise/operation/agentes/policy_view.php:268 msgid "Default" msgstr "デフォルト" -#: ../../extensions/agents_alerts.php:475 -#: ../../godmode/alerts/alert_list.list.php:643 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions.php:1035 -#: ../../include/functions_reporting.php:8662 -#: ../../include/functions_agents.php:2201 -#: ../../include/functions_agents.php:2213 ../../include/functions_ui.php:948 -#: ../../include/functions_events.php:1158 -#: ../../include/functions_events.php:1408 -#: ../../mobile/operation/alerts.php:253 -#: ../../operation/agentes/group_view.php:174 -#: ../../operation/events/sound_events.php:83 -#: ../../operation/snmpconsole/snmp_view.php:843 -#: ../../enterprise/godmode/alerts/alert_events_list.php:617 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:637 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:872 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 -#: ../../enterprise/meta/monitoring/group_view.php:155 -#: ../../enterprise/operation/agentes/policy_view.php:265 +#: ../../extensions/agents_alerts.php:567 +#: ../../godmode/alerts/alert_list.list.php:522 +#: ../../godmode/alerts/alert_view.php:82 ../../include/functions.php:1226 +#: ../../include/functions_agents.php:2582 +#: ../../include/functions_agents.php:2593 +#: ../../include/functions_events.php:2669 +#: ../../include/functions_events.php:3019 +#: ../../include/functions_events.php.orig:2575 +#: ../../include/functions_events.php.orig:2925 +#: ../../include/functions_ui.php:1223 +#: ../../include/functions_reporting.php:9915 +#: ../../mobile/operation/alerts.php:305 +#: ../../operation/agentes/group_view.php:205 +#: ../../operation/events/sound_events.php:75 +#: ../../operation/snmpconsole/snmp_view.php:963 +#: ../../enterprise/godmode/alerts/alert_events_list.php:708 +#: ../../enterprise/meta/monitoring/group_view.php:200 +#: ../../enterprise/operation/agentes/policy_view.php:281 msgid "Alert fired" msgstr "発生中アラート" -#: ../../extensions/agents_alerts.php:475 -#: ../../godmode/alerts/alert_list.list.php:643 -#: ../../godmode/alerts/alert_view.php:85 ../../include/functions_ui.php:948 -#: ../../mobile/operation/alerts.php:253 -#: ../../enterprise/godmode/alerts/alert_events_list.php:618 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:872 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1540 -#: ../../enterprise/operation/agentes/policy_view.php:265 -msgid "times" +#: ../../extensions/agents_alerts.php:567 +#: ../../godmode/alerts/alert_list.list.php:522 +#: ../../godmode/alerts/alert_view.php:82 ../../include/functions_ui.php:1223 +#: ../../mobile/operation/alerts.php:305 +#: ../../enterprise/godmode/alerts/alert_events_list.php:708 +#: ../../enterprise/operation/agentes/policy_view.php:281 +msgid "time(s)" msgstr "回" -#: ../../extensions/agents_alerts.php:479 -#: ../../godmode/alerts/alert_list.list.php:647 -#: ../../godmode/alerts/alert_view.php:89 -#: ../../include/functions_reporting.php:8668 -#: ../../include/functions_ui.php:952 ../../mobile/operation/alerts.php:257 -#: ../../enterprise/godmode/alerts/alert_events_list.php:622 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:876 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1544 -#: ../../enterprise/operation/agentes/policy_view.php:269 +#: ../../extensions/agents_alerts.php:570 +#: ../../godmode/alerts/alert_list.list.php:525 +#: ../../godmode/alerts/alert_view.php:85 ../../include/functions_ui.php:1226 +#: ../../include/functions_reporting.php:9924 +#: ../../mobile/operation/alerts.php:308 +#: ../../enterprise/godmode/alerts/alert_events_list.php:711 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2889 +#: ../../enterprise/operation/agentes/policy_view.php:284 msgid "Alert disabled" msgstr "無効アラート" -#: ../../extensions/agents_alerts.php:483 -#: ../../godmode/alerts/alert_list.list.php:651 -#: ../../godmode/alerts/alert_view.php:93 -#: ../../include/functions_reporting.php:8607 -#: ../../include/functions_agents.php:2204 -#: ../../include/functions_agents.php:2216 ../../include/functions_ui.php:956 -#: ../../mobile/operation/alerts.php:261 -#: ../../operation/snmpconsole/snmp_view.php:846 -#: ../../enterprise/godmode/alerts/alert_events_list.php:626 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:639 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:880 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1548 -#: ../../enterprise/operation/agentes/policy_view.php:273 +#: ../../extensions/agents_alerts.php:573 +#: ../../godmode/alerts/alert_list.list.php:528 +#: ../../godmode/alerts/alert_view.php:88 +#: ../../include/functions_agents.php:2584 +#: ../../include/functions_agents.php:2595 ../../include/functions_ui.php:1229 +#: ../../include/functions_reporting.php:9838 +#: ../../mobile/operation/alerts.php:311 +#: ../../operation/snmpconsole/snmp_view.php:965 +#: ../../enterprise/godmode/alerts/alert_events_list.php:714 +#: ../../enterprise/operation/agentes/policy_view.php:287 msgid "Alert not fired" msgstr "未通知アラート" -#: ../../extensions/agents_alerts.php:499 +#: ../../extensions/agents_alerts.php:590 msgid "Agents/Alerts view" msgstr "エージェント/アラート 表示" -#: ../../extensions/agents_modules.php:141 -#: ../../godmode/agentes/modificar_agente.php:190 -#: ../../godmode/agentes/planned_downtime.editor.php:719 -#: ../../godmode/reporting/reporting_builder.item_editor.php:917 -#: ../../operation/agentes/estado_agente.php:203 -#: ../../enterprise/dashboard/widgets/agent_module.php:84 -#: ../../enterprise/godmode/policies/policies.php:233 -#: ../../enterprise/godmode/reporting/cluster_list.php:104 +#: ../../extensions/agents_modules.php:74 +#: ../../operation/events/events.php:2420 +#: ../../operation/snmpconsole/snmp_view.php:1259 +#: ../../enterprise/include/functions_dashboard.php:1197 +msgid "Until next" +msgstr "次まで" + +#: ../../extensions/agents_modules.php:392 +#: ../../godmode/agentes/modificar_agente.php:200 +#: ../../godmode/agentes/planned_downtime.editor.php:936 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1241 +#: ../../operation/agentes/estado_agente.php:219 +#: ../../enterprise/dashboard/widgets/agent_module.php:113 +#: ../../enterprise/godmode/policies/policies.php:346 +#: ../../enterprise/godmode/reporting/cluster_list.php:120 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:566 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:160 msgid "Recursion" msgstr "子を含める" -#: ../../extensions/agents_modules.php:144 -#: ../../godmode/agentes/module_manager_editor_common.php:174 -#: ../../godmode/massive/massive_edit_modules.php:544 -#: ../../godmode/modules/manage_network_components_form_common.php:95 -#: ../../godmode/reporting/create_container.php:484 -#: ../../godmode/reporting/reporting_builder.item_editor.php:951 -#: ../../include/functions_treeview.php:123 -#: ../../include/functions_events.php:2176 -#: ../../include/functions_graph.php:6234 -#: ../../mobile/operation/modules.php:140 -#: ../../mobile/operation/modules.php:141 -#: ../../mobile/operation/modules.php:229 -#: ../../mobile/operation/modules.php:230 -#: ../../operation/agentes/estado_monitores.php:476 -#: ../../operation/agentes/status_monitor.php:309 -#: ../../operation/agentes/ver_agente.php:885 -#: ../../enterprise/godmode/modules/configure_local_component.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1523 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1377 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:157 -#: ../../enterprise/operation/agentes/tag_view.php:94 -#: ../../enterprise/operation/agentes/ver_agente.php:33 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:206 +#: ../../extensions/agents_modules.php:395 +#: ../../godmode/agentes/module_manager_editor_common.php:246 +#: ../../godmode/massive/massive_edit_modules.php:817 +#: ../../godmode/modules/manage_network_components_form_common.php:122 +#: ../../godmode/reporting/create_container.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1294 +#: ../../include/functions_events.php:4124 +#: ../../include/functions_events.php.orig:4030 +#: ../../include/functions_treeview.php:122 +#: ../../include/functions_graph.php:5122 +#: ../../mobile/operation/modules.php:159 +#: ../../mobile/operation/modules.php:160 +#: ../../mobile/operation/modules.php:268 +#: ../../mobile/operation/modules.php:269 +#: ../../operation/agentes/estado_monitores.php:543 +#: ../../operation/agentes/status_monitor.php:405 +#: ../../operation/agentes/ver_agente.php:983 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:675 +#: ../../enterprise/godmode/modules/configure_local_component.php:253 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1860 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/operation/agentes/tag_view.php:130 +#: ../../enterprise/operation/agentes/ver_agente.php:32 msgid "Module group" msgstr "モジュールグループ" -#: ../../extensions/agents_modules.php:146 -#: ../../extensions/files_repo/files_repo_form.php:50 -#: ../../general/subselect_data_module.php:42 -#: ../../godmode/admin_access_logs.php:62 -#: ../../godmode/admin_access_logs.php:64 -#: ../../godmode/alerts/alert_list.list.php:122 -#: ../../godmode/alerts/alert_list.list.php:128 -#: ../../godmode/alerts/alert_list.list.php:137 -#: ../../godmode/alerts/alert_list.list.php:142 -#: ../../godmode/alerts/alert_list.php:291 -#: ../../godmode/alerts/alert_list.php:345 -#: ../../godmode/alerts/alert_list.php:358 -#: ../../godmode/alerts/alert_templates.php:256 -#: ../../godmode/events/event_edit_filter.php:237 -#: ../../godmode/events/event_edit_filter.php:241 -#: ../../godmode/events/event_edit_filter.php:382 -#: ../../godmode/massive/massive_copy_modules.php:85 -#: ../../godmode/massive/massive_copy_modules.php:203 -#: ../../godmode/massive/massive_delete_agents.php:121 -#: ../../godmode/massive/massive_delete_agents.php:124 -#: ../../godmode/massive/massive_delete_modules.php:425 -#: ../../godmode/massive/massive_delete_modules.php:453 -#: ../../godmode/massive/massive_delete_modules.php:481 -#: ../../godmode/massive/massive_delete_modules.php:495 -#: ../../godmode/massive/massive_edit_agents.php:277 -#: ../../godmode/massive/massive_edit_agents.php:279 -#: ../../godmode/massive/massive_edit_modules.php:263 -#: ../../godmode/massive/massive_edit_modules.php:291 -#: ../../godmode/massive/massive_edit_modules.php:312 -#: ../../godmode/massive/massive_edit_modules.php:350 -#: ../../godmode/modules/manage_network_components.php:515 -#: ../../godmode/modules/manage_network_templates_form.php:269 -#: ../../godmode/reporting/create_container.php:487 -#: ../../godmode/reporting/reporting_builder.item_editor.php:946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:956 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1472 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1484 -#: ../../godmode/reporting/reporting_builder.list_items.php:166 -#: ../../godmode/reporting/reporting_builder.list_items.php:168 -#: ../../godmode/reporting/reporting_builder.list_items.php:170 -#: ../../godmode/reporting/reporting_builder.list_items.php:192 -#: ../../godmode/reporting/reporting_builder.list_items.php:195 -#: ../../godmode/reporting/reporting_builder.list_items.php:198 -#: ../../godmode/reporting/visual_console_builder.wizard.php:249 -#: ../../godmode/reporting/visual_console_builder.wizard.php:254 -#: ../../godmode/setup/gis_step_2.php:154 -#: ../../godmode/setup/setup_visuals.php:558 ../../include/functions.php:906 -#: ../../include/functions.php:1129 ../../include/functions_reporting.php:1751 -#: ../../include/functions_events.php:3438 -#: ../../include/functions_events.php:3951 -#: ../../include/functions_users.php:336 -#: ../../include/functions_users.php:1056 -#: ../../include/functions_graph.php:3355 -#: ../../include/functions_groups.php:616 -#: ../../include/functions_groups.php:2410 -#: ../../include/functions_modules.php:2585 -#: ../../include/functions_modules.php:2587 -#: ../../mobile/operation/agents.php:32 ../../mobile/operation/alerts.php:37 -#: ../../mobile/operation/alerts.php:43 ../../mobile/operation/events.php:624 -#: ../../mobile/operation/events.php:634 -#: ../../mobile/operation/events.php:1082 -#: ../../mobile/operation/events.php:1101 -#: ../../mobile/operation/modules.php:38 -#: ../../mobile/operation/modules.php:225 -#: ../../mobile/operation/modules.php:240 -#: ../../mobile/operation/networkmaps.php:137 -#: ../../mobile/operation/networkmaps.php:227 -#: ../../operation/agentes/alerts_status.functions.php:73 -#: ../../operation/agentes/alerts_status.functions.php:79 -#: ../../operation/agentes/alerts_status.functions.php:94 -#: ../../operation/agentes/alerts_status.functions.php:111 -#: ../../operation/agentes/alerts_status.functions.php:113 -#: ../../operation/agentes/estado_agente.php:222 -#: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/agentes/estado_monitores.php:479 -#: ../../operation/agentes/status_monitor.php:305 -#: ../../operation/agentes/status_monitor.php:322 -#: ../../operation/agentes/status_monitor.php:332 -#: ../../operation/agentes/status_monitor.php:351 -#: ../../operation/agentes/status_monitor.php:400 -#: ../../operation/agentes/status_monitor.php:402 -#: ../../operation/agentes/status_monitor.php:472 -#: ../../operation/events/events.build_table.php:506 -#: ../../operation/events/events_list.php:519 -#: ../../operation/events/events_list.php:523 -#: ../../operation/events/events_list.php:532 -#: ../../operation/events/events_list.php:632 -#: ../../operation/events/events_list.php:636 -#: ../../operation/events/events_rss.php:110 -#: ../../operation/events/export_csv.php:54 -#: ../../operation/gis_maps/render_view.php:148 -#: ../../operation/snmpconsole/snmp_view.php:441 -#: ../../operation/snmpconsole/snmp_view.php:458 -#: ../../operation/snmpconsole/snmp_view.php:463 -#: ../../operation/snmpconsole/snmp_view.php:745 ../../operation/tree.php:136 -#: ../../operation/tree.php:168 -#: ../../enterprise/dashboard/widgets/events_list.php:52 -#: ../../enterprise/dashboard/widgets/tree_view.php:54 +#: ../../extensions/agents_modules.php:401 +#: ../../extensions/files_repo/files_repo_form.php:46 +#: ../../general/subselect_data_module.php:62 +#: ../../godmode/admin_access_logs.php:83 +#: ../../godmode/admin_access_logs.php:87 +#: ../../godmode/alerts/alert_list.list.php:115 +#: ../../godmode/alerts/alert_list.list.php:121 +#: ../../godmode/alerts/alert_list.list.php:130 +#: ../../godmode/alerts/alert_list.list.php:135 +#: ../../godmode/alerts/alert_list.php:472 +#: ../../godmode/alerts/alert_list.php:521 +#: ../../godmode/alerts/alert_list.php:535 +#: ../../godmode/alerts/alert_templates.php:291 +#: ../../godmode/events/event_edit_filter.php:289 +#: ../../godmode/events/event_edit_filter.php:304 +#: ../../godmode/events/event_edit_filter.php:567 +#: ../../godmode/massive/massive_copy_modules.php:111 +#: ../../godmode/massive/massive_copy_modules.php:271 +#: ../../godmode/massive/massive_delete_agents.php:148 +#: ../../godmode/massive/massive_delete_agents.php:162 +#: ../../godmode/massive/massive_delete_modules.php:303 +#: ../../godmode/massive/massive_delete_modules.php:350 +#: ../../godmode/massive/massive_delete_modules.php:405 +#: ../../godmode/massive/massive_delete_modules.php:426 +#: ../../godmode/massive/massive_edit_agents.php:435 +#: ../../godmode/massive/massive_edit_agents.php:448 +#: ../../godmode/massive/massive_edit_modules.php:284 +#: ../../godmode/massive/massive_edit_modules.php:331 +#: ../../godmode/massive/massive_edit_modules.php:369 +#: ../../godmode/massive/massive_edit_modules.php:454 +#: ../../godmode/modules/manage_network_components.php:577 +#: ../../godmode/modules/manage_network_templates_form.php:291 +#: ../../godmode/reporting/create_container.php:507 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1302 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1637 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2348 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2375 +#: ../../godmode/reporting/reporting_builder.list_items.php:209 +#: ../../godmode/reporting/reporting_builder.list_items.php:211 +#: ../../godmode/reporting/reporting_builder.list_items.php:213 +#: ../../godmode/reporting/reporting_builder.list_items.php:235 +#: ../../godmode/reporting/reporting_builder.list_items.php:245 +#: ../../godmode/reporting/reporting_builder.list_items.php:255 +#: ../../godmode/reporting/visual_console_builder.wizard.php:360 +#: ../../godmode/reporting/visual_console_builder.wizard.php:374 +#: ../../godmode/setup/gis_step_2.php:201 +#: ../../godmode/setup/setup_visuals.php:872 +#: ../../include/class/CredentialStore.class.php:491 +#: ../../include/functions.php:1069 ../../include/functions.php:1328 +#: ../../include/functions_notifications.php:108 +#: ../../include/functions_events.php:5774 +#: ../../include/functions_events.php:6372 +#: ../../include/functions_events.php.orig:5678 +#: ../../include/functions_events.php.orig:6276 +#: ../../include/functions_graph.php:3029 +#: ../../include/functions_groups.php:685 +#: ../../include/functions_groups.php:1964 +#: ../../include/functions_groupview.php:95 +#: ../../include/functions_users.php:369 ../../include/functions_users.php:1206 +#: ../../include/functions_modules.php:3127 +#: ../../include/functions_modules.php:3129 +#: ../../include/functions_reporting.php:2299 +#: ../../mobile/operation/agents.php:38 ../../mobile/operation/alerts.php:47 +#: ../../mobile/operation/alerts.php:54 ../../mobile/operation/events.php:682 +#: ../../mobile/operation/events.php:692 ../../mobile/operation/events.php:1158 +#: ../../mobile/operation/events.php:1187 ../../mobile/operation/modules.php:48 +#: ../../mobile/operation/modules.php:264 +#: ../../mobile/operation/modules.php:279 +#: ../../operation/agentes/alerts_status.functions.php:78 +#: ../../operation/agentes/alerts_status.functions.php:84 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/agentes/alerts_status.functions.php:115 +#: ../../operation/agentes/alerts_status.functions.php:118 +#: ../../operation/agentes/estado_agente.php:238 +#: ../../operation/agentes/estado_monitores.php:511 +#: ../../operation/agentes/estado_monitores.php:556 +#: ../../operation/agentes/status_monitor.php:394 +#: ../../operation/agentes/status_monitor.php:422 +#: ../../operation/agentes/status_monitor.php:459 +#: ../../operation/agentes/status_monitor.php:538 +#: ../../operation/agentes/status_monitor.php:541 +#: ../../operation/agentes/status_monitor.php:636 +#: ../../operation/events/events.build_table.php:616 +#: ../../operation/events/events.php:889 ../../operation/events/events.php:958 +#: ../../operation/events/events.php:1050 +#: ../../operation/events/events.php:1102 +#: ../../operation/events/events.php:1990 +#: ../../operation/events/events_list.php:813 +#: ../../operation/events/events_list.php:825 +#: ../../operation/events/events_list.php:934 +#: ../../operation/events/events_list.php:946 +#: ../../operation/incidents/list_integriaims_incidents.php:115 +#: ../../operation/incidents/list_integriaims_incidents.php:126 +#: ../../operation/incidents/list_integriaims_incidents.php:143 +#: ../../operation/incidents/list_integriaims_incidents.php:154 +#: ../../operation/snmpconsole/snmp_view.php:525 +#: ../../operation/snmpconsole/snmp_view.php:554 +#: ../../operation/snmpconsole/snmp_view.php:562 +#: ../../operation/snmpconsole/snmp_view.php:847 ../../operation/tree.php:157 +#: ../../operation/tree.php:201 +#: ../../enterprise/dashboard/widgets/events_list.php:72 #: ../../enterprise/dashboard/widgets/tree_view.php:67 -#: ../../enterprise/extensions/backup/main.php:85 -#: ../../enterprise/extensions/ipam/ipam_network.php:305 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:94 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:204 -#: ../../enterprise/godmode/modules/local_components.php:438 -#: ../../enterprise/godmode/modules/local_components.php:448 -#: ../../enterprise/godmode/modules/local_components.php:462 -#: ../../enterprise/godmode/policies/policy_agents.php:565 -#: ../../enterprise/godmode/policies/policy_queue.php:360 -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../enterprise/godmode/policies/policy_queue.php:370 -#: ../../enterprise/godmode/policies/policy_queue.php:427 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:156 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:122 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1511 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1513 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1528 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1782 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1794 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:237 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:147 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:408 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:419 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 -#: ../../enterprise/godmode/reporting/cluster_list.php:122 -#: ../../enterprise/godmode/setup/setup_acl.php:367 -#: ../../enterprise/godmode/setup/setup_acl.php:372 -#: ../../enterprise/godmode/setup/setup_acl.php:377 -#: ../../enterprise/godmode/setup/setup_acl.php:583 -#: ../../enterprise/godmode/setup/setup_acl.php:593 -#: ../../enterprise/godmode/setup/setup_acl.php:605 -#: ../../enterprise/godmode/setup/setup_acl.php:650 -#: ../../enterprise/godmode/setup/setup_acl.php:679 -#: ../../enterprise/include/functions_metaconsole.php:668 -#: ../../enterprise/include/functions_metaconsole.php:669 -#: ../../enterprise/include/functions_metaconsole.php:930 -#: ../../enterprise/meta/advanced/metasetup.visual.php:134 -#: ../../enterprise/meta/advanced/policymanager.queue.php:214 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -#: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:229 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:268 -#: ../../enterprise/meta/include/functions_agents_meta.php:1053 -#: ../../enterprise/meta/include/functions_html_meta.php:51 -#: ../../enterprise/meta/include/functions_users_meta.php:79 -#: ../../enterprise/meta/include/functions_users_meta.php:89 -#: ../../enterprise/meta/include/functions_wizard_meta.php:251 +#: ../../enterprise/dashboard/widgets/tree_view.php:85 +#: ../../enterprise/extensions/backup/main.php:106 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1454 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1478 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:114 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:191 +#: ../../enterprise/godmode/modules/local_components.php:479 +#: ../../enterprise/godmode/modules/local_components.php:505 +#: ../../enterprise/godmode/modules/local_components.php:530 +#: ../../enterprise/godmode/policies/policy_agents.php:699 +#: ../../enterprise/godmode/policies/policy_queue.php:414 +#: ../../enterprise/godmode/policies/policy_queue.php:419 +#: ../../enterprise/godmode/policies/policy_queue.php:430 +#: ../../enterprise/godmode/policies/policy_queue.php:499 +#: ../../enterprise/godmode/reporting/cluster_list.php:138 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1836 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1843 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1868 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2547 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2574 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:185 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:604 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:630 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:143 +#: ../../enterprise/godmode/setup/setup_acl.php:397 +#: ../../enterprise/godmode/setup/setup_acl.php:414 +#: ../../enterprise/godmode/setup/setup_acl.php:431 +#: ../../enterprise/godmode/setup/setup_acl.php:655 +#: ../../enterprise/godmode/setup/setup_acl.php:663 +#: ../../enterprise/godmode/setup/setup_acl.php:674 +#: ../../enterprise/godmode/setup/setup_acl.php:715 +#: ../../enterprise/godmode/setup/setup_acl.php:746 +#: ../../enterprise/include/functions_metaconsole.php:839 +#: ../../enterprise/include/functions_metaconsole.php:840 +#: ../../enterprise/include/functions_metaconsole.php:1188 +#: ../../enterprise/meta/advanced/metasetup.visual.php:150 +#: ../../enterprise/meta/advanced/policymanager.queue.php:212 +#: ../../enterprise/meta/advanced/policymanager.queue.php:217 +#: ../../enterprise/meta/advanced/policymanager.queue.php:228 +#: ../../enterprise/meta/advanced/policymanager.queue.php:300 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:267 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:314 +#: ../../enterprise/meta/include/functions_html_meta.php:75 +#: ../../enterprise/meta/include/functions_users_meta.php:87 +#: ../../enterprise/meta/include/functions_users_meta.php:98 +#: ../../enterprise/meta/include/functions_wizard_meta.php:320 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:208 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:235 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:253 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 #: ../../enterprise/meta/monitoring/wizard/wizard.php:105 -#: ../../enterprise/operation/agentes/agent_inventory.php:69 -#: ../../enterprise/operation/agentes/tag_view.php:90 -#: ../../enterprise/operation/agentes/tag_view.php:109 -#: ../../enterprise/operation/agentes/tag_view.php:137 -#: ../../enterprise/operation/agentes/tag_view.php:155 -#: ../../enterprise/operation/agentes/tag_view.php:199 -#: ../../enterprise/operation/agentes/tag_view.php:201 -#: ../../enterprise/operation/agentes/tag_view.php:265 -#: ../../enterprise/operation/inventory/inventory.php:55 +#: ../../enterprise/operation/agentes/agent_inventory.php:74 +#: ../../enterprise/operation/agentes/tag_view.php:119 +#: ../../enterprise/operation/agentes/tag_view.php:145 +#: ../../enterprise/operation/agentes/tag_view.php:183 +#: ../../enterprise/operation/agentes/tag_view.php:211 +#: ../../enterprise/operation/agentes/tag_view.php:275 +#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../enterprise/operation/agentes/tag_view.php:364 #: ../../enterprise/operation/inventory/inventory.php:57 -#: ../../enterprise/operation/inventory/inventory.php:120 -#: ../../enterprise/operation/inventory/inventory.php:122 -#: ../../enterprise/operation/inventory/inventory.php:177 -#: ../../enterprise/operation/log/log_viewer.php:212 -#: ../../enterprise/operation/log/log_viewer.php:228 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:32 +#: ../../enterprise/operation/inventory/inventory.php:58 +#: ../../enterprise/operation/inventory/inventory.php:134 +#: ../../enterprise/operation/inventory/inventory.php:135 +#: ../../enterprise/operation/inventory/inventory.php:193 +#: ../../enterprise/operation/log/log_viewer.php:442 +#: ../../enterprise/operation/log/log_viewer.php:485 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:33 msgid "All" msgstr "全て" -#: ../../extensions/agents_modules.php:166 -#: ../../extensions/agents_modules.php:168 -#: ../../godmode/agentes/planned_downtime.editor.php:734 -#: ../../godmode/massive/massive_add_action_alerts.php:171 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_delete_action_alerts.php:172 -#: ../../godmode/massive/massive_delete_alerts.php:229 -#: ../../godmode/massive/massive_delete_modules.php:527 -#: ../../godmode/massive/massive_edit_modules.php:369 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1096 -#: ../../enterprise/dashboard/widgets/agent_module.php:91 -#: ../../enterprise/dashboard/widgets/agent_module.php:93 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:228 +#: ../../extensions/agents_modules.php:421 +#: ../../extensions/agents_modules.php:424 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:616 +#: ../../godmode/agentes/planned_downtime.editor.php:954 +#: ../../godmode/massive/massive_add_action_alerts.php:186 +#: ../../godmode/massive/massive_add_alerts.php:236 +#: ../../godmode/massive/massive_delete_action_alerts.php:199 +#: ../../godmode/massive/massive_delete_alerts.php:302 +#: ../../godmode/massive/massive_delete_modules.php:530 +#: ../../godmode/massive/massive_edit_modules.php:500 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1536 +#: ../../enterprise/dashboard/widgets/agent_module.php:126 +#: ../../enterprise/dashboard/widgets/agent_module.php:130 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:234 msgid "Show common modules" msgstr "共通モジュールの表示" -#: ../../extensions/agents_modules.php:167 -#: ../../godmode/agentes/planned_downtime.editor.php:734 -#: ../../godmode/massive/massive_add_action_alerts.php:172 -#: ../../godmode/massive/massive_add_alerts.php:169 -#: ../../godmode/massive/massive_delete_action_alerts.php:173 -#: ../../godmode/massive/massive_delete_alerts.php:229 -#: ../../godmode/massive/massive_delete_modules.php:527 -#: ../../godmode/massive/massive_edit_modules.php:370 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1097 -#: ../../enterprise/dashboard/widgets/agent_module.php:94 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:229 +#: ../../extensions/agents_modules.php:422 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:617 +#: ../../godmode/agentes/planned_downtime.editor.php:955 +#: ../../godmode/massive/massive_add_action_alerts.php:187 +#: ../../godmode/massive/massive_add_alerts.php:237 +#: ../../godmode/massive/massive_delete_action_alerts.php:200 +#: ../../godmode/massive/massive_delete_alerts.php:303 +#: ../../godmode/massive/massive_delete_modules.php:531 +#: ../../godmode/massive/massive_edit_modules.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1537 +#: ../../enterprise/dashboard/widgets/agent_module.php:131 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:235 msgid "Show all modules" msgstr "全モジュール表示" -#: ../../extensions/agents_modules.php:177 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1683 -#: ../../include/functions_visual_map_editor.php:890 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2100 +#: ../../extensions/agents_modules.php:433 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2803 +#: ../../include/functions_visual_map_editor.php:1324 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3105 msgid "Update item" msgstr "アイテム更新" -#: ../../extensions/agents_modules.php:187 -#: ../../include/functions_reports.php:589 -#: ../../include/graphs/functions_pchart.php:1473 +#: ../../extensions/agents_modules.php:450 +#: ../../include/functions_reports.php:776 msgid "Agents/Modules" msgstr "エージェント/モジュール" -#: ../../extensions/agents_modules.php:233 +#: ../../extensions/agents_modules.php:513 msgid "Agent/module view" msgstr "エージェント/モジュール表示" -#: ../../extensions/agents_modules.php:388 -#: ../../include/functions_reporting.php:1773 +#: ../../extensions/agents_modules.php:548 ../../godmode/events/events.php:62 +#: ../../godmode/events/events.php:82 +#: ../../godmode/reporting/reporting_builder.list_items.php:222 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2571 +#: ../../enterprise/meta/event/custom_events.php:69 +#: ../../enterprise/meta/event/custom_events.php:88 +#: ../../enterprise/meta/general/main_header.php:280 +msgid "Filters" +msgstr "フィルタ" + +#: ../../extensions/agents_modules.php:682 +#: ../../include/functions_reporting.php:2326 msgid "There are no agents with modules" msgstr "モジュールが定義されたエージェントがありません。" -#: ../../extensions/agents_modules.php:414 +#: ../../extensions/agents_modules.php:697 msgid "Previous modules" msgstr "前のモジュールへ" -#: ../../extensions/agents_modules.php:453 +#: ../../extensions/agents_modules.php:723 msgid "More modules" msgstr "次のモジュールへ" -#: ../../extensions/agents_modules.php:572 -#: ../../extensions/module_groups.php:296 -#: ../../godmode/snmpconsole/snmp_alert.php:1343 -#: ../../include/functions_reporting_html.php:1447 -#: ../../operation/snmpconsole/snmp_view.php:1047 -#: ../../enterprise/dashboard/widgets/service_map.php:49 -#: ../../enterprise/dashboard/widgets/service_map.php:74 -#: ../../enterprise/operation/services/services.service_map.php:114 -msgid "Legend" -msgstr "凡例" - -#: ../../extensions/agents_modules.php:573 -#: ../../include/functions_reporting_html.php:1448 +#: ../../extensions/agents_modules.php:850 +#: ../../include/functions_reporting_html.php:1729 msgid "Orange cell when the module has fired alerts" msgstr "オレンジのセルは、アラート発生中を示します。" -#: ../../extensions/agents_modules.php:574 -#: ../../include/functions_reporting_html.php:1449 +#: ../../extensions/agents_modules.php:852 +#: ../../include/functions_reporting_html.php:1730 msgid "Red cell when the module has a critical status" msgstr "赤のセルは、障害状態を示します。" -#: ../../extensions/agents_modules.php:575 -#: ../../include/functions_reporting_html.php:1450 +#: ../../extensions/agents_modules.php:855 +#: ../../include/functions_reporting_html.php:1731 msgid "Yellow cell when the module has a warning status" msgstr "黄色のセルは、警告状態を示します。" -#: ../../extensions/agents_modules.php:576 -#: ../../include/functions_reporting_html.php:1451 +#: ../../extensions/agents_modules.php:857 +#: ../../include/functions_reporting_html.php:1732 msgid "Green cell when the module has a normal status" msgstr "緑のセルは、正常状態を示します。" -#: ../../extensions/agents_modules.php:577 -#: ../../include/functions_reporting_html.php:1452 +#: ../../extensions/agents_modules.php:859 +#: ../../include/functions_reporting_html.php:1733 msgid "Grey cell when the module has an unknown status" msgstr "グレーのセルは、不明状態を示します。" -#: ../../extensions/agents_modules.php:578 +#: ../../extensions/agents_modules.php:861 msgid "Cell turns blue when the module is in 'not initialize' status" msgstr "モジュールが未初期化状態のときにセルが青になります。" -#: ../../extensions/agents_modules.php:590 +#: ../../extensions/agents_modules.php:863 +#: ../../extensions/module_groups.php:375 +#: ../../godmode/snmpconsole/snmp_alert.php:1450 +#: ../../include/functions_reporting_html.php:1728 +#: ../../operation/snmpconsole/snmp_view.php:1191 +#: ../../enterprise/dashboard/widgets/service_map.php:61 +#: ../../enterprise/dashboard/widgets/service_map.php:90 +#: ../../enterprise/operation/services/services.service_map.php:160 +msgid "Legend" +msgstr "凡例" + +#: ../../extensions/agents_modules.php:874 msgid "Agents/Modules view" msgstr "エージェント/モジュール表示" -#: ../../extensions/api_checker.php:92 ../../extensions/api_checker.php:228 +#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:252 msgid "API checker" msgstr "API チェッカ" -#: ../../extensions/api_checker.php:99 ../../extensions/users_connected.php:78 -#: ../../godmode/admin_access_logs.php:69 -#: ../../godmode/admin_access_logs.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:564 -#: ../../include/functions_visual_map_editor.php:916 -#: ../../include/functions_reporting_html.php:1910 -#: ../../include/functions_reporting_html.php:2084 -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -#: ../../enterprise/include/functions_reporting_pdf.php:2398 +#: ../../extensions/api_checker.php:123 ../../extensions/users_connected.php:78 +#: ../../godmode/admin_access_logs.php:75 +#: ../../godmode/admin_access_logs.php:76 +#: ../../godmode/reporting/visual_console_builder.elements.php:693 +#: ../../include/functions_visual_map_editor.php:1363 +#: ../../include/functions_reporting_html.php:2328 +#: ../../include/functions_reporting_html.php:2612 +#: ../../operation/network/network_report.php:195 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 +#: ../../enterprise/godmode/servers/HA_cluster.php:122 +#: ../../enterprise/include/class/DeploymentCenter.class.php:714 +#: ../../enterprise/include/class/DeploymentCenter.class.php:761 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1235 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:96 msgid "IP" msgstr "IP アドレス" -#: ../../extensions/api_checker.php:104 -msgid "Pandora Console URL" -msgstr "Pandora コンソール URL" +#: ../../extensions/api_checker.php:128 +#, php-format +msgid "%s Console URL" +msgstr "%s コンソールURL" -#: ../../extensions/api_checker.php:109 +#: ../../extensions/api_checker.php:133 msgid "API Pass" msgstr "API パス" -#: ../../extensions/api_checker.php:114 -#: ../../extensions/users_connected.php:77 ../../general/login_page.php:165 -#: ../../general/login_page.php:194 ../../general/logon_ok.php:224 -#: ../../general/logon_ok.php:420 ../../godmode/admin_access_logs.php:63 -#: ../../godmode/admin_access_logs.php:188 -#: ../../godmode/events/custom_events.php:77 -#: ../../godmode/events/custom_events.php:155 -#: ../../godmode/setup/setup_ehorus.php:73 ../../include/functions.php:2336 -#: ../../include/functions_config.php:372 -#: ../../include/functions_config.php:383 -#: ../../include/functions_events.php:37 -#: ../../include/functions_events.php:3646 -#: ../../include/functions_events.php:4027 -#: ../../include/functions_reporting_html.php:3708 -#: ../../mobile/include/user.class.php:245 -#: ../../mobile/operation/tactical.php:309 -#: ../../operation/events/events.build_table.php:173 -#: ../../operation/events/events.build_table.php:582 -#: ../../operation/search_users.php:68 -#: ../../enterprise/extensions/cron/main.php:246 -#: ../../enterprise/extensions/disabled/check_acls.php:42 -#: ../../enterprise/extensions/disabled/check_acls.php:120 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:167 -#: ../../enterprise/godmode/servers/manage_export_form.php:97 -#: ../../enterprise/godmode/setup/setup_auth.php:613 -#: ../../enterprise/godmode/setup/setup_auth.php:644 -#: ../../enterprise/meta/general/login_page.php:107 -#: ../../enterprise/meta/general/login_page.php:136 -#: ../../enterprise/meta/include/functions_events_meta.php:64 -#: ../../enterprise/meta/include/functions_meta.php:943 -#: ../../enterprise/meta/include/functions_meta.php:996 -#: ../../enterprise/meta/include/functions_meta.php:1049 -#: ../../enterprise/meta/include/functions_wizard_meta.php:402 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1311 +#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:77 +#: ../../general/login_page.php:206 ../../general/login_page.php:248 +#: ../../general/logon_ok.php:245 ../../godmode/admin_access_logs.php:86 +#: ../../godmode/admin_access_logs.php:196 +#: ../../godmode/events/custom_events.php:98 +#: ../../godmode/setup/setup_ehorus.php:77 +#: ../../godmode/setup/setup_integria.php:216 +#: ../../include/class/CredentialStore.class.php:732 +#: ../../include/class/CredentialStore.class.php:1027 +#: ../../include/functions.php:2884 ../../include/functions_config.php:652 +#: ../../include/functions_config.php:672 ../../include/functions_cron.php:454 +#: ../../include/functions_events.php:192 +#: ../../include/functions_events.php:241 +#: ../../include/functions_events.php:6026 +#: ../../include/functions_events.php:6453 +#: ../../include/functions_events.php.orig:190 +#: ../../include/functions_events.php.orig:239 +#: ../../include/functions_events.php.orig:5930 +#: ../../include/functions_events.php.orig:6357 +#: ../../include/functions_reporting_html.php:4643 +#: ../../mobile/include/user.class.php:272 +#: ../../mobile/operation/tactical.php:349 +#: ../../operation/events/events.build_table.php:202 +#: ../../operation/events/events.build_table.php:697 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:125 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:299 +#: ../../operation/search_users.php:60 ../../operation/users/user_edit.php:684 +#: ../../enterprise/extensions/disabled/check_acls.php:47 +#: ../../enterprise/extensions/disabled/check_acls.php:138 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:189 +#: ../../enterprise/godmode/servers/manage_export_form.php:107 +#: ../../enterprise/godmode/setup/setup_auth.php:730 +#: ../../enterprise/godmode/setup/setup_auth.php:762 +#: ../../enterprise/include/class/MySQL.app.php:521 +#: ../../enterprise/include/class/Oracle.app.php:502 +#: ../../enterprise/include/functions_tasklist.php:167 +#: ../../enterprise/meta/general/login_page.php:112 +#: ../../enterprise/meta/general/login_page.php:157 +#: ../../enterprise/meta/include/functions_events_meta.php:70 +#: ../../enterprise/meta/include/functions_meta.php:1165 +#: ../../enterprise/meta/include/functions_meta.php:1214 +#: ../../enterprise/meta/include/functions_meta.php:1263 +#: ../../enterprise/meta/include/functions_wizard_meta.php:516 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1471 msgid "User" msgstr "ユーザ" -#: ../../extensions/api_checker.php:119 ../../general/login_page.php:173 -#: ../../general/login_page.php:201 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:307 -#: ../../godmode/agentes/module_manager_editor_wmi.php:57 -#: ../../godmode/massive/massive_edit_modules.php:554 -#: ../../godmode/modules/manage_network_components_form_wmi.php:50 -#: ../../godmode/setup/setup_ehorus.php:79 -#: ../../godmode/users/configure_user.php:517 -#: ../../include/functions_config.php:374 -#: ../../include/functions_config.php:385 -#: ../../mobile/include/user.class.php:252 -#: ../../enterprise/extensions/vmware/functions.php:416 -#: ../../enterprise/godmode/agentes/inventory_manager.php:191 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:306 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:203 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:326 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:55 -#: ../../enterprise/godmode/servers/manage_export_form.php:101 -#: ../../enterprise/godmode/setup/setup_auth.php:619 -#: ../../enterprise/godmode/setup/setup_auth.php:650 -#: ../../enterprise/include/functions_setup.php:30 -#: ../../enterprise/include/functions_setup.php:59 -#: ../../enterprise/meta/general/login_page.php:115 -#: ../../enterprise/meta/general/login_page.php:144 -#: ../../enterprise/meta/include/functions_meta.php:953 -#: ../../enterprise/meta/include/functions_meta.php:1006 -#: ../../enterprise/meta/include/functions_meta.php:1059 -#: ../../enterprise/meta/include/functions_wizard_meta.php:406 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1315 +#: ../../extensions/api_checker.php:143 ../../general/login_page.php:220 +#: ../../general/login_page.php:261 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:470 +#: ../../godmode/agentes/module_manager_editor_wmi.php:76 +#: ../../godmode/massive/massive_edit_modules.php:836 +#: ../../godmode/modules/manage_network_components_form_wmi.php:49 +#: ../../godmode/setup/setup_ehorus.php:83 +#: ../../godmode/setup/setup_integria.php:222 +#: ../../godmode/users/configure_user.php:703 +#: ../../include/class/CredentialStore.class.php:879 +#: ../../include/class/CredentialStore.class.php:906 +#: ../../include/class/CredentialStore.class.php:1028 +#: ../../include/class/CredentialStore.class.php:1045 +#: ../../include/functions_config.php:656 +#: ../../include/functions_config.php:676 +#: ../../mobile/include/user.class.php:279 +#: ../../operation/users/user_edit.php:690 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:694 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:505 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:247 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 +#: ../../enterprise/godmode/servers/manage_export_form.php:111 +#: ../../enterprise/godmode/setup/setup_auth.php:736 +#: ../../enterprise/godmode/setup/setup_auth.php:768 +#: ../../enterprise/include/class/MySQL.app.php:533 +#: ../../enterprise/include/class/Oracle.app.php:514 +#: ../../enterprise/include/class/VMware.app.php:625 +#: ../../enterprise/include/functions_setup.php:44 +#: ../../enterprise/include/functions_setup.php:84 +#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/meta/general/login_page.php:129 +#: ../../enterprise/meta/general/login_page.php:171 +#: ../../enterprise/meta/include/functions_meta.php:1176 +#: ../../enterprise/meta/include/functions_meta.php:1225 +#: ../../enterprise/meta/include/functions_meta.php:1274 +#: ../../enterprise/meta/include/functions_wizard_meta.php:520 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1475 msgid "Password" msgstr "パスワード" -#: ../../extensions/api_checker.php:127 +#: ../../extensions/api_checker.php:151 msgid "Action (get or set)" msgstr "アクション (get または set)" -#: ../../extensions/api_checker.php:132 ../../extensions/net_tools.php:118 -#: ../../godmode/extensions.php:153 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1919 -#: ../../include/functions_menu.php:595 -#: ../../include/functions_reporting_html.php:1490 -#: ../../include/functions_reporting_html.php:2659 -#: ../../enterprise/dashboard/widgets/top_n.php:128 -#: ../../enterprise/dashboard/widgets/top_n.php:337 -#: ../../enterprise/godmode/policies/policy_queue.php:362 -#: ../../enterprise/godmode/policies/policy_queue.php:396 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:174 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2291 -#: ../../enterprise/include/functions_reporting_csv.php:513 -#: ../../enterprise/include/functions_reporting_pdf.php:884 -#: ../../enterprise/include/functions_reporting_pdf.php:1009 -#: ../../enterprise/meta/advanced/policymanager.queue.php:216 -#: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/meta/include/functions_autoprovision.php:539 +#: ../../extensions/api_checker.php:156 ../../extensions/net_tools.php:345 +#: ../../godmode/extensions.php:146 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3301 +#: ../../include/functions_menu.php:605 +#: ../../include/functions_reporting_html.php:1784 +#: ../../include/functions_reporting_html.php:3618 +#: ../../enterprise/dashboard/widgets/top_n.php:153 +#: ../../enterprise/dashboard/widgets/top_n.php:393 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:357 +#: ../../enterprise/godmode/policies/policy_queue.php:416 +#: ../../enterprise/godmode/policies/policy_queue.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:223 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3383 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:140 +#: ../../enterprise/include/functions_reporting_csv.php:865 +#: ../../enterprise/meta/advanced/policymanager.queue.php:214 +#: ../../enterprise/meta/advanced/policymanager.queue.php:259 +#: ../../enterprise/meta/include/functions_autoprovision.php:613 msgid "Operation" msgstr "操作" -#: ../../extensions/api_checker.php:137 -#: ../../godmode/agentes/agent_incidents.php:85 -#: ../../godmode/agentes/agent_manager.php:163 -#: ../../godmode/agentes/fields_manager.php:96 -#: ../../godmode/agentes/module_manager_editor_common.php:156 -#: ../../godmode/alerts/alert_commands.php:349 -#: ../../godmode/groups/group_list.php:374 -#: ../../godmode/groups/modu_group_list.php:189 -#: ../../godmode/modules/module_list.php:58 ../../godmode/setup/os.list.php:33 -#: ../../include/functions_events.php:3610 -#: ../../operation/events/events.build_table.php:133 -#: ../../operation/incidents/incident.php:335 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:71 +#: ../../extensions/api_checker.php:161 +#: ../../godmode/agentes/agent_incidents.php:88 +#: ../../godmode/agentes/agent_manager.php:214 +#: ../../godmode/agentes/fields_manager.php:118 +#: ../../godmode/agentes/module_manager_editor_common.php:214 +#: ../../godmode/alerts/alert_commands.php:401 +#: ../../godmode/groups/group_list.php:576 +#: ../../godmode/groups/modu_group_list.php:234 +#: ../../godmode/modules/module_list.php:58 ../../godmode/setup/os.list.php:31 +#: ../../include/functions_events.php:5984 +#: ../../include/functions_events.php.orig:5888 +#: ../../operation/events/events.build_table.php:146 +#: ../../operation/incidents/incident.php:419 +#: ../../operation/incidents/list_integriaims_incidents.php:254 +#: ../../enterprise/extensions/ipam/ipam_excel.php:104 +#: ../../enterprise/extensions/ipam/ipam_excel.php:174 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:90 msgid "ID" msgstr "ID" -#: ../../extensions/api_checker.php:142 +#: ../../extensions/api_checker.php:166 msgid "ID 2" msgstr "ID 2" -#: ../../extensions/api_checker.php:147 +#: ../../extensions/api_checker.php:171 msgid "Return Type" msgstr "Return Type" -#: ../../extensions/api_checker.php:152 -#: ../../godmode/groups/configure_group.php:190 -#: ../../godmode/snmpconsole/snmp_alert.php:33 -#: ../../godmode/users/configure_user.php:593 -#: ../../include/functions_graph.php:3073 -#: ../../include/functions_graph.php:3227 -#: ../../include/functions_graph.php:3268 -#: ../../include/functions_graph.php:3309 -#: ../../include/functions_graph.php:3365 -#: ../../include/functions_graph.php:3421 -#: ../../include/functions_graph.php:3475 -#: ../../include/functions_graph.php:3653 -#: ../../include/functions_graph.php:3798 -#: ../../include/functions_graph.php:3848 -#: ../../include/functions_graph.php:3948 -#: ../../include/functions_graph.php:3949 -#: ../../include/functions_graph.php:3952 -#: ../../include/functions_graph.php:3953 -#: ../../include/functions_graph.php:5206 -#: ../../operation/gis_maps/render_view.php:152 -#: ../../operation/snmpconsole/snmp_statistics.php:172 -#: ../../operation/snmpconsole/snmp_statistics.php:219 -#: ../../operation/snmpconsole/snmp_view.php:496 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:944 -#: ../../operation/users/user_edit.php:284 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 -#: ../../enterprise/godmode/setup/setup_acl.php:366 +#: ../../extensions/api_checker.php:176 +#: ../../godmode/groups/configure_group.php:204 +#: ../../godmode/snmpconsole/snmp_alert.php:31 +#: ../../godmode/users/configure_user.php:846 +#: ../../include/functions_graph.php:2894 +#: ../../include/functions_graph.php:2968 +#: ../../include/functions_graph.php:3043 +#: ../../include/functions_graph.php:3117 +#: ../../include/functions_graph.php:3194 +#: ../../include/functions_graph.php:3403 +#: ../../include/functions_graph.php:3511 +#: ../../include/functions_graph.php:3576 +#: ../../include/functions_graph.php:3699 +#: ../../include/functions_graph.php:3700 +#: ../../include/functions_graph.php:3703 +#: ../../include/functions_graph.php:3708 +#: ../../include/functions_graph.php:3709 +#: ../../include/functions_graph.php:3712 +#: ../../include/functions_graph.php:4624 +#: ../../operation/gis_maps/render_view.php:154 +#: ../../operation/snmpconsole/snmp_statistics.php:180 +#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_view.php:611 +#: ../../operation/snmpconsole/snmp_view.php:1036 +#: ../../operation/snmpconsole/snmp_view.php:1065 +#: ../../operation/users/user_edit.php:344 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 +#: ../../enterprise/godmode/setup/setup_acl.php:385 +#: ../../enterprise/godmode/setup/setup_acl.php:389 +#: ../../enterprise/include/class/Aws.cloud.php:284 msgid "Other" msgstr "その他" -#: ../../extensions/api_checker.php:157 +#: ../../extensions/api_checker.php:181 msgid "Other Mode" msgstr "Other Mode" -#: ../../extensions/api_checker.php:165 +#: ../../extensions/api_checker.php:189 msgid "Raw URL" msgstr "詳細 URL" -#: ../../extensions/api_checker.php:171 -#: ../../enterprise/meta/include/functions_wizard_meta.php:833 -#: ../../enterprise/meta/include/functions_wizard_meta.php:918 +#: ../../extensions/api_checker.php:195 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1144 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1271 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1281 +#: ../../enterprise/meta/include/functions_wizard_meta.php:968 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1054 msgid "Credentials" msgstr "認証情報" -#: ../../extensions/api_checker.php:176 +#: ../../extensions/api_checker.php:200 msgid "Call parameters" msgstr "呼び出しパラメータ" -#: ../../extensions/api_checker.php:181 ../../extensions/api_checker.php:194 +#: ../../extensions/api_checker.php:205 ../../extensions/api_checker.php:217 msgid "Call" msgstr "呼び出し" -#: ../../extensions/api_checker.php:188 +#: ../../extensions/api_checker.php:211 msgid "Custom URL" msgstr "カスタムURL" -#: ../../extensions/api_checker.php:200 ../../extensions/api_checker.php:207 -#: ../../include/functions_db.php:1581 +#: ../../extensions/api_checker.php:223 ../../extensions/api_checker.php:230 +#: ../../include/functions_db.php:1766 +#: ../../include/functions_reporting_html.php:3494 msgid "Result" msgstr "結果" -#: ../../extensions/api_checker.php:201 -#: ../../godmode/events/event_responses.editor.php:115 -#: ../../godmode/events/event_responses.editor.php:121 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1304 -#: ../../operation/gis_maps/ajax.php:293 -#: ../../enterprise/dashboard/widgets/url.php:25 -#: ../../enterprise/extensions/vmware/functions.php:468 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1637 +#: ../../extensions/api_checker.php:224 +#: ../../godmode/events/event_responses.editor.php:138 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1892 +#: ../../operation/gis_maps/ajax.php:316 +#: ../../enterprise/dashboard/widgets/url.php:27 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2069 +#: ../../enterprise/include/functions_reporting_csv.php:2165 +#: ../../enterprise/include/functions_reporting_csv.php:2179 msgid "URL" msgstr "URL" -#: ../../extensions/api_checker.php:203 ../../extensions/api_checker.php:220 +#: ../../extensions/api_checker.php:226 ../../extensions/api_checker.php:243 msgid "Show URL" msgstr "URL を表示" -#: ../../extensions/api_checker.php:216 +#: ../../extensions/api_checker.php:239 msgid "Hide URL" msgstr "URL を隠す" -#: ../../extensions/db_status.php:41 ../../extensions/db_status.php:348 -#: ../../godmode/menu.php:341 +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 +#: ../../godmode/menu.php:388 msgid "DB Schema check" msgstr "DBスキーマチェック" -#: ../../extensions/db_status.php:54 +#: ../../extensions/db_status.php:43 msgid "" "This extension checks the DB is correct. Because sometimes the old DB from a " "migration has not some fields in the tables or the data is changed." @@ -1912,31 +2081,31 @@ msgstr "" "この拡張は、DB " "が正しいかどうか確認します。たまに、古いDBからのマイグレーションでテーブルのフィールドが不足していたりデータが変更されていなかったりするためです。" -#: ../../extensions/db_status.php:56 +#: ../../extensions/db_status.php:46 msgid "At the moment the checks is for MySQL/MariaDB." msgstr "現時点では、MySQL/MariaDB 用です。" -#: ../../extensions/db_status.php:61 +#: ../../extensions/db_status.php:52 msgid "DB settings" msgstr "DB 設定" -#: ../../extensions/db_status.php:65 +#: ../../extensions/db_status.php:56 msgid "DB User with privileges" msgstr "権限のある DB ユーザ" -#: ../../extensions/db_status.php:67 +#: ../../extensions/db_status.php:58 msgid "DB Password for this user" msgstr "この DB ユーザのパスワード" -#: ../../extensions/db_status.php:71 +#: ../../extensions/db_status.php:62 msgid "DB Hostname" msgstr "DB ホスト名" -#: ../../extensions/db_status.php:73 +#: ../../extensions/db_status.php:64 msgid "DB Name (temporal for testing)" msgstr "DB 名 (一時的なテスト用)" -#: ../../extensions/db_status.php:81 +#: ../../extensions/db_status.php:72 msgid "Execute Test" msgstr "テスト実行" @@ -1944,1210 +2113,1382 @@ msgstr "テスト実行" msgid "Unsuccessful connected to the DB" msgstr "DB 接続に失敗しました" -#: ../../extensions/db_status.php:115 +#: ../../extensions/db_status.php:119 msgid "Unsuccessful created the testing DB" msgstr "テスト DB の作成に失敗しました" -#: ../../extensions/db_status.php:126 +#: ../../extensions/db_status.php:135 msgid "Unsuccessful installed tables into the testing DB" msgstr "テスト DB へのテーブル設定に失敗しました" -#: ../../extensions/db_status.php:184 -msgid "Successful the DB Pandora has all tables" -msgstr "DB Pandora にはすべてのテーブルが揃っています" - -#: ../../extensions/db_status.php:185 +#: ../../extensions/db_status.php:219 #, php-format -msgid "Pandora DB could not retrieve all tables. The missing tables are (%s)" -msgstr "Pandora DB はすべてのテーブルを確認できませんでした。不足テーブルは (%s) です。" +msgid "Success! %s DB contains all tables" +msgstr "成功! %s DB はすべてのテーブルを含んでいます" -#: ../../extensions/db_status.php:195 ../../extensions/db_status.php:251 +#: ../../extensions/db_status.php:221 +#, php-format +msgid "%s DB could not retrieve all tables. The missing tables are (%s)" +msgstr "%s DB はすべてのテーブルが揃っていません。不足テーブルは (%s) です。" + +#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 +#: ../../extensions/db_status.php:349 msgid "You can execute this SQL query for to fix." msgstr "修正するには、この SQL クエリを実行します。" -#: ../../extensions/db_status.php:248 +#: ../../extensions/db_status.php:343 #, php-format msgid "Unsuccessful the table %s has not the field %s" msgstr "テーブル %s に、フィールド %s がありません。" -#: ../../extensions/db_status.php:319 +#: ../../extensions/db_status.php:408 msgid "Successful all the tables have the correct fields" msgstr "すべてのテーブルにおいてフィールドは正しい状態です" -#: ../../extensions/dbmanager.php:134 +#: ../../extensions/dbmanager.php:99 msgid "Database interface" msgstr "DBインタフェース" -#: ../../extensions/dbmanager.php:149 +#: ../../extensions/dbmanager.php:103 +#, php-format +msgid "" +"This is an advanced extension to interface with %s database directly from " +"WEB console\n" +"\t\tusing native SQL sentences. Please note that you can damage your " +"%s installation\n" +"\t\tif you don't know exactly what are you are doing,\n" +"\t\tthis means that you can severily damage your setup using this " +"extension.\n" +"\t\tThis extension is intended to be used only by experienced users\n" +"\t\twith a depth knowledge of %s internals." +msgstr "" +"これは、ウェブコンソールから直接 %s データベースに SQL を使ってアクセスするための高度な拡張機能です。\n" +"\t\t何をやっているかを正しく把握していない場合、%s のインストールを\n" +"\t\t破壊する可能性があることに注意してください。\n" +"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性があります。\n" +"\t\tこの拡張は、%s の内部について深い理解を持っているユーザにのみ\n" +"\t\t利用いただくことを想定しています。" + +#: ../../extensions/dbmanager.php:124 msgid "Execute SQL" msgstr "SQLの実行" -#: ../../extensions/dbmanager.php:196 ../../godmode/menu.php:341 +#: ../../extensions/dbmanager.php:173 ../../godmode/menu.php:388 msgid "DB interface" msgstr "DBインタフェース" -#: ../../extensions/disabled/matrix_events.php:29 +#: ../../extensions/disabled/matrix_events.php:27 msgid "Matrix events" msgstr "Matrix イベント" -#: ../../extensions/extension_uploader.php:28 +#: ../../extensions/extension_uploader.php:29 msgid "Uploader extension" msgstr "拡張アップローダ" -#: ../../extensions/extension_uploader.php:64 +#: ../../extensions/extension_uploader.php:69 msgid "Success to upload extension" msgstr "拡張をアップロードしました" -#: ../../extensions/extension_uploader.php:65 +#: ../../extensions/extension_uploader.php:70 msgid "Fail to upload extension" msgstr "拡張のアップロードに失敗しました" -#: ../../extensions/extension_uploader.php:73 +#: ../../extensions/extension_uploader.php:79 msgid "Upload extension" msgstr "拡張のアップロード" -#: ../../extensions/extension_uploader.php:75 +#: ../../extensions/extension_uploader.php:80 msgid "Upload the extension as a zip file." msgstr "zipファイルで拡張をアップロードしてください。" -#: ../../extensions/extension_uploader.php:77 +#: ../../extensions/extension_uploader.php:82 msgid "Upload enterprise extension" msgstr "Enterprise 拡張のアップロード" -#: ../../extensions/extension_uploader.php:85 -#: ../../extensions/plugin_registration.php:43 -#: ../../extensions/resource_registration.php:876 -#: ../../godmode/alerts/alert_special_days.php:260 -#: ../../operation/incidents/incident_detail.php:507 -#: ../../enterprise/include/functions_policies.php:4289 +#: ../../extensions/extension_uploader.php:89 +#: ../../extensions/plugin_registration.php:45 +#: ../../extensions/resource_registration.php:1052 +#: ../../godmode/alerts/alert_special_days.php:290 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 +#: ../../operation/incidents/incident_detail.php:527 +#: ../../enterprise/include/functions_policies.php:4392 msgid "Upload" msgstr "アップロード" -#: ../../extensions/extension_uploader.php:90 +#: ../../extensions/extension_uploader.php:95 msgid "Extension uploader" msgstr "拡張アップローダ" -#: ../../extensions/files_repo/files_repo_form.php:65 -#: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../include/functions_maps.php:40 -#: ../../include/functions_networkmap.php:1669 -#: ../../mobile/include/functions_web.php:26 -#: ../../mobile/operation/groups.php:66 ../../mobile/operation/home.php:50 -#: ../../operation/agentes/pandora_networkmap.php:567 -#: ../../operation/tree.php:61 -#: ../../enterprise/dashboard/widgets/events_list.php:57 -#: ../../enterprise/dashboard/widgets/groups_status.php:28 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:35 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:35 -#: ../../enterprise/dashboard/widgets/tree_view.php:36 -#: ../../enterprise/godmode/policies/policy_agents.php:435 -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 -#: ../../enterprise/meta/advanced/synchronizing.group.php:162 +#: ../../extensions/files_repo/files_repo_form.php:55 +#: ../../extensions/module_groups.php:298 +#: ../../godmode/reporting/visual_console_builder.wizard.php:382 +#: ../../include/functions_networkmap.php:1283 +#: ../../include/functions_maps.php:46 +#: ../../mobile/include/functions_web.php:25 +#: ../../mobile/operation/groups.php:77 ../../mobile/operation/home.php:57 +#: ../../operation/agentes/pandora_networkmap.php:698 +#: ../../operation/tree.php:65 +#: ../../enterprise/dashboard/widgets/events_list.php:83 +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:45 +#: ../../enterprise/dashboard/widgets/groups_status.php:31 +#: ../../enterprise/dashboard/widgets/tree_view.php:39 +#: ../../enterprise/dashboard/widgets/system_group_status.php:30 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:45 +#: ../../enterprise/godmode/policies/policy_agents.php:554 +#: ../../enterprise/godmode/setup/setup_auth.php:225 +#: ../../enterprise/godmode/setup/setup_auth.php:978 +#: ../../enterprise/meta/advanced/synchronizing.group.php:188 msgid "Groups" msgstr "グループ" -#: ../../extensions/files_repo/files_repo_form.php:72 -#: ../../extensions/files_repo/files_repo_list.php:59 -#: ../../godmode/agentes/agent_manager.php:289 -#: ../../godmode/agentes/agent_template.php:230 -#: ../../godmode/agentes/modificar_agente.php:477 -#: ../../godmode/agentes/module_manager.php:566 -#: ../../godmode/agentes/module_manager_editor_common.php:355 -#: ../../godmode/agentes/planned_downtime.editor.php:497 -#: ../../godmode/agentes/planned_downtime.list.php:392 -#: ../../godmode/alerts/alert_commands.php:350 -#: ../../godmode/alerts/alert_templates.php:47 -#: ../../godmode/alerts/configure_alert_command.php:155 -#: ../../godmode/alerts/configure_alert_special_days.php:90 -#: ../../godmode/alerts/configure_alert_template.php:766 -#: ../../godmode/events/event_responses.editor.php:88 -#: ../../godmode/events/event_responses.list.php:55 -#: ../../godmode/groups/configure_group.php:182 -#: ../../godmode/groups/group_list.php:377 -#: ../../godmode/massive/massive_edit_agents.php:376 -#: ../../godmode/massive/massive_edit_modules.php:479 -#: ../../godmode/massive/massive_edit_plugins.php:451 -#: ../../godmode/modules/manage_network_components.php:567 -#: ../../godmode/modules/manage_network_components_form.php:263 -#: ../../godmode/modules/manage_network_templates.php:191 -#: ../../godmode/modules/manage_network_templates_form.php:150 -#: ../../godmode/modules/manage_network_templates_form.php:201 +#: ../../extensions/files_repo/files_repo_form.php:62 +#: ../../extensions/files_repo/files_repo_list.php:54 +#: ../../godmode/agentes/agent_manager.php:401 +#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/modificar_agente.php:492 +#: ../../godmode/agentes/module_manager.php:649 +#: ../../godmode/agentes/module_manager_editor_common.php:696 +#: ../../godmode/agentes/planned_downtime.editor.php:663 +#: ../../godmode/agentes/planned_downtime.list.php:399 +#: ../../godmode/alerts/alert_commands.php:403 +#: ../../godmode/alerts/alert_templates.php:46 +#: ../../godmode/alerts/configure_alert_command.php:194 +#: ../../godmode/alerts/configure_alert_special_days.php:92 +#: ../../godmode/alerts/configure_alert_template.php:930 +#: ../../godmode/events/event_responses.editor.php:93 +#: ../../godmode/events/event_responses.list.php:51 +#: ../../godmode/groups/configure_group.php:196 +#: ../../godmode/groups/group_list.php:586 +#: ../../godmode/massive/massive_edit_agents.php:598 +#: ../../godmode/massive/massive_edit_modules.php:671 +#: ../../godmode/massive/massive_edit_plugins.php:506 +#: ../../godmode/modules/manage_network_components.php:672 +#: ../../godmode/modules/manage_network_components_form.php:296 +#: ../../godmode/modules/manage_network_templates.php:228 +#: ../../godmode/modules/manage_network_templates_form.php:160 +#: ../../godmode/modules/manage_network_templates_form.php:222 #: ../../godmode/modules/module_list.php:60 -#: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/reporting/create_container.php:238 -#: ../../godmode/reporting/graph_builder.main.php:134 -#: ../../godmode/reporting/graphs.php:156 -#: ../../godmode/reporting/reporting_builder.item_editor.php:700 -#: ../../godmode/reporting/reporting_builder.list_items.php:306 -#: ../../godmode/reporting/reporting_builder.main.php:121 -#: ../../godmode/reporting/reporting_builder.php:567 -#: ../../godmode/servers/modificar_server.php:57 -#: ../../godmode/servers/plugin.php:312 ../../godmode/servers/plugin.php:444 -#: ../../godmode/servers/recon_script.php:107 -#: ../../godmode/servers/recon_script.php:154 -#: ../../godmode/servers/recon_script.php:349 -#: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:35 -#: ../../godmode/setup/snmp_wizard.php:40 -#: ../../godmode/snmpconsole/snmp_alert.php:627 -#: ../../godmode/snmpconsole/snmp_alert.php:1163 -#: ../../godmode/snmpconsole/snmp_filters.php:149 -#: ../../godmode/snmpconsole/snmp_filters.php:224 -#: ../../godmode/tag/edit_tag.php:177 ../../godmode/tag/tag.php:156 -#: ../../godmode/tag/tag.php:200 ../../godmode/users/user_list.php:274 -#: ../../include/ajax/module.php:780 ../../include/functions_treeview.php:129 -#: ../../include/functions_treeview.php:593 -#: ../../include/functions_container.php:130 -#: ../../include/functions_events.php:1802 -#: ../../include/functions_snmp_browser.php:461 -#: ../../include/functions_reporting_html.php:123 -#: ../../include/functions_reporting_html.php:2085 -#: ../../include/functions_reporting_html.php:2118 -#: ../../include/functions_reporting_html.php:3219 -#: ../../include/functions_reporting_html.php:4099 -#: ../../mobile/operation/tactical.php:312 -#: ../../operation/agentes/custom_fields.php:64 -#: ../../operation/agentes/estado_agente.php:540 -#: ../../operation/agentes/estado_generalagente.php:200 -#: ../../operation/agentes/gis_view.php:203 -#: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../operation/events/events.php:91 ../../operation/gis_maps/ajax.php:302 -#: ../../operation/incidents/incident_detail.php:454 -#: ../../operation/incidents/incident_detail.php:506 -#: ../../operation/reporting/custom_reporting.php:39 -#: ../../operation/reporting/graph_viewer.php:341 -#: ../../operation/search_graphs.php:34 ../../operation/search_reports.php:39 -#: ../../operation/search_users.php:53 -#: ../../enterprise/extensions/backup/main.php:98 -#: ../../enterprise/extensions/backup/main.php:213 -#: ../../enterprise/extensions/cron/functions.php:66 -#: ../../enterprise/extensions/ipam/ipam_editor.php:85 -#: ../../enterprise/extensions/ipam/ipam_list.php:160 -#: ../../enterprise/extensions/ipam/ipam_network.php:143 -#: ../../enterprise/godmode/agentes/collection_manager.php:107 -#: ../../enterprise/godmode/agentes/collection_manager.php:165 -#: ../../enterprise/godmode/agentes/collections.php:234 -#: ../../enterprise/godmode/agentes/inventory_manager.php:234 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:153 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:109 -#: ../../enterprise/godmode/alerts/alert_events.php:501 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:241 -#: ../../enterprise/godmode/modules/configure_local_component.php:305 -#: ../../enterprise/godmode/modules/configure_local_component.php:443 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:80 -#: ../../enterprise/godmode/policies/configure_policy.php:75 -#: ../../enterprise/godmode/policies/policy_collections.php:123 -#: ../../enterprise/godmode/policies/policy_collections.php:194 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:243 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:163 -#: ../../enterprise/godmode/reporting/graph_template_list.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:123 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1293 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:270 -#: ../../enterprise/godmode/reporting/cluster_list.php:158 -#: ../../enterprise/godmode/services/services.elements.php:384 -#: ../../enterprise/godmode/services/services.service.php:287 -#: ../../enterprise/godmode/setup/edit_skin.php:231 -#: ../../enterprise/godmode/setup/setup_skins.php:119 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:322 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:78 -#: ../../enterprise/include/functions_netflow_pdf.php:166 -#: ../../enterprise/include/functions_reporting.php:4977 -#: ../../enterprise/include/functions_reporting_csv.php:266 -#: ../../enterprise/include/functions_reporting_csv.php:269 -#: ../../enterprise/include/functions_reporting_csv.php:353 -#: ../../enterprise/include/functions_reporting_csv.php:355 -#: ../../enterprise/include/functions_reporting_csv.php:385 -#: ../../enterprise/include/functions_reporting_csv.php:387 -#: ../../enterprise/include/functions_reporting_csv.php:411 -#: ../../enterprise/include/functions_reporting_csv.php:413 -#: ../../enterprise/include/functions_reporting_csv.php:438 -#: ../../enterprise/include/functions_reporting_csv.php:440 -#: ../../enterprise/include/functions_reporting_csv.php:464 -#: ../../enterprise/include/functions_reporting_csv.php:466 -#: ../../enterprise/include/functions_reporting_csv.php:504 -#: ../../enterprise/include/functions_reporting_csv.php:506 -#: ../../enterprise/include/functions_reporting_csv.php:563 -#: ../../enterprise/include/functions_reporting_csv.php:565 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:599 -#: ../../enterprise/include/functions_reporting_csv.php:601 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:636 -#: ../../enterprise/include/functions_reporting_csv.php:638 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../enterprise/include/functions_reporting_csv.php:675 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:708 -#: ../../enterprise/include/functions_reporting_csv.php:710 -#: ../../enterprise/include/functions_reporting_csv.php:743 -#: ../../enterprise/include/functions_reporting_csv.php:745 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:780 -#: ../../enterprise/include/functions_reporting_csv.php:782 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:817 -#: ../../enterprise/include/functions_reporting_csv.php:819 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:853 -#: ../../enterprise/include/functions_reporting_csv.php:855 -#: ../../enterprise/include/functions_reporting_csv.php:912 -#: ../../enterprise/include/functions_reporting_csv.php:914 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:949 -#: ../../enterprise/include/functions_reporting_csv.php:951 -#: ../../enterprise/include/functions_reporting_csv.php:953 -#: ../../enterprise/include/functions_reporting_csv.php:986 -#: ../../enterprise/include/functions_reporting_csv.php:988 -#: ../../enterprise/include/functions_reporting_csv.php:1028 -#: ../../enterprise/include/functions_reporting_csv.php:1030 -#: ../../enterprise/include/functions_reporting_csv.php:1151 -#: ../../enterprise/include/functions_reporting_csv.php:1264 -#: ../../enterprise/include/functions_reporting_csv.php:1411 -#: ../../enterprise/include/functions_reporting_csv.php:1476 -#: ../../enterprise/include/functions_reporting_csv.php:1616 -#: ../../enterprise/include/functions_reporting_csv.php:1620 -#: ../../enterprise/include/functions_reporting_pdf.php:2256 -#: ../../enterprise/include/functions_reporting_pdf.php:2399 -#: ../../enterprise/include/functions_reporting_pdf.php:2447 -#: ../../enterprise/include/functions_reporting_pdf.php:2502 -#: ../../enterprise/include/functions_services.php:1503 -#: ../../enterprise/include/functions_update_manager.php:172 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:102 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1113 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1393 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1658 -#: ../../enterprise/meta/include/functions_wizard_meta.php:158 -#: ../../enterprise/meta/include/functions_wizard_meta.php:369 -#: ../../enterprise/meta/include/functions_wizard_meta.php:469 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1005 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1302 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1419 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1519 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1637 -#: ../../enterprise/meta/include/functions_autoprovision.php:383 -#: ../../enterprise/mobile/include/enterprise.class.php:80 -#: ../../enterprise/operation/agentes/collection_view.php:65 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:269 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:358 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:78 -#: ../../enterprise/operation/agentes/policy_view.php:49 -#: ../../enterprise/operation/agentes/tag_view.php:463 -#: ../../enterprise/operation/agentes/transactional_map.php:149 -#: ../../enterprise/operation/agentes/ver_agente.php:58 -#: ../../enterprise/operation/services/services.list.php:331 -#: ../../enterprise/operation/services/services.service.php:130 +#: ../../godmode/netflow/nf_item_list.php:177 +#: ../../godmode/reporting/create_container.php:227 +#: ../../godmode/reporting/graph_builder.main.php:125 +#: ../../godmode/reporting/graphs.php:264 +#: ../../godmode/reporting/reporting_builder.item_editor.php:900 +#: ../../godmode/reporting/reporting_builder.main.php:188 +#: ../../godmode/reporting/reporting_builder.php:792 +#: ../../godmode/servers/modificar_server.php:64 +#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:478 +#: ../../godmode/setup/os.builder.php:34 ../../godmode/setup/os.list.php:33 +#: ../../godmode/setup/setup_integria.php:274 +#: ../../godmode/setup/setup_integria.php:397 +#: ../../godmode/setup/snmp_wizard.php:41 +#: ../../godmode/snmpconsole/snmp_alert.php:748 +#: ../../godmode/snmpconsole/snmp_alert.php:1268 +#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/snmpconsole/snmp_filters.php:258 +#: ../../godmode/tag/edit_tag.php:176 ../../godmode/tag/tag.php:175 +#: ../../godmode/tag/tag.php:225 ../../godmode/users/user_list.php:337 +#: ../../include/ajax/events_extended.php:91 ../../include/ajax/module.php:837 +#: ../../include/class/ManageNetScanScripts.class.php:397 +#: ../../include/class/ManageNetScanScripts.class.php:556 +#: ../../include/class/ManageNetScanScripts.class.php:605 +#: ../../include/functions_container.php:148 +#: ../../include/functions_snmp_browser.php:515 +#: ../../include/functions_events.php:3586 +#: ../../include/functions_events.php.orig:3492 +#: ../../include/functions_treeview.php:128 +#: ../../include/functions_treeview.php:617 +#: ../../include/functions_reporting_html.php:133 +#: ../../include/functions_reporting_html.php:2613 +#: ../../include/functions_reporting_html.php:2664 +#: ../../include/functions_reporting_html.php:4138 +#: ../../include/functions_reporting_html.php:5129 +#: ../../mobile/operation/tactical.php:352 +#: ../../operation/agentes/custom_fields.php:69 +#: ../../operation/agentes/estado_agente.php:698 +#: ../../operation/agentes/estado_generalagente.php:216 +#: ../../operation/agentes/gis_view.php:219 +#: ../../operation/agentes/pandora_networkmap.editor.php:291 +#: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 +#: ../../operation/incidents/configure_integriaims_incident.php:296 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:256 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:298 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:311 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:443 +#: ../../operation/incidents/incident_detail.php:476 +#: ../../operation/incidents/incident_detail.php:526 +#: ../../operation/reporting/custom_reporting.php:35 +#: ../../operation/reporting/graph_viewer.php:374 +#: ../../operation/search_graphs.php:30 ../../operation/search_policies.php:35 +#: ../../operation/search_reports.php:35 ../../operation/search_users.php:39 +#: ../../enterprise/extensions/backup/main.php:125 +#: ../../enterprise/extensions/backup/main.php:252 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:161 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1222 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1678 +#: ../../enterprise/extensions/ipam/ipam_editor.php:133 +#: ../../enterprise/extensions/ipam/ipam_excel.php:106 +#: ../../enterprise/extensions/ipam/ipam_excel.php:176 +#: ../../enterprise/extensions/ipam/ipam_list.php:136 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:319 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:371 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:42 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:223 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:271 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:42 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:410 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:330 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:82 +#: ../../enterprise/godmode/agentes/collection_manager.php:117 +#: ../../enterprise/godmode/agentes/collection_manager.php:203 +#: ../../enterprise/godmode/agentes/collections.php:324 +#: ../../enterprise/godmode/agentes/inventory_manager.php:218 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:326 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:134 +#: ../../enterprise/godmode/alerts/alert_events.php:601 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:522 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:282 +#: ../../enterprise/godmode/modules/configure_local_component.php:449 +#: ../../enterprise/godmode/modules/configure_local_component.php:610 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:370 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:101 +#: ../../enterprise/godmode/policies/configure_policy.php:93 +#: ../../enterprise/godmode/policies/policy_collections.php:151 +#: ../../enterprise/godmode/policies/policy_collections.php:246 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:254 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:303 +#: ../../enterprise/godmode/reporting/cluster_list.php:188 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:167 +#: ../../enterprise/godmode/reporting/graph_template_list.php:147 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:373 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:157 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1536 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:314 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:504 +#: ../../enterprise/godmode/services/services.elements.php:731 +#: ../../enterprise/godmode/services/services.service.php:388 +#: ../../enterprise/godmode/setup/edit_skin.php:256 +#: ../../enterprise/godmode/setup/setup_skins.php:121 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:342 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:698 +#: ../../enterprise/include/functions_cron.php:261 +#: ../../enterprise/include/functions_services.php:2468 +#: ../../enterprise/include/functions_update_manager.php:209 +#: ../../enterprise/include/functions_reporting_csv.php:454 +#: ../../enterprise/include/functions_reporting_csv.php:457 +#: ../../enterprise/include/functions_reporting_csv.php:704 +#: ../../enterprise/include/functions_reporting_csv.php:706 +#: ../../enterprise/include/functions_reporting_csv.php:733 +#: ../../enterprise/include/functions_reporting_csv.php:735 +#: ../../enterprise/include/functions_reporting_csv.php:764 +#: ../../enterprise/include/functions_reporting_csv.php:766 +#: ../../enterprise/include/functions_reporting_csv.php:796 +#: ../../enterprise/include/functions_reporting_csv.php:798 +#: ../../enterprise/include/functions_reporting_csv.php:833 +#: ../../enterprise/include/functions_reporting_csv.php:835 +#: ../../enterprise/include/functions_reporting_csv.php:856 +#: ../../enterprise/include/functions_reporting_csv.php:858 +#: ../../enterprise/include/functions_reporting_csv.php:908 +#: ../../enterprise/include/functions_reporting_csv.php:910 +#: ../../enterprise/include/functions_reporting_csv.php:946 +#: ../../enterprise/include/functions_reporting_csv.php:948 +#: ../../enterprise/include/functions_reporting_csv.php:972 +#: ../../enterprise/include/functions_reporting_csv.php:974 +#: ../../enterprise/include/functions_reporting_csv.php:977 +#: ../../enterprise/include/functions_reporting_csv.php:1003 +#: ../../enterprise/include/functions_reporting_csv.php:1005 +#: ../../enterprise/include/functions_reporting_csv.php:1008 +#: ../../enterprise/include/functions_reporting_csv.php:1058 +#: ../../enterprise/include/functions_reporting_csv.php:1060 +#: ../../enterprise/include/functions_reporting_csv.php:1063 +#: ../../enterprise/include/functions_reporting_csv.php:1113 +#: ../../enterprise/include/functions_reporting_csv.php:1115 +#: ../../enterprise/include/functions_reporting_csv.php:1162 +#: ../../enterprise/include/functions_reporting_csv.php:1164 +#: ../../enterprise/include/functions_reporting_csv.php:1167 +#: ../../enterprise/include/functions_reporting_csv.php:1217 +#: ../../enterprise/include/functions_reporting_csv.php:1219 +#: ../../enterprise/include/functions_reporting_csv.php:1222 +#: ../../enterprise/include/functions_reporting_csv.php:1246 +#: ../../enterprise/include/functions_reporting_csv.php:1248 +#: ../../enterprise/include/functions_reporting_csv.php:1283 +#: ../../enterprise/include/functions_reporting_csv.php:1285 +#: ../../enterprise/include/functions_reporting_csv.php:1407 +#: ../../enterprise/include/functions_reporting_csv.php:1523 +#: ../../enterprise/include/functions_reporting_csv.php:1669 +#: ../../enterprise/include/functions_reporting_csv.php:1671 +#: ../../enterprise/include/functions_reporting_csv.php:1723 +#: ../../enterprise/include/functions_reporting_csv.php:1791 +#: ../../enterprise/include/functions_reporting_csv.php:1960 +#: ../../enterprise/include/functions_reporting_csv.php:1997 +#: ../../enterprise/include/functions_reporting_csv.php:2001 +#: ../../enterprise/include/functions_reporting_csv.php:2053 +#: ../../enterprise/include/functions_reporting_csv.php:2055 +#: ../../enterprise/include/functions_reporting_csv.php:2084 +#: ../../enterprise/include/functions_reporting_csv.php:2086 +#: ../../enterprise/include/functions_reporting_csv.php:2120 +#: ../../enterprise/include/functions_reporting_csv.php:2122 +#: ../../enterprise/include/functions_reporting_csv.php:2152 +#: ../../enterprise/include/functions_reporting_csv.php:2154 +#: ../../enterprise/include/functions_reporting_csv.php:2174 +#: ../../enterprise/include/functions_reporting_csv.php:2176 +#: ../../enterprise/include/functions_reporting_csv.php:2205 +#: ../../enterprise/include/functions_reporting_csv.php:2207 +#: ../../enterprise/include/functions_reporting_csv.php:2234 +#: ../../enterprise/include/functions_reporting_csv.php:2236 +#: ../../enterprise/include/functions_reporting_csv.php:2267 +#: ../../enterprise/include/functions_reporting_csv.php:2269 +#: ../../enterprise/include/functions_reporting_pdf.php:1539 +#: ../../enterprise/meta/advanced/collections.php:322 +#: ../../enterprise/meta/agentsearch.php:298 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 +#: ../../enterprise/meta/include/functions_autoprovision.php:449 +#: ../../enterprise/meta/include/functions_wizard_meta.php:198 +#: ../../enterprise/meta/include/functions_wizard_meta.php:473 +#: ../../enterprise/meta/include/functions_wizard_meta.php:585 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1142 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1462 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1583 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1685 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1807 +#: ../../enterprise/mobile/include/enterprise.class.php:97 +#: ../../enterprise/operation/agentes/collection_view.php:64 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:308 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:411 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:77 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../enterprise/operation/agentes/tag_view.php:573 +#: ../../enterprise/operation/agentes/transactional_map.php:181 +#: ../../enterprise/operation/agentes/ver_agente.php:57 +#: ../../enterprise/operation/services/services.list.php:406 +#: ../../enterprise/operation/services/services.service.php:164 msgid "Description" msgstr "説明" -#: ../../extensions/files_repo/files_repo_form.php:73 +#: ../../extensions/files_repo/files_repo_form.php:63 msgid "Only 200 characters are permitted" msgstr "200文字までです" -#: ../../extensions/files_repo/files_repo_form.php:84 -#: ../../godmode/extensions.php:143 +#: ../../extensions/files_repo/files_repo_form.php:74 +#: ../../godmode/extensions.php:136 msgid "File" msgstr "ファイル" -#: ../../extensions/files_repo/files_repo_form.php:87 -#: ../../extensions/files_repo/files_repo_form.php:93 -#: ../../extensions/files_repo/files_repo_list.php:89 +#: ../../extensions/files_repo/files_repo_form.php:77 +#: ../../extensions/files_repo/files_repo_form.php:83 +#: ../../extensions/files_repo/files_repo_list.php:90 msgid "Public link" msgstr "公開リンク" -#: ../../extensions/files_repo/files_repo_form.php:88 -#: ../../extensions/net_tools.php:343 -#: ../../godmode/agentes/agent_conf_gis.php:88 -#: ../../godmode/agentes/agent_manager.php:514 -#: ../../godmode/agentes/agent_template.php:253 -#: ../../godmode/agentes/configure_field.php:66 -#: ../../godmode/agentes/module_manager_editor.php:534 -#: ../../godmode/agentes/planned_downtime.editor.php:639 -#: ../../godmode/agentes/planned_downtime.list.php:466 -#: ../../godmode/agentes/planned_downtime.list.php:475 +#: ../../extensions/files_repo/files_repo_form.php:78 +#: ../../extensions/net_tools.php:502 +#: ../../godmode/agentes/agent_conf_gis.php:134 +#: ../../godmode/agentes/agent_manager.php:1000 +#: ../../godmode/agentes/agent_template.php:258 +#: ../../godmode/agentes/configure_field.php:135 +#: ../../godmode/agentes/module_manager_editor.php:724 +#: ../../godmode/agentes/planned_downtime.editor.php:846 +#: ../../godmode/agentes/planned_downtime.list.php:487 +#: ../../godmode/agentes/planned_downtime.list.php:492 +#: ../../godmode/agentes/status_monitor_custom_fields.php:204 +#: ../../godmode/alerts/alert_list.list.php:140 #: ../../godmode/alerts/alert_list.list.php:147 -#: ../../godmode/alerts/alert_list.list.php:155 -#: ../../godmode/alerts/configure_alert_action.php:216 -#: ../../godmode/alerts/configure_alert_action.php:222 -#: ../../godmode/alerts/configure_alert_command.php:198 -#: ../../godmode/alerts/configure_alert_special_days.php:102 -#: ../../godmode/category/edit_category.php:169 -#: ../../godmode/events/custom_events.php:201 -#: ../../godmode/events/event_edit_filter.php:401 -#: ../../godmode/events/event_responses.editor.php:167 -#: ../../godmode/groups/configure_group.php:221 -#: ../../godmode/groups/configure_modu_group.php:83 -#: ../../godmode/massive/massive_edit_agents.php:535 -#: ../../godmode/massive/massive_edit_modules.php:698 -#: ../../godmode/massive/massive_edit_plugins.php:321 -#: ../../godmode/modules/manage_nc_groups_form.php:80 -#: ../../godmode/modules/manage_network_components_form.php:274 -#: ../../godmode/modules/manage_network_templates_form.php:156 -#: ../../godmode/netflow/nf_edit_form.php:240 -#: ../../godmode/reporting/create_container.php:276 -#: ../../godmode/reporting/graph_builder.main.php:204 -#: ../../godmode/reporting/reporting_builder.main.php:38 -#: ../../godmode/reporting/visual_console_builder.data.php:194 -#: ../../godmode/reporting/visual_console_builder.elements.php:522 -#: ../../godmode/servers/manage_recontask_form.php:407 -#: ../../godmode/servers/modificar_server.php:72 -#: ../../godmode/servers/plugin.php:173 ../../godmode/servers/plugin.php:546 -#: ../../godmode/servers/recon_script.php:223 -#: ../../godmode/setup/links.php:120 ../../godmode/setup/news.php:207 -#: ../../godmode/setup/os.php:57 ../../godmode/setup/os.php:110 -#: ../../godmode/setup/performance.php:157 -#: ../../godmode/setup/setup_auth.php:213 -#: ../../godmode/setup/setup_ehorus.php:57 -#: ../../godmode/setup/setup_ehorus.php:158 -#: ../../godmode/setup/setup_general.php:241 -#: ../../godmode/setup/setup_netflow.php:81 -#: ../../godmode/setup/setup_visuals.php:852 -#: ../../godmode/setup/snmp_wizard.php:106 -#: ../../godmode/snmpconsole/snmp_alert.php:977 -#: ../../godmode/snmpconsole/snmp_alert.php:1232 -#: ../../godmode/snmpconsole/snmp_filters.php:197 -#: ../../godmode/snmpconsole/snmp_filters.php:237 -#: ../../godmode/snmpconsole/snmp_filters.php:252 -#: ../../godmode/tag/edit_tag.php:224 -#: ../../godmode/update_manager/update_manager.setup.php:132 -#: ../../godmode/users/configure_profile.php:381 -#: ../../godmode/users/configure_user.php:708 -#: ../../include/ajax/alert_list.ajax.php:193 -#: ../../include/functions_pandora_networkmap.php:1733 -#: ../../include/functions_events.php:1698 -#: ../../include/functions_events.php:1736 -#: ../../include/functions_visual_map_editor.php:623 -#: ../../operation/agentes/datos_agente.php:209 -#: ../../operation/events/events_list.php:696 -#: ../../operation/reporting/reporting_viewer.php:201 -#: ../../operation/snmpconsole/snmp_view.php:517 -#: ../../operation/users/user_edit.php:483 -#: ../../enterprise/dashboard/main_dashboard.php:302 -#: ../../enterprise/dashboard/widget.php:191 -#: ../../enterprise/extensions/cron/main.php:496 -#: ../../enterprise/extensions/ipam/ipam_editor.php:118 -#: ../../enterprise/extensions/ipam/ipam_massive.php:95 -#: ../../enterprise/extensions/ipam/ipam_network.php:670 -#: ../../enterprise/extensions/translate_string.php:303 -#: ../../enterprise/extensions/translate_string.php:310 -#: ../../enterprise/extensions/vmware/vmware_admin.php:355 -#: ../../enterprise/extensions/vmware/vmware_admin.php:490 -#: ../../enterprise/extensions/vmware/vmware_view.php:1169 -#: ../../enterprise/extensions/vmware/vmware_view.php:1430 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:216 -#: ../../enterprise/godmode/agentes/collection_manager.php:132 -#: ../../enterprise/godmode/agentes/collection_manager.php:217 -#: ../../enterprise/godmode/agentes/collections.data.php:95 -#: ../../enterprise/godmode/agentes/collections.data.php:202 -#: ../../enterprise/godmode/agentes/collections.data.php:260 -#: ../../enterprise/godmode/agentes/collections.data.php:335 -#: ../../enterprise/godmode/agentes/collections.editor.php:124 -#: ../../enterprise/godmode/agentes/collections.editor.php:190 -#: ../../enterprise/godmode/agentes/inventory_manager.php:204 -#: ../../enterprise/godmode/agentes/inventory_manager.php:267 -#: ../../enterprise/godmode/agentes/plugins_manager.php:145 -#: ../../enterprise/godmode/agentes/plugins_manager.php:179 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:225 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:300 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:291 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:126 -#: ../../enterprise/godmode/modules/configure_local_component.php:486 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:228 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:115 -#: ../../enterprise/godmode/policies/configure_policy.php:86 -#: ../../enterprise/godmode/policies/policy_collections.php:158 -#: ../../enterprise/godmode/policies/policy_collections.php:210 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:274 -#: ../../enterprise/godmode/policies/policy_modules.php:364 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:109 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:146 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:79 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:89 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:327 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:87 -#: ../../enterprise/godmode/servers/manage_export_form.php:120 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:172 -#: ../../enterprise/godmode/services/services.elements.php:418 -#: ../../enterprise/godmode/setup/edit_skin.php:262 -#: ../../enterprise/godmode/setup/setup.php:270 -#: ../../enterprise/godmode/setup/setup.php:370 -#: ../../enterprise/godmode/setup/setup_history.php:84 -#: ../../enterprise/godmode/setup/setup_log_collector.php:60 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:218 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:345 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:86 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:348 -#: ../../enterprise/meta/advanced/metasetup.mail.php:106 -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/meta/advanced/metasetup.performance.php:106 -#: ../../enterprise/meta/advanced/metasetup.setup.php:268 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:185 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:102 -#: ../../enterprise/meta/advanced/metasetup.visual.php:329 -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../enterprise/meta/include/functions_autoprovision.php:494 -#: ../../enterprise/meta/include/functions_autoprovision.php:679 -#: ../../enterprise/operation/agentes/collection_view.php:98 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:191 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:399 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:76 -#: ../../enterprise/operation/agentes/policy_view.php:161 +#: ../../godmode/alerts/alert_list.list.php:833 +#: ../../godmode/alerts/configure_alert_action.php:282 +#: ../../godmode/alerts/configure_alert_action.php:286 +#: ../../godmode/alerts/configure_alert_command.php:237 +#: ../../godmode/alerts/configure_alert_special_days.php:104 +#: ../../godmode/category/edit_category.php:166 +#: ../../godmode/events/custom_events.php:166 +#: ../../godmode/events/event_edit_filter.php:622 +#: ../../godmode/events/event_responses.editor.php:205 +#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_modu_group.php:80 +#: ../../godmode/massive/massive_edit_agents.php:822 +#: ../../godmode/massive/massive_edit_modules.php:1175 +#: ../../godmode/massive/massive_edit_plugins.php:376 +#: ../../godmode/modules/manage_nc_groups_form.php:90 +#: ../../godmode/modules/manage_network_components_form.php:307 +#: ../../godmode/modules/manage_network_templates_form.php:166 +#: ../../godmode/netflow/nf_edit_form.php:258 +#: ../../godmode/reporting/create_container.php:291 +#: ../../godmode/reporting/graph_builder.main.php:190 +#: ../../godmode/reporting/reporting_builder.main.php:46 +#: ../../godmode/reporting/visual_console_builder.data.php:220 +#: ../../godmode/reporting/visual_console_builder.elements.php:664 +#: ../../godmode/servers/modificar_server.php:98 +#: ../../godmode/servers/plugin.php:182 ../../godmode/servers/plugin.php:564 +#: ../../godmode/setup/links.php:126 ../../godmode/setup/news.php:223 +#: ../../godmode/setup/os.php:55 ../../godmode/setup/os.php:113 +#: ../../godmode/setup/performance.php:733 +#: ../../godmode/setup/setup_auth.php:206 +#: ../../godmode/setup/setup_ehorus.php:165 +#: ../../godmode/setup/setup_general.php:408 +#: ../../godmode/setup/setup_integria.php:557 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../godmode/setup/setup_visuals.php:1344 +#: ../../godmode/setup/setup_websocket_engine.php:92 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/snmpconsole/snmp_alert.php:1088 +#: ../../godmode/snmpconsole/snmp_alert.php:1319 +#: ../../godmode/snmpconsole/snmp_filters.php:230 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/tag/edit_tag.php:229 +#: ../../godmode/update_manager/update_manager.setup.php:266 +#: ../../godmode/users/configure_profile.php:360 +#: ../../godmode/users/configure_user.php:1002 +#: ../../include/ajax/alert_list.ajax.php:288 +#: ../../include/class/CredentialStore.class.php:1116 +#: ../../include/class/ManageNetScanScripts.class.php:762 +#: ../../include/class/NetworkMap.class.php:3066 +#: ../../include/functions_events.php:3392 +#: ../../include/functions_events.php:3472 +#: ../../include/functions_events.php.orig:3298 +#: ../../include/functions_events.php.orig:3378 +#: ../../include/functions_update_manager.php:1406 +#: ../../include/functions_visual_map_editor.php:790 +#: ../../operation/agentes/datos_agente.php:218 +#: ../../operation/events/events_list.php:1059 +#: ../../operation/incidents/configure_integriaims_incident.php:320 +#: ../../operation/network/network_report.php:132 +#: ../../operation/reporting/reporting_viewer.php:219 +#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/users/user_edit.php:719 +#: ../../enterprise/dashboard/main_dashboard.php:300 +#: ../../enterprise/dashboard/widget.php:276 +#: ../../enterprise/extensions/ipam/ipam_editor.php:227 +#: ../../enterprise/extensions/ipam/ipam_massive.php:112 +#: ../../enterprise/extensions/ipam/ipam_network.php:619 +#: ../../enterprise/extensions/translate_string.php:364 +#: ../../enterprise/extensions/visual_console_manager.php:326 +#: ../../enterprise/extensions/vmware/vmware_view.php:1243 +#: ../../enterprise/extensions/vmware/vmware_view.php:1672 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:338 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:650 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:250 +#: ../../enterprise/godmode/agentes/collection_manager.php:148 +#: ../../enterprise/godmode/agentes/collection_manager.php:149 +#: ../../enterprise/godmode/agentes/collection_manager.php:260 +#: ../../enterprise/godmode/agentes/collection_manager.php:261 +#: ../../enterprise/godmode/agentes/collections.data.php:101 +#: ../../enterprise/godmode/agentes/collections.data.php:228 +#: ../../enterprise/godmode/agentes/collections.data.php:297 +#: ../../enterprise/godmode/agentes/collections.data.php:384 +#: ../../enterprise/godmode/agentes/collections.data.php:385 +#: ../../enterprise/godmode/agentes/collections.editor.php:156 +#: ../../enterprise/godmode/agentes/collections.editor.php:227 +#: ../../enterprise/godmode/agentes/inventory_manager.php:180 +#: ../../enterprise/godmode/agentes/inventory_manager.php:250 +#: ../../enterprise/godmode/agentes/plugins_manager.php:122 +#: ../../enterprise/godmode/agentes/plugins_manager.php:147 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:271 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:361 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1011 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:328 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:174 +#: ../../enterprise/godmode/modules/configure_local_component.php:651 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:410 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:143 +#: ../../enterprise/godmode/policies/configure_policy.php:107 +#: ../../enterprise/godmode/policies/policy_collections.php:202 +#: ../../enterprise/godmode/policies/policy_collections.php:275 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:213 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:289 +#: ../../enterprise/godmode/policies/policy_modules.php:419 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:129 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:176 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:107 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 +#: ../../enterprise/godmode/servers/manage_export_form.php:130 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:175 +#: ../../enterprise/godmode/services/services.elements.php:764 +#: ../../enterprise/godmode/services/services.service.php:566 +#: ../../enterprise/godmode/setup/edit_skin.php:287 +#: ../../enterprise/godmode/setup/setup.php:470 +#: ../../enterprise/godmode/setup/setup.php:651 +#: ../../enterprise/godmode/setup/setup_history.php:79 +#: ../../enterprise/godmode/setup/setup_log_collector.php:52 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:242 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:364 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:84 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:556 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 +#: ../../enterprise/include/class/AgentRepository.class.php:885 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1970 +#: ../../enterprise/include/class/DatabaseHA.class.php:753 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1626 +#: ../../enterprise/include/class/Omnishell.class.php:646 +#: ../../enterprise/include/class/SAPView.class.php:310 +#: ../../enterprise/include/functions_HA_cluster.php:495 +#: ../../enterprise/include/functions_update_manager.php:252 +#: ../../enterprise/meta/advanced/collections.data.php:150 +#: ../../enterprise/meta/advanced/collections.data.php:223 +#: ../../enterprise/meta/advanced/collections.data.php:264 +#: ../../enterprise/meta/advanced/collections.data.php:335 +#: ../../enterprise/meta/advanced/collections.data.php:336 +#: ../../enterprise/meta/advanced/collections.editor.php:123 +#: ../../enterprise/meta/advanced/collections.editor.php:196 +#: ../../enterprise/meta/advanced/cron_main.php:431 +#: ../../enterprise/meta/advanced/links.php:135 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:578 +#: ../../enterprise/meta/advanced/metasetup.mail.php:124 +#: ../../enterprise/meta/advanced/metasetup.password.php:157 +#: ../../enterprise/meta/advanced/metasetup.performance.php:121 +#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:228 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:156 +#: ../../enterprise/meta/advanced/metasetup.visual.php:598 +#: ../../enterprise/meta/event/custom_events.php:211 +#: ../../enterprise/meta/include/functions_autoprovision.php:564 +#: ../../enterprise/meta/include/functions_autoprovision.php:763 +#: ../../enterprise/operation/agentes/collection_view.php:100 +#: ../../enterprise/operation/agentes/collection_view.php:101 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:224 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:452 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:87 +#: ../../enterprise/operation/agentes/policy_view.php:170 msgid "Update" msgstr "更新" -#: ../../extensions/files_repo/files_repo_form.php:94 -#: ../../godmode/agentes/planned_downtime.editor.php:643 -#: ../../godmode/agentes/planned_downtime.editor.php:750 -#: ../../godmode/agentes/planned_downtime.editor.php:890 -#: ../../godmode/alerts/alert_list.list.php:633 -#: ../../godmode/events/event_edit_filter.php:353 -#: ../../godmode/events/event_edit_filter.php:368 -#: ../../godmode/massive/massive_add_action_alerts.php:205 -#: ../../godmode/massive/massive_add_alerts.php:185 -#: ../../godmode/massive/massive_add_tags.php:161 -#: ../../godmode/modules/manage_network_templates_form.php:310 -#: ../../godmode/reporting/graph_builder.graph_editor.php:329 -#: ../../godmode/reporting/visual_console_builder.wizard.php:367 -#: ../../godmode/servers/manage_recontask_form.php:411 -#: ../../godmode/servers/plugin.php:796 -#: ../../godmode/servers/recon_script.php:383 -#: ../../godmode/setup/links.php:158 ../../godmode/setup/news.php:275 -#: ../../godmode/setup/setup_visuals.php:776 -#: ../../godmode/setup/setup_visuals.php:812 -#: ../../godmode/snmpconsole/snmp_alert.php:1317 -#: ../../godmode/users/configure_profile.php:375 -#: ../../operation/events/events_list.php:405 -#: ../../operation/events/events_list.php:432 -#: ../../operation/incidents/incident_detail.php:404 -#: ../../enterprise/dashboard/main_dashboard.php:365 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:186 -#: ../../enterprise/godmode/agentes/collection_manager.php:109 -#: ../../enterprise/godmode/agentes/collection_manager.php:126 -#: ../../enterprise/godmode/agentes/inventory_manager.php:208 -#: ../../enterprise/godmode/agentes/plugins_manager.php:127 -#: ../../enterprise/godmode/alerts/alert_events_list.php:608 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:123 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:112 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:110 -#: ../../enterprise/godmode/policies/policy_alerts.php:474 -#: ../../enterprise/godmode/policies/policy_alerts.php:520 -#: ../../enterprise/godmode/policies/policy_collections.php:196 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:285 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:336 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:219 -#: ../../enterprise/godmode/policies/policy_plugins.php:70 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:184 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:330 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:181 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:222 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:527 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:193 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:133 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:527 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:700 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:380 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:78 -#: ../../enterprise/godmode/servers/manage_export_form.php:122 -#: ../../enterprise/godmode/setup/setup_acl.php:381 -#: ../../enterprise/godmode/setup/setup_acl.php:400 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:329 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:352 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:484 -#: ../../enterprise/meta/advanced/metasetup.visual.php:171 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1213 -#: ../../enterprise/meta/include/functions_autoprovision.php:598 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:235 +#: ../../extensions/files_repo/files_repo_form.php:84 +#: ../../godmode/agentes/planned_downtime.editor.php:854 +#: ../../godmode/agentes/planned_downtime.editor.php:999 +#: ../../godmode/agentes/planned_downtime.editor.php:1158 +#: ../../godmode/alerts/alert_list.list.php:757 +#: ../../godmode/events/event_edit_filter.php:475 +#: ../../godmode/events/event_edit_filter.php:528 +#: ../../godmode/gis_maps/configure_gis_map.php:562 +#: ../../godmode/massive/massive_add_action_alerts.php:236 +#: ../../godmode/massive/massive_add_alerts.php:267 +#: ../../godmode/modules/manage_network_templates_form.php:335 +#: ../../godmode/reporting/graph_builder.graph_editor.php:377 +#: ../../godmode/reporting/visual_console_builder.wizard.php:551 +#: ../../godmode/servers/plugin.php:1052 ../../godmode/setup/links.php:166 +#: ../../godmode/setup/news.php:289 ../../godmode/setup/setup_visuals.php:1254 +#: ../../godmode/setup/setup_visuals.php:1307 +#: ../../godmode/snmpconsole/snmp_alert.php:1426 +#: ../../godmode/users/configure_profile.php:355 +#: ../../include/class/ManageNetScanScripts.class.php:463 +#: ../../include/functions_notifications.php:892 +#: ../../operation/events/events.php:520 ../../operation/events/events.php:594 +#: ../../operation/events/events_list.php:601 +#: ../../operation/events/events_list.php:675 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:321 +#: ../../operation/incidents/incident_detail.php:425 +#: ../../enterprise/dashboard/main_dashboard.php:412 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:468 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:354 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:223 +#: ../../enterprise/godmode/agentes/collection_manager.php:119 +#: ../../enterprise/godmode/agentes/collection_manager.php:139 +#: ../../enterprise/godmode/agentes/inventory_manager.php:182 +#: ../../enterprise/godmode/agentes/plugins_manager.php:104 +#: ../../enterprise/godmode/alerts/alert_events_list.php:699 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:120 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:150 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:138 +#: ../../enterprise/godmode/policies/policy_alerts.php:540 +#: ../../enterprise/godmode/policies/policy_alerts.php:604 +#: ../../enterprise/godmode/policies/policy_collections.php:248 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:397 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:215 +#: ../../enterprise/godmode/policies/policy_plugins.php:96 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:594 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1079 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:237 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:493 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:825 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:392 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:295 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 +#: ../../enterprise/godmode/servers/manage_export_form.php:132 +#: ../../enterprise/godmode/setup/setup_acl.php:442 +#: ../../enterprise/godmode/setup/setup_acl.php:461 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:345 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:69 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1970 +#: ../../enterprise/meta/advanced/links.php:175 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:585 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 +#: ../../enterprise/meta/advanced/metasetup.visual.php:235 +#: ../../enterprise/meta/include/functions_autoprovision.php:675 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1367 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:266 msgid "Add" msgstr "追加" -#: ../../extensions/files_repo/files_repo_get_file.php:65 +#: ../../extensions/files_repo/files_repo_get_file.php:66 msgid "Unreliable petition" msgstr "信頼性の低い操作" -#: ../../extensions/files_repo/files_repo_get_file.php:65 +#: ../../extensions/files_repo/files_repo_get_file.php:66 msgid "Please contact the administrator" msgstr "管理者に連絡してください" -#: ../../extensions/files_repo/files_repo_list.php:58 -#: ../../godmode/agentes/configure_field.php:50 -#: ../../godmode/agentes/module_manager.php:548 -#: ../../godmode/agentes/module_manager_editor_common.php:149 -#: ../../godmode/agentes/module_manager_editor_common.php:655 -#: ../../godmode/agentes/planned_downtime.editor.php:493 -#: ../../godmode/agentes/planned_downtime.editor.php:779 -#: ../../godmode/alerts/alert_actions.php:340 -#: ../../godmode/alerts/alert_commands.php:348 -#: ../../godmode/alerts/alert_templates.php:299 -#: ../../godmode/alerts/configure_alert_action.php:112 -#: ../../godmode/alerts/configure_alert_command.php:146 -#: ../../godmode/alerts/configure_alert_template.php:750 -#: ../../godmode/category/edit_category.php:155 -#: ../../godmode/events/event_filter.php:108 -#: ../../godmode/events/event_responses.editor.php:77 -#: ../../godmode/events/event_responses.list.php:54 -#: ../../godmode/groups/configure_group.php:116 -#: ../../godmode/groups/configure_modu_group.php:69 -#: ../../godmode/groups/group_list.php:373 -#: ../../godmode/groups/modu_group_list.php:190 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_nc_groups_form.php:67 -#: ../../godmode/modules/manage_network_components_form_common.php:54 -#: ../../godmode/modules/manage_network_templates.php:190 -#: ../../godmode/modules/manage_network_templates_form.php:146 +#: ../../extensions/files_repo/files_repo_list.php:53 +#: ../../godmode/agentes/configure_field.php:71 +#: ../../godmode/agentes/module_manager.php:639 +#: ../../godmode/agentes/module_manager_editor_common.php:199 +#: ../../godmode/agentes/module_manager_editor_common.php:1131 +#: ../../godmode/agentes/planned_downtime.editor.php:637 +#: ../../godmode/agentes/planned_downtime.editor.php:1035 +#: ../../godmode/alerts/alert_actions.php:183 +#: ../../godmode/alerts/alert_commands.php:400 +#: ../../godmode/alerts/alert_templates.php:365 +#: ../../godmode/alerts/configure_alert_action.php:128 +#: ../../godmode/alerts/configure_alert_command.php:172 +#: ../../godmode/alerts/configure_alert_template.php:913 +#: ../../godmode/category/edit_category.php:151 +#: ../../godmode/events/event_filter.php:121 +#: ../../godmode/events/event_responses.editor.php:76 +#: ../../godmode/events/event_responses.list.php:50 +#: ../../godmode/groups/configure_group.php:118 +#: ../../godmode/groups/configure_modu_group.php:64 +#: ../../godmode/groups/group_list.php:578 +#: ../../godmode/groups/modu_group_list.php:235 +#: ../../godmode/modules/manage_nc_groups.php:231 +#: ../../godmode/modules/manage_nc_groups_form.php:68 +#: ../../godmode/modules/manage_network_components_form_common.php:59 +#: ../../godmode/modules/manage_network_templates.php:227 +#: ../../godmode/modules/manage_network_templates_form.php:156 #: ../../godmode/modules/module_list.php:59 -#: ../../godmode/netflow/nf_edit.php:119 -#: ../../godmode/netflow/nf_edit_form.php:189 -#: ../../godmode/reporting/create_container.php:211 -#: ../../godmode/reporting/graph_builder.main.php:114 -#: ../../godmode/reporting/reporting_builder.item_editor.php:670 -#: ../../godmode/reporting/reporting_builder.list_items.php:306 -#: ../../godmode/reporting/reporting_builder.main.php:65 -#: ../../godmode/reporting/reporting_builder.main.php:67 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/modificar_server.php:55 -#: ../../godmode/servers/plugin.php:293 ../../godmode/servers/plugin.php:735 -#: ../../godmode/servers/recon_script.php:95 -#: ../../godmode/servers/recon_script.php:348 -#: ../../godmode/servers/servers.build_table.php:64 -#: ../../godmode/setup/os.builder.php:35 ../../godmode/setup/os.list.php:34 -#: ../../godmode/tag/edit_tag.php:169 ../../godmode/tag/tag.php:156 -#: ../../godmode/users/user_list.php:266 ../../godmode/users/user_list.php:400 -#: ../../include/functions_pandora_networkmap.php:1646 -#: ../../include/functions_pandora_networkmap.php:1679 -#: ../../include/functions_pandora_networkmap.php:1686 -#: ../../include/functions_pandora_networkmap.php:1847 -#: ../../include/functions_treeview.php:79 -#: ../../include/functions_events.php:2118 -#: ../../include/functions_events.php:2169 -#: ../../include/functions_filemanager.php:580 -#: ../../include/functions_reporting_html.php:811 -#: ../../include/functions_reporting_html.php:820 -#: ../../include/functions_reporting_html.php:1649 -#: ../../include/functions_reporting_html.php:2113 -#: ../../include/functions_reporting_html.php:4098 -#: ../../mobile/operation/networkmaps.php:195 -#: ../../mobile/operation/visualmaps.php:139 -#: ../../operation/agentes/pandora_networkmap.editor.php:221 -#: ../../operation/agentes/pandora_networkmap.php:563 -#: ../../operation/gis_maps/gis_map.php:89 -#: ../../operation/netflow/nf_live_view.php:305 -#: ../../operation/search_helps.php:36 ../../operation/search_maps.php:31 -#: ../../operation/search_users.php:41 -#: ../../enterprise/dashboard/dashboards.php:86 -#: ../../enterprise/dashboard/main_dashboard.php:311 -#: ../../enterprise/dashboard/main_dashboard.php:355 -#: ../../enterprise/godmode/agentes/collection_manager.php:105 -#: ../../enterprise/godmode/agentes/collection_manager.php:163 -#: ../../enterprise/godmode/agentes/inventory_manager.php:233 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:64 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:219 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:98 -#: ../../enterprise/godmode/alerts/alert_events.php:488 -#: ../../enterprise/godmode/alerts/alert_events_list.php:422 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:407 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:131 -#: ../../enterprise/godmode/modules/configure_local_component.php:149 -#: ../../enterprise/godmode/modules/local_components.php:481 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:154 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:78 -#: ../../enterprise/godmode/policies/configure_policy.php:65 -#: ../../enterprise/godmode/policies/policies.php:254 -#: ../../enterprise/godmode/policies/policy_agents.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:818 -#: ../../enterprise/godmode/policies/policy_collections.php:121 -#: ../../enterprise/godmode/policies/policy_collections.php:192 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:242 -#: ../../enterprise/godmode/policies/policy_modules.php:1234 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:153 -#: ../../enterprise/godmode/reporting/mysql_builder.php:41 -#: ../../enterprise/godmode/reporting/mysql_builder.php:138 -#: ../../enterprise/godmode/reporting/mysql_builder.php:139 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:112 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:113 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1283 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:103 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:325 -#: ../../enterprise/godmode/servers/list_satellite.php:35 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:54 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:67 -#: ../../enterprise/godmode/services/services.service.php:284 -#: ../../enterprise/godmode/setup/edit_skin.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:97 -#: ../../enterprise/godmode/setup/setup_skins.php:82 -#: ../../enterprise/include/functions_reporting.php:4976 -#: ../../enterprise/include/functions_reporting_pdf.php:2501 -#: ../../enterprise/include/functions_services.php:1502 -#: ../../enterprise/meta/advanced/servers.build_table.php:59 -#: ../../enterprise/meta/include/functions_wizard_meta.php:359 -#: ../../enterprise/meta/include/functions_wizard_meta.php:464 -#: ../../enterprise/meta/include/functions_wizard_meta.php:995 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1415 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1515 -#: ../../enterprise/meta/include/functions_autoprovision.php:382 -#: ../../enterprise/mobile/include/enterprise.class.php:79 -#: ../../enterprise/operation/agentes/collection_view.php:63 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:268 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:357 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:69 -#: ../../enterprise/operation/agentes/policy_view.php:131 -#: ../../enterprise/operation/agentes/policy_view.php:305 -#: ../../enterprise/operation/agentes/tag_view.php:530 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:158 -#: ../../enterprise/operation/services/services.list.php:326 -#: ../../enterprise/operation/services/services.service.php:129 +#: ../../godmode/netflow/nf_edit.php:146 +#: ../../godmode/netflow/nf_edit_form.php:198 +#: ../../godmode/reporting/create_container.php:198 +#: ../../godmode/reporting/graph_builder.main.php:106 +#: ../../godmode/reporting/reporting_builder.item_editor.php:828 +#: ../../godmode/reporting/reporting_builder.main.php:79 +#: ../../godmode/reporting/reporting_builder.main.php:83 +#: ../../godmode/servers/modificar_server.php:56 +#: ../../godmode/servers/plugin.php:328 ../../godmode/servers/plugin.php:969 +#: ../../godmode/servers/servers.build_table.php:65 +#: ../../godmode/setup/os.builder.php:33 ../../godmode/setup/os.list.php:32 +#: ../../godmode/setup/setup_integria.php:263 +#: ../../godmode/setup/setup_integria.php:386 +#: ../../godmode/tag/edit_tag.php:168 ../../godmode/tag/tag.php:175 +#: ../../godmode/users/user_list.php:332 ../../godmode/users/user_list.php:472 +#: ../../include/class/ManageNetScanScripts.class.php:396 +#: ../../include/class/ManageNetScanScripts.class.php:537 +#: ../../include/class/NetworkMap.class.php:2932 +#: ../../include/class/NetworkMap.class.php:2973 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3255 +#: ../../include/functions_events.php:4037 +#: ../../include/functions_events.php:4118 +#: ../../include/functions_events.php.orig:3943 +#: ../../include/functions_events.php.orig:4024 +#: ../../include/functions_treeview.php:78 +#: ../../include/functions_filemanager.php:619 +#: ../../include/functions_reporting_html.php:963 +#: ../../include/functions_reporting_html.php:971 +#: ../../include/functions_reporting_html.php:1962 +#: ../../include/functions_reporting_html.php:2659 +#: ../../include/functions_reporting_html.php:5128 +#: ../../mobile/operation/visualmaps.php:162 +#: ../../operation/agentes/pandora_networkmap.editor.php:258 +#: ../../operation/agentes/pandora_networkmap.php:693 +#: ../../operation/gis_maps/gis_map.php:102 +#: ../../operation/incidents/configure_integriaims_incident.php:198 +#: ../../operation/netflow/nf_live_view.php:362 +#: ../../operation/search_helps.php:32 ../../operation/search_maps.php:27 +#: ../../operation/search_policies.php:34 ../../operation/search_users.php:35 +#: ../../enterprise/dashboard/dashboards.php:112 +#: ../../enterprise/dashboard/main_dashboard.php:319 +#: ../../enterprise/dashboard/main_dashboard.php:394 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1198 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1677 +#: ../../enterprise/extensions/ipam/ipam_editor.php:99 +#: ../../enterprise/extensions/ipam/ipam_excel.php:105 +#: ../../enterprise/extensions/ipam/ipam_excel.php:175 +#: ../../enterprise/extensions/ipam/ipam_list.php:135 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:369 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:270 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:327 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:608 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:81 +#: ../../enterprise/godmode/agentes/collection_manager.php:115 +#: ../../enterprise/godmode/agentes/collection_manager.php:201 +#: ../../enterprise/godmode/agentes/inventory_manager.php:217 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:75 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:475 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 +#: ../../enterprise/godmode/alerts/alert_events.php:586 +#: ../../enterprise/godmode/alerts/alert_events_list.php:501 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:401 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 +#: ../../enterprise/godmode/modules/configure_local_component.php:152 +#: ../../enterprise/godmode/modules/local_components.php:558 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:369 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:99 +#: ../../enterprise/godmode/policies/configure_policy.php:74 +#: ../../enterprise/godmode/policies/policies.php:426 +#: ../../enterprise/godmode/policies/policy_agents.php:707 +#: ../../enterprise/godmode/policies/policy_agents.php:1074 +#: ../../enterprise/godmode/policies/policy_collections.php:149 +#: ../../enterprise/godmode/policies/policy_collections.php:244 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:253 +#: ../../enterprise/godmode/policies/policy_modules.php:1491 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:159 +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 +#: ../../enterprise/godmode/reporting/mysql_builder.php:160 +#: ../../enterprise/godmode/reporting/mysql_builder.php:161 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:135 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:139 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1519 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:105 +#: ../../enterprise/godmode/reporting/visual_console_template.php:161 +#: ../../enterprise/godmode/reporting/visual_console_template.php:196 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:246 +#: ../../enterprise/godmode/servers/list_satellite.php:36 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export.php:137 +#: ../../enterprise/godmode/servers/manage_export_form.php:69 +#: ../../enterprise/godmode/services/services.service.php:385 +#: ../../enterprise/godmode/setup/edit_skin.php:230 +#: ../../enterprise/godmode/setup/setup_auth.php:99 +#: ../../enterprise/godmode/setup/setup_skins.php:84 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:349 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:662 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2623 +#: ../../enterprise/include/class/Omnishell.class.php:668 +#: ../../enterprise/include/functions_services.php:2467 +#: ../../enterprise/meta/advanced/servers.build_table.php:58 +#: ../../enterprise/meta/agentsearch.php:297 +#: ../../enterprise/meta/include/functions_autoprovision.php:448 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:580 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1132 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1458 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1681 +#: ../../enterprise/mobile/include/enterprise.class.php:96 +#: ../../enterprise/operation/agentes/collection_view.php:62 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:146 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:307 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:410 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:68 +#: ../../enterprise/operation/agentes/policy_view.php:139 +#: ../../enterprise/operation/agentes/policy_view.php:324 +#: ../../enterprise/operation/agentes/tag_view.php:649 +#: ../../enterprise/operation/services/services.list.php:403 +#: ../../enterprise/operation/services/services.service.php:163 msgid "Name" msgstr "名前" -#: ../../extensions/files_repo/files_repo_list.php:60 -#: ../../godmode/events/event_responses.editor.php:98 -#: ../../include/functions_visual_map_editor.php:109 -#: ../../include/functions_visual_map_editor.php:151 -#: ../../include/functions_visual_map_editor.php:595 -#: ../../include/functions_visual_map_editor.php:671 -#: ../../include/functions_filemanager.php:582 -#: ../../operation/incidents/incident_detail.php:455 -#: ../../enterprise/extensions/backup/main.php:100 +#: ../../extensions/files_repo/files_repo_list.php:55 +#: ../../godmode/events/event_responses.editor.php:112 +#: ../../include/functions_filemanager.php:621 +#: ../../include/functions_visual_map_editor.php:126 +#: ../../include/functions_visual_map_editor.php:179 +#: ../../include/functions_visual_map_editor.php:770 +#: ../../include/functions_visual_map_editor.php:843 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:126 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:300 +#: ../../operation/incidents/incident_detail.php:477 +#: ../../enterprise/extensions/backup/main.php:127 msgid "Size" msgstr "サイズ" -#: ../../extensions/files_repo/files_repo_list.php:61 -#: ../../include/functions_filemanager.php:581 +#: ../../extensions/files_repo/files_repo_list.php:56 +#: ../../include/functions_filemanager.php:620 msgid "Last modification" msgstr "最終更新" -#: ../../extensions/files_repo/files_repo_list.php:86 +#: ../../extensions/files_repo/files_repo_list.php:87 msgid "Copy to clipboard" msgstr "クリップボードへコピー" -#: ../../extensions/files_repo/files_repo_list.php:94 -#: ../../enterprise/extensions/backup/main.php:179 +#: ../../extensions/files_repo/files_repo_list.php:96 +#: ../../enterprise/extensions/backup/main.php:205 msgid "Download" msgstr "ダウンロード" -#: ../../extensions/files_repo/files_repo_list.php:101 -#: ../../godmode/agentes/fields_manager.php:128 -#: ../../godmode/agentes/modificar_agente.php:569 -#: ../../godmode/agentes/planned_downtime.list.php:401 -#: ../../godmode/alerts/alert_special_days.php:449 -#: ../../godmode/events/event_responses.list.php:67 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1245 -#: ../../godmode/reporting/reporting_builder.list_items.php:443 -#: ../../godmode/reporting/reporting_builder.php:736 -#: ../../godmode/servers/plugin.php:157 ../../godmode/servers/plugin.php:781 -#: ../../godmode/servers/servers.build_table.php:167 -#: ../../godmode/setup/snmp_wizard.php:119 -#: ../../godmode/users/profile_list.php:389 -#: ../../godmode/users/user_list.php:465 ../../include/ajax/module.php:903 -#: ../../include/functions_pandora_networkmap.php:1711 -#: ../../include/functions_groups.php:2160 -#: ../../operation/agentes/estado_agente.php:644 -#: ../../operation/agentes/pandora_networkmap.php:570 -#: ../../operation/agentes/status_monitor.php:1126 -#: ../../operation/gis_maps/gis_map.php:163 -#: ../../operation/search_reports.php:52 -#: ../../operation/servers/recon_view.php:113 -#: ../../enterprise/extensions/cron/main.php:413 -#: ../../enterprise/extensions/cron/main.php:426 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:256 -#: ../../enterprise/godmode/agentes/collections.editor.php:172 -#: ../../enterprise/godmode/alerts/alert_events_list.php:634 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:475 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 -#: ../../enterprise/godmode/reporting/mysql_builder.php:86 -#: ../../enterprise/godmode/reporting/mysql_builder.php:100 -#: ../../enterprise/godmode/reporting/mysql_builder.php:110 -#: ../../enterprise/godmode/reporting/mysql_builder.php:152 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:349 -#: ../../enterprise/include/ajax/transactional.ajax.php:119 -#: ../../enterprise/include/ajax/transactional.ajax.php:210 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1419 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1909 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2003 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2481 -#: ../../enterprise/meta/include/functions_autoprovision.php:415 -#: ../../enterprise/meta/include/functions_autoprovision.php:568 -#: ../../enterprise/meta/include/functions_autoprovision.php:569 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:264 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:425 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:617 -#: ../../enterprise/meta/screens/screens.visualmap.php:63 -#: ../../enterprise/operation/agentes/tag_view.php:592 +#: ../../extensions/files_repo/files_repo_list.php:103 +#: ../../godmode/agentes/fields_manager.php:150 +#: ../../godmode/agentes/modificar_agente.php:595 +#: ../../godmode/agentes/modificar_agente.php:600 +#: ../../godmode/agentes/planned_downtime.list.php:408 +#: ../../godmode/alerts/alert_special_days.php:504 +#: ../../godmode/events/event_responses.list.php:64 +#: ../../godmode/groups/group_list.php:633 +#: ../../godmode/groups/group_list.php:634 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1805 +#: ../../godmode/reporting/reporting_builder.list_items.php:534 +#: ../../godmode/reporting/reporting_builder.php:1042 +#: ../../godmode/servers/plugin.php:163 ../../godmode/servers/plugin.php:1030 +#: ../../godmode/servers/servers.build_table.php:193 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/users/profile_list.php:364 +#: ../../godmode/users/user_list.php:543 ../../include/ajax/module.php:966 +#: ../../include/class/NetworkMap.class.php:3039 +#: ../../include/functions_cron.php:697 ../../include/functions_cron.php:719 +#: ../../operation/agentes/estado_agente.php:802 +#: ../../operation/agentes/estado_agente.php:804 +#: ../../operation/agentes/pandora_networkmap.php:701 +#: ../../operation/agentes/status_monitor.php:1312 +#: ../../operation/gis_maps/gis_map.php:185 +#: ../../operation/incidents/list_integriaims_incidents.php:292 +#: ../../operation/search_reports.php:48 +#: ../../operation/servers/recon_view.php:115 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:316 +#: ../../enterprise/godmode/agentes/collections.editor.php:207 +#: ../../enterprise/godmode/alerts/alert_events_list.php:720 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:481 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:184 +#: ../../enterprise/godmode/reporting/mysql_builder.php:112 +#: ../../enterprise/godmode/reporting/mysql_builder.php:124 +#: ../../enterprise/godmode/reporting/mysql_builder.php:133 +#: ../../enterprise/godmode/reporting/mysql_builder.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:425 +#: ../../enterprise/include/ajax/transactional.ajax.php:117 +#: ../../enterprise/include/ajax/transactional.ajax.php:205 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2103 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2748 +#: ../../enterprise/include/class/Omnishell.class.php:1086 +#: ../../enterprise/include/functions_tasklist.php:460 +#: ../../enterprise/include/functions_tasklist.php:485 +#: ../../enterprise/meta/advanced/collections.editor.php:175 +#: ../../enterprise/meta/include/functions_autoprovision.php:480 +#: ../../enterprise/meta/include/functions_autoprovision.php:481 +#: ../../enterprise/meta/include/functions_autoprovision.php:644 +#: ../../enterprise/meta/include/functions_autoprovision.php:645 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2698 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:277 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:443 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:635 +#: ../../enterprise/meta/screens/screens.visualmap.php:65 +#: ../../enterprise/operation/agentes/tag_view.php:714 msgid "Edit" msgstr "編集" -#: ../../extensions/files_repo/files_repo_list.php:105 -#: ../../godmode/agentes/agent_manager.php:200 -#: ../../godmode/agentes/agent_template.php:251 -#: ../../godmode/agentes/fields_manager.php:129 -#: ../../godmode/agentes/modificar_agente.php:643 -#: ../../godmode/agentes/module_manager.php:767 -#: ../../godmode/agentes/module_manager.php:775 -#: ../../godmode/agentes/module_manager.php:790 -#: ../../godmode/agentes/module_manager.php:805 -#: ../../godmode/agentes/module_manager.php:816 -#: ../../godmode/agentes/module_manager_editor_common.php:159 -#: ../../godmode/agentes/planned_downtime.editor.php:874 -#: ../../godmode/alerts/alert_actions.php:385 -#: ../../godmode/alerts/alert_actions.php:388 -#: ../../godmode/alerts/alert_commands.php:379 -#: ../../godmode/alerts/alert_list.list.php:826 -#: ../../godmode/alerts/alert_special_days.php:451 -#: ../../godmode/alerts/alert_templates.php:342 -#: ../../godmode/category/category.php:126 -#: ../../godmode/category/category.php:131 -#: ../../godmode/events/event_filter.php:146 -#: ../../godmode/groups/modu_group_list.php:205 -#: ../../godmode/groups/modu_group_list.php:207 -#: ../../godmode/massive/massive_add_action_alerts.php:203 -#: ../../godmode/massive/massive_add_alerts.php:183 -#: ../../godmode/massive/massive_add_profiles.php:115 -#: ../../godmode/massive/massive_add_tags.php:158 -#: ../../godmode/massive/massive_delete_action_alerts.php:202 -#: ../../godmode/massive/massive_delete_agents.php:138 -#: ../../godmode/massive/massive_delete_modules.php:537 -#: ../../godmode/massive/massive_delete_profiles.php:129 -#: ../../godmode/massive/massive_delete_tags.php:215 -#: ../../godmode/massive/massive_edit_plugins.php:533 -#: ../../godmode/massive/massive_enable_disable_alerts.php:167 -#: ../../godmode/massive/massive_operations.php:247 -#: ../../godmode/massive/massive_operations.php:256 -#: ../../godmode/massive/massive_standby_alerts.php:167 -#: ../../godmode/modules/manage_nc_groups.php:220 -#: ../../godmode/modules/manage_network_components.php:616 -#: ../../godmode/modules/manage_network_templates.php:209 -#: ../../godmode/modules/manage_network_templates.php:214 -#: ../../godmode/netflow/nf_edit.php:144 -#: ../../godmode/netflow/nf_item_list.php:237 -#: ../../godmode/reporting/create_container.php:618 -#: ../../godmode/reporting/graphs.php:195 -#: ../../godmode/reporting/reporting_builder.php:741 -#: ../../godmode/reporting/visual_console_builder.elements.php:323 -#: ../../godmode/servers/plugin.php:782 ../../godmode/setup/links.php:150 -#: ../../godmode/setup/news.php:267 -#: ../../godmode/snmpconsole/snmp_alert.php:1200 -#: ../../godmode/snmpconsole/snmp_alert.php:1236 -#: ../../godmode/snmpconsole/snmp_alert.php:1452 -#: ../../godmode/snmpconsole/snmp_filters.php:238 -#: ../../godmode/snmpconsole/snmp_filters.php:253 -#: ../../godmode/tag/tag.php:273 ../../godmode/users/configure_user.php:781 -#: ../../godmode/users/profile_list.php:390 -#: ../../godmode/users/user_list.php:467 ../../godmode/users/user_list.php:469 -#: ../../include/functions_container.php:167 -#: ../../include/functions_container.php:294 -#: ../../include/functions_events.php:1753 -#: ../../include/functions_filemanager.php:751 -#: ../../include/functions_groups.php:2167 -#: ../../operation/agentes/pandora_networkmap.php:666 -#: ../../operation/events/events.build_table.php:774 -#: ../../operation/events/events.php:878 -#: ../../operation/incidents/incident_detail.php:425 -#: ../../operation/incidents/incident_detail.php:472 -#: ../../operation/messages/message_list.php:193 -#: ../../operation/messages/message_list.php:199 -#: ../../operation/snmpconsole/snmp_view.php:858 -#: ../../operation/snmpconsole/snmp_view.php:864 -#: ../../operation/snmpconsole/snmp_view.php:1019 -#: ../../operation/users/user_edit.php:810 -#: ../../enterprise/dashboard/dashboards.php:155 -#: ../../enterprise/extensions/backup/main.php:238 -#: ../../enterprise/extensions/vmware/vmware_admin.php:502 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 -#: ../../enterprise/godmode/agentes/inventory_manager.php:261 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:210 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:73 -#: ../../enterprise/godmode/alerts/alert_events_list.php:643 -#: ../../enterprise/godmode/alerts/alert_events_list.php:756 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:479 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:574 -#: ../../enterprise/godmode/modules/local_components.php:530 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:223 -#: ../../enterprise/godmode/policies/policies.php:430 -#: ../../enterprise/godmode/policies/policies.php:440 -#: ../../enterprise/godmode/policies/policies.php:458 -#: ../../enterprise/godmode/policies/policy_agents.php:347 -#: ../../enterprise/godmode/policies/policy_agents.php:521 -#: ../../enterprise/godmode/policies/policy_agents.php:680 -#: ../../enterprise/godmode/policies/policy_agents.php:734 -#: ../../enterprise/godmode/policies/policy_agents.php:798 -#: ../../enterprise/godmode/policies/policy_agents.php:921 -#: ../../enterprise/godmode/policies/policy_alerts.php:411 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:246 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:269 -#: ../../enterprise/godmode/policies/policy_modules.php:1282 -#: ../../enterprise/godmode/policies/policy_modules.php:1289 -#: ../../enterprise/godmode/policies/policy_modules.php:1318 -#: ../../enterprise/godmode/policies/policy_queue.php:460 -#: ../../enterprise/godmode/policies/policy_queue.php:496 -#: ../../enterprise/godmode/policies/policy_queue.php:512 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:175 -#: ../../enterprise/godmode/reporting/graph_template_list.php:149 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:396 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:361 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:369 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:763 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:367 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:162 -#: ../../enterprise/godmode/setup/setup_skins.php:136 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:348 -#: ../../enterprise/include/ajax/transactional.ajax.php:120 -#: ../../enterprise/include/ajax/transactional.ajax.php:212 -#: ../../enterprise/include/functions_services.php:1749 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:429 -#: ../../enterprise/meta/advanced/policymanager.queue.php:330 +#: ../../extensions/files_repo/files_repo_list.php:108 +#: ../../godmode/agentes/agent_manager.php:230 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/fields_manager.php:151 +#: ../../godmode/agentes/modificar_agente.php:702 +#: ../../godmode/agentes/module_manager.php:875 +#: ../../godmode/agentes/module_manager.php:886 +#: ../../godmode/agentes/module_manager.php:908 +#: ../../godmode/agentes/module_manager.php:928 +#: ../../godmode/agentes/module_manager.php:950 +#: ../../godmode/agentes/module_manager_editor_common.php:217 +#: ../../godmode/agentes/planned_downtime.editor.php:1133 +#: ../../godmode/alerts/alert_actions.php:246 +#: ../../godmode/alerts/alert_commands.php:443 +#: ../../godmode/alerts/alert_commands.php:445 +#: ../../godmode/alerts/alert_list.list.php:957 +#: ../../godmode/alerts/alert_special_days.php:506 +#: ../../godmode/alerts/alert_templates.php:405 +#: ../../godmode/category/category.php:129 +#: ../../godmode/category/category.php:134 +#: ../../godmode/events/event_filter.php:160 +#: ../../godmode/groups/group_list.php:639 +#: ../../godmode/groups/modu_group_list.php:249 +#: ../../godmode/groups/modu_group_list.php:252 +#: ../../godmode/massive/massive_add_action_alerts.php:234 +#: ../../godmode/massive/massive_add_alerts.php:265 +#: ../../godmode/massive/massive_add_profiles.php:169 +#: ../../godmode/massive/massive_delete_action_alerts.php:254 +#: ../../godmode/massive/massive_delete_agents.php:190 +#: ../../godmode/massive/massive_delete_modules.php:561 +#: ../../godmode/massive/massive_delete_profiles.php:176 +#: ../../godmode/massive/massive_edit_plugins.php:588 +#: ../../godmode/massive/massive_enable_disable_alerts.php:203 +#: ../../godmode/massive/massive_operations.php:287 +#: ../../godmode/massive/massive_operations.php:296 +#: ../../godmode/massive/massive_standby_alerts.php:215 +#: ../../godmode/modules/manage_nc_groups.php:261 +#: ../../godmode/modules/manage_network_components.php:741 +#: ../../godmode/modules/manage_network_templates.php:252 +#: ../../godmode/modules/manage_network_templates.php:262 +#: ../../godmode/netflow/nf_edit.php:171 +#: ../../godmode/netflow/nf_item_list.php:264 +#: ../../godmode/reporting/create_container.php:641 +#: ../../godmode/reporting/graphs.php:307 +#: ../../godmode/reporting/map_builder.php:457 +#: ../../godmode/reporting/map_builder.php:460 +#: ../../godmode/reporting/reporting_builder.php:1053 +#: ../../godmode/reporting/visual_console_builder.elements.php:405 +#: ../../godmode/servers/plugin.php:1031 ../../godmode/setup/links.php:157 +#: ../../godmode/setup/news.php:280 +#: ../../godmode/snmpconsole/snmp_alert.php:1300 +#: ../../godmode/snmpconsole/snmp_alert.php:1319 +#: ../../godmode/snmpconsole/snmp_alert.php:1560 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 ../../godmode/tag/tag.php:294 +#: ../../godmode/users/profile_list.php:366 +#: ../../godmode/users/user_list.php:545 ../../godmode/users/user_list.php:547 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:653 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:671 +#: ../../include/class/CredentialStore.class.php:1158 +#: ../../include/class/TreeGroupEdition.class.php:94 +#: ../../include/class/WelcomeWindow.class.php:171 +#: ../../include/functions_container.php:187 +#: ../../include/functions_container.php:321 +#: ../../include/functions_events.php:3515 +#: ../../include/functions_events.php.orig:3421 +#: ../../include/functions_filemanager.php:727 +#: ../../include/functions_profile.php:256 +#: ../../operation/agentes/pandora_networkmap.editor.php:570 +#: ../../operation/agentes/pandora_networkmap.php:796 +#: ../../operation/events/events.build_table.php:966 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:245 +#: ../../operation/incidents/incident_detail.php:446 +#: ../../operation/incidents/incident_detail.php:494 +#: ../../operation/incidents/list_integriaims_incidents.php:298 +#: ../../operation/messages/message_list.php:240 +#: ../../operation/messages/message_list.php:243 +#: ../../operation/snmpconsole/snmp_view.php:978 +#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1138 +#: ../../operation/users/user_edit.php:1084 +#: ../../enterprise/dashboard/dashboards.php:169 +#: ../../enterprise/extensions/backup/main.php:286 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:419 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:492 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:304 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:379 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +#: ../../enterprise/godmode/agentes/inventory_manager.php:245 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:92 +#: ../../enterprise/godmode/alerts/alert_events_list.php:728 +#: ../../enterprise/godmode/alerts/alert_events_list.php:839 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:485 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:634 +#: ../../enterprise/godmode/modules/local_components.php:610 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:427 +#: ../../enterprise/godmode/policies/policies.php:576 +#: ../../enterprise/godmode/policies/policies.php:594 +#: ../../enterprise/godmode/policies/policies.php:618 +#: ../../enterprise/godmode/policies/policy_agents.php:413 +#: ../../enterprise/godmode/policies/policy_agents.php:635 +#: ../../enterprise/godmode/policies/policy_agents.php:867 +#: ../../enterprise/godmode/policies/policy_agents.php:933 +#: ../../enterprise/godmode/policies/policy_agents.php:1030 +#: ../../enterprise/godmode/policies/policy_agents.php:1217 +#: ../../enterprise/godmode/policies/policy_alerts.php:453 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:277 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:279 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:284 +#: ../../enterprise/godmode/policies/policy_modules.php:1566 +#: ../../enterprise/godmode/policies/policy_modules.php:1579 +#: ../../enterprise/godmode/policies/policy_modules.php:1624 +#: ../../enterprise/godmode/policies/policy_queue.php:535 +#: ../../enterprise/godmode/policies/policy_queue.php:572 +#: ../../enterprise/godmode/policies/policy_queue.php:590 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:181 +#: ../../enterprise/godmode/reporting/graph_template_list.php:177 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:399 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:446 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:462 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:801 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:606 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 +#: ../../enterprise/godmode/setup/setup_skins.php:141 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:368 +#: ../../enterprise/include/ajax/transactional.ajax.php:118 +#: ../../enterprise/include/ajax/transactional.ajax.php:207 +#: ../../enterprise/include/class/AgentRepository.class.php:775 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3055 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1513 +#: ../../enterprise/include/class/Omnishell.class.php:504 +#: ../../enterprise/include/class/Omnishell.class.php:1103 +#: ../../enterprise/include/functions_services.php:2745 +#: ../../enterprise/include/functions_tasklist.php:464 +#: ../../enterprise/include/functions_tasklist.php:491 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:498 +#: ../../enterprise/meta/advanced/links.php:166 +#: ../../enterprise/meta/advanced/policymanager.queue.php:333 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1097 #: ../../enterprise/meta/monitoring/wizard/wizard.php:101 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:195 -#: ../../enterprise/operation/agentes/transactional_map.php:300 -#: ../../enterprise/operation/agentes/transactional_map.php:306 -#: ../../enterprise/operation/agentes/transactional_map.php:318 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:228 -#: ../../enterprise/operation/services/services.list.php:482 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:228 +#: ../../enterprise/operation/agentes/transactional_map.php:360 +#: ../../enterprise/operation/agentes/transactional_map.php:364 +#: ../../enterprise/operation/agentes/transactional_map.php:375 +#: ../../enterprise/operation/services/services.list.php:546 msgid "Are you sure?" msgstr "よろしいですか?" -#: ../../extensions/files_repo/files_repo_list.php:106 -#: ../../godmode/agentes/agent_template.php:251 -#: ../../godmode/agentes/fields_manager.php:129 -#: ../../godmode/agentes/module_manager.php:572 -#: ../../godmode/agentes/module_manager.php:807 -#: ../../godmode/agentes/module_manager.php:824 -#: ../../godmode/agentes/module_manager_editor_common.php:720 -#: ../../godmode/agentes/planned_downtime.editor.php:824 -#: ../../godmode/agentes/planned_downtime.editor.php:829 -#: ../../godmode/agentes/planned_downtime.editor.php:877 -#: ../../godmode/agentes/planned_downtime.list.php:402 -#: ../../godmode/agentes/planned_downtime.list.php:470 -#: ../../godmode/alerts/alert_actions.php:343 -#: ../../godmode/alerts/alert_commands.php:351 -#: ../../godmode/alerts/alert_list.list.php:711 -#: ../../godmode/alerts/alert_templates.php:345 -#: ../../godmode/events/event_filter.php:148 -#: ../../godmode/events/event_filter.php:162 -#: ../../godmode/events/event_responses.list.php:66 -#: ../../godmode/extensions.php:272 ../../godmode/extensions.php:276 -#: ../../godmode/groups/modu_group_list.php:191 -#: ../../godmode/massive/massive_delete_action_alerts.php:204 -#: ../../godmode/massive/massive_delete_agents.php:140 -#: ../../godmode/massive/massive_delete_alerts.php:238 -#: ../../godmode/massive/massive_delete_modules.php:539 -#: ../../godmode/massive/massive_delete_profiles.php:131 -#: ../../godmode/massive/massive_delete_tags.php:218 -#: ../../godmode/modules/manage_nc_groups.php:222 -#: ../../godmode/modules/manage_nc_groups.php:233 -#: ../../godmode/modules/manage_network_components.php:617 -#: ../../godmode/modules/manage_network_components.php:629 -#: ../../godmode/modules/manage_network_templates.php:214 -#: ../../godmode/modules/manage_network_templates.php:227 -#: ../../godmode/modules/manage_network_templates_form.php:221 -#: ../../godmode/netflow/nf_edit.php:146 ../../godmode/netflow/nf_edit.php:158 -#: ../../godmode/netflow/nf_item_list.php:239 -#: ../../godmode/netflow/nf_item_list.php:250 -#: ../../godmode/reporting/create_container.php:564 -#: ../../godmode/reporting/create_container.php:619 -#: ../../godmode/reporting/graph_builder.graph_editor.php:208 -#: ../../godmode/reporting/graph_builder.graph_editor.php:249 -#: ../../godmode/reporting/graphs.php:196 -#: ../../godmode/reporting/graphs.php:211 -#: ../../godmode/reporting/map_builder.php:262 -#: ../../godmode/reporting/reporting_builder.list_items.php:445 -#: ../../godmode/reporting/reporting_builder.list_items.php:472 -#: ../../godmode/reporting/reporting_builder.list_items.php:491 -#: ../../godmode/reporting/reporting_builder.list_items.php:551 -#: ../../godmode/reporting/reporting_builder.php:745 -#: ../../godmode/reporting/reporting_builder.php:789 -#: ../../godmode/reporting/visual_console_builder.elements.php:524 -#: ../../godmode/servers/recon_script.php:350 -#: ../../godmode/servers/servers.build_table.php:180 -#: ../../godmode/setup/gis.php:64 ../../godmode/setup/links.php:137 -#: ../../godmode/setup/news.php:225 ../../godmode/setup/setup_visuals.php:786 -#: ../../godmode/setup/setup_visuals.php:817 -#: ../../godmode/setup/snmp_wizard.php:122 -#: ../../godmode/snmpconsole/snmp_alert.php:1201 -#: ../../godmode/snmpconsole/snmp_alert.php:1237 -#: ../../godmode/snmpconsole/snmp_filters.php:239 -#: ../../godmode/snmpconsole/snmp_filters.php:254 -#: ../../godmode/update_manager/update_manager.messages.php:91 -#: ../../godmode/update_manager/update_manager.messages.php:165 -#: ../../godmode/users/user_list.php:467 -#: ../../include/functions_pandora_networkmap.php:1006 -#: ../../include/functions_container.php:168 -#: ../../include/functions_container.php:295 -#: ../../include/functions_groups.php:2167 -#: ../../operation/agentes/pandora_networkmap.php:571 -#: ../../operation/agentes/pandora_networkmap.php:666 -#: ../../operation/gis_maps/gis_map.php:165 -#: ../../operation/incidents/incident_detail.php:456 -#: ../../operation/messages/message_edit.php:109 -#: ../../operation/messages/message_list.php:128 -#: ../../operation/messages/message_list.php:194 -#: ../../operation/messages/message_list.php:200 -#: ../../operation/messages/message_list.php:218 -#: ../../operation/snmpconsole/snmp_view.php:858 -#: ../../operation/snmpconsole/snmp_view.php:864 -#: ../../operation/snmpconsole/snmp_view.php:1019 -#: ../../operation/snmpconsole/snmp_view.php:1044 -#: ../../enterprise/dashboard/dashboards.php:93 -#: ../../enterprise/dashboard/dashboards.php:155 -#: ../../enterprise/extensions/backup/main.php:190 -#: ../../enterprise/extensions/cron/main.php:419 -#: ../../enterprise/extensions/cron/main.php:432 -#: ../../enterprise/godmode/agentes/inventory_manager.php:262 -#: ../../enterprise/godmode/agentes/plugins_manager.php:147 -#: ../../enterprise/godmode/agentes/plugins_manager.php:218 -#: ../../enterprise/godmode/alerts/alert_events_list.php:568 -#: ../../enterprise/godmode/alerts/alert_events_list.php:646 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:480 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:191 -#: ../../enterprise/godmode/modules/local_components.php:531 -#: ../../enterprise/godmode/modules/local_components.php:543 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:224 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:237 -#: ../../enterprise/godmode/policies/policies.php:444 -#: ../../enterprise/godmode/policies/policy_agents.php:688 -#: ../../enterprise/godmode/policies/policy_agents.php:929 -#: ../../enterprise/godmode/policies/policy_alerts.php:422 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:257 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 -#: ../../enterprise/godmode/policies/policy_modules.php:1300 -#: ../../enterprise/godmode/policies/policy_modules.php:1324 -#: ../../enterprise/godmode/policies/policy_plugins.php:88 -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../enterprise/godmode/policies/policy_queue.php:399 -#: ../../enterprise/godmode/policies/policy_queue.php:441 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:177 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:188 -#: ../../enterprise/godmode/reporting/graph_template_list.php:161 -#: ../../enterprise/godmode/reporting/mysql_builder.php:42 -#: ../../enterprise/godmode/reporting/mysql_builder.php:49 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:373 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:355 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:328 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:366 -#: ../../enterprise/godmode/setup/setup_acl.php:436 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:349 -#: ../../enterprise/include/ajax/transactional.ajax.php:121 -#: ../../enterprise/include/ajax/transactional.ajax.php:213 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:433 -#: ../../enterprise/meta/advanced/metasetup.visual.php:176 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/meta/advanced/policymanager.queue.php:312 -#: ../../enterprise/meta/advanced/servers.build_table.php:132 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1425 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1594 -#: ../../enterprise/meta/include/functions_wizard_meta.php:294 -#: ../../enterprise/meta/include/functions_autoprovision.php:425 -#: ../../enterprise/meta/include/functions_autoprovision.php:584 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:267 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:428 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:620 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:196 -#: ../../enterprise/operation/agentes/transactional_map.php:319 -#: ../../enterprise/operation/services/services.list.php:483 +#: ../../extensions/files_repo/files_repo_list.php:109 +#: ../../godmode/agentes/agent_template.php:257 +#: ../../godmode/agentes/fields_manager.php:151 +#: ../../godmode/agentes/module_manager.php:655 +#: ../../godmode/agentes/module_manager.php:932 +#: ../../godmode/agentes/module_manager.php:958 +#: ../../godmode/agentes/module_manager_editor_common.php:1229 +#: ../../godmode/agentes/planned_downtime.editor.php:1085 +#: ../../godmode/agentes/planned_downtime.editor.php:1088 +#: ../../godmode/agentes/planned_downtime.editor.php:1139 +#: ../../godmode/agentes/planned_downtime.list.php:409 +#: ../../godmode/agentes/planned_downtime.list.php:489 +#: ../../godmode/alerts/alert_actions.php:186 +#: ../../godmode/alerts/alert_list.list.php:825 +#: ../../godmode/alerts/alert_templates.php:408 +#: ../../godmode/events/event_filter.php:160 +#: ../../godmode/events/event_filter.php:175 +#: ../../godmode/events/event_responses.list.php:63 +#: ../../godmode/extensions.php:260 ../../godmode/extensions.php:262 +#: ../../godmode/groups/group_list.php:648 +#: ../../godmode/groups/group_list.php:649 +#: ../../godmode/groups/modu_group_list.php:236 +#: ../../godmode/massive/massive_delete_action_alerts.php:256 +#: ../../godmode/massive/massive_delete_agents.php:192 +#: ../../godmode/massive/massive_delete_alerts.php:319 +#: ../../godmode/massive/massive_delete_modules.php:563 +#: ../../godmode/massive/massive_delete_profiles.php:178 +#: ../../godmode/modules/manage_nc_groups.php:262 +#: ../../godmode/modules/manage_nc_groups.php:272 +#: ../../godmode/modules/manage_network_components.php:741 +#: ../../godmode/modules/manage_network_components.php:762 +#: ../../godmode/modules/manage_network_templates.php:262 +#: ../../godmode/modules/manage_network_templates.php:275 +#: ../../godmode/modules/manage_network_templates_form.php:242 +#: ../../godmode/netflow/nf_edit.php:172 ../../godmode/netflow/nf_edit.php:183 +#: ../../godmode/netflow/nf_item_list.php:265 +#: ../../godmode/netflow/nf_item_list.php:275 +#: ../../godmode/reporting/create_container.php:589 +#: ../../godmode/reporting/create_container.php:642 +#: ../../godmode/reporting/graph_builder.graph_editor.php:202 +#: ../../godmode/reporting/graph_builder.graph_editor.php:242 +#: ../../godmode/reporting/graphs.php:308 +#: ../../godmode/reporting/graphs.php:325 +#: ../../godmode/reporting/map_builder.php:339 +#: ../../godmode/reporting/map_builder.php:457 +#: ../../godmode/reporting/map_builder.php:460 +#: ../../godmode/reporting/reporting_builder.list_items.php:536 +#: ../../godmode/reporting/reporting_builder.list_items.php:566 +#: ../../godmode/reporting/reporting_builder.list_items.php:589 +#: ../../godmode/reporting/reporting_builder.list_items.php:690 +#: ../../godmode/reporting/reporting_builder.php:1060 +#: ../../godmode/reporting/reporting_builder.php:1151 +#: ../../godmode/reporting/visual_console_builder.elements.php:666 +#: ../../godmode/servers/servers.build_table.php:213 +#: ../../godmode/setup/gis.php:76 ../../godmode/setup/links.php:143 +#: ../../godmode/setup/news.php:241 ../../godmode/setup/setup_visuals.php:1276 +#: ../../godmode/setup/setup_visuals.php:1312 +#: ../../godmode/setup/snmp_wizard.php:110 +#: ../../godmode/snmpconsole/snmp_alert.php:1300 +#: ../../godmode/snmpconsole/snmp_alert.php:1319 +#: ../../godmode/snmpconsole/snmp_filters.php:270 +#: ../../godmode/snmpconsole/snmp_filters.php:281 +#: ../../godmode/users/user_list.php:545 +#: ../../include/class/CredentialStore.class.php:1007 +#: ../../include/class/CredentialStore.class.php:1160 +#: ../../include/class/ManageNetScanScripts.class.php:398 +#: ../../include/class/NetworkMap.class.php:2814 +#: ../../include/functions_container.php:188 +#: ../../include/functions_container.php:322 +#: ../../include/functions_cron.php:708 ../../include/functions_cron.php:730 +#: ../../operation/agentes/pandora_networkmap.php:702 +#: ../../operation/agentes/pandora_networkmap.php:796 +#: ../../operation/gis_maps/gis_map.php:185 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:129 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:301 +#: ../../operation/incidents/incident_detail.php:478 +#: ../../operation/incidents/list_integriaims_incidents.php:299 +#: ../../operation/messages/message_list.php:169 +#: ../../operation/messages/message_list.php:240 +#: ../../operation/messages/message_list.php:243 +#: ../../operation/messages/message_list.php:261 +#: ../../operation/snmpconsole/snmp_view.php:978 +#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1138 +#: ../../operation/snmpconsole/snmp_view.php:1188 +#: ../../enterprise/dashboard/dashboards.php:119 +#: ../../enterprise/dashboard/dashboards.php:169 +#: ../../enterprise/extensions/backup/main.php:228 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:664 +#: ../../enterprise/godmode/agentes/inventory_manager.php:246 +#: ../../enterprise/godmode/agentes/plugins_manager.php:124 +#: ../../enterprise/godmode/agentes/plugins_manager.php:168 +#: ../../enterprise/godmode/alerts/alert_events_list.php:656 +#: ../../enterprise/godmode/alerts/alert_events_list.php:731 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:486 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:132 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:221 +#: ../../enterprise/godmode/modules/local_components.php:610 +#: ../../enterprise/godmode/modules/local_components.php:623 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:428 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:443 +#: ../../enterprise/godmode/policies/policies.php:603 +#: ../../enterprise/godmode/policies/policy_agents.php:874 +#: ../../enterprise/godmode/policies/policy_agents.php:1225 +#: ../../enterprise/godmode/policies/policy_alerts.php:474 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:298 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:285 +#: ../../enterprise/godmode/policies/policy_modules.php:1600 +#: ../../enterprise/godmode/policies/policy_modules.php:1630 +#: ../../enterprise/godmode/policies/policy_queue.php:422 +#: ../../enterprise/godmode/policies/policy_queue.php:482 +#: ../../enterprise/godmode/policies/policy_queue.php:515 +#: ../../enterprise/godmode/policies/policy_plugins.php:121 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:182 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:192 +#: ../../enterprise/godmode/reporting/graph_template_list.php:189 +#: ../../enterprise/godmode/reporting/mysql_builder.php:67 +#: ../../enterprise/godmode/reporting/mysql_builder.php:74 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:469 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:495 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:431 +#: ../../enterprise/godmode/reporting/visual_console_template.php:199 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:284 +#: ../../enterprise/godmode/setup/setup_acl.php:497 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:369 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:72 +#: ../../enterprise/include/ajax/transactional.ajax.php:119 +#: ../../enterprise/include/ajax/transactional.ajax.php:208 +#: ../../enterprise/include/class/AgentRepository.class.php:758 +#: ../../enterprise/include/class/AgentRepository.class.php:793 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2115 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2760 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3070 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1531 +#: ../../enterprise/include/class/Omnishell.class.php:1111 +#: ../../enterprise/include/functions_tasklist.php:468 +#: ../../enterprise/include/functions_tasklist.php:495 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:501 +#: ../../enterprise/meta/advanced/links.php:152 +#: ../../enterprise/meta/advanced/metasetup.visual.php:240 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:315 +#: ../../enterprise/meta/advanced/servers.build_table.php:135 +#: ../../enterprise/meta/include/functions_autoprovision.php:491 +#: ../../enterprise/meta/include/functions_autoprovision.php:492 +#: ../../enterprise/meta/include/functions_autoprovision.php:657 +#: ../../enterprise/meta/include/functions_autoprovision.php:658 +#: ../../enterprise/meta/include/functions_wizard_meta.php:396 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:280 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:446 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:638 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:229 +#: ../../enterprise/operation/agentes/transactional_map.php:376 +#: ../../enterprise/operation/services/services.list.php:547 msgid "Delete" msgstr "削除" -#: ../../extensions/files_repo/files_repo_list.php:115 +#: ../../extensions/files_repo/files_repo_list.php:119 msgid "No items" msgstr "アイテムがありません。" -#: ../../extensions/files_repo/functions_files_repo.php:29 -#: ../../extensions/files_repo/functions_files_repo.php:40 -#: ../../include/functions_config.php:1988 +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 msgid "Attachment directory is not writable by HTTP Server" msgstr "添付ファイルディレクトリが HTTP サーバから書き込みできません。" -#: ../../extensions/files_repo/functions_files_repo.php:30 -#: ../../extensions/files_repo/functions_files_repo.php:41 +#: ../../extensions/files_repo/functions_files_repo.php:28 +#: ../../extensions/files_repo/functions_files_repo.php:46 #, php-format msgid "Please check that the web server has write rights on the %s directory" msgstr "Webサーバがディレクトリ %s に書き込む権限があるか確認してください。" -#: ../../extensions/files_repo/functions_files_repo.php:229 +#: ../../extensions/files_repo/functions_files_repo.php:248 msgid "The file could not be copied" msgstr "ファイルをコピーできませんでした" -#: ../../extensions/files_repo/functions_files_repo.php:233 +#: ../../extensions/files_repo/functions_files_repo.php:251 msgid "There was an error creating the file" msgstr "ファイル作成でエラーが発生しました" -#: ../../extensions/files_repo/functions_files_repo.php:274 +#: ../../extensions/files_repo/functions_files_repo.php:295 msgid "There was an error updating the file" msgstr "ファイル更新でエラーが発生しました" -#: ../../extensions/files_repo.php:91 +#: ../../extensions/files_repo.php:103 msgid "Extension not installed" msgstr "拡張がインストールされていません" -#: ../../extensions/files_repo.php:104 ../../extensions/files_repo.php:187 -#: ../../enterprise/extensions/ipam.php:213 -#: ../../enterprise/extensions/ipam.php:226 -#: ../../enterprise/extensions/ipam.php:292 +#: ../../extensions/files_repo.php:115 ../../extensions/files_repo.php:204 +#: ../../enterprise/extensions/ipam.php:296 +#: ../../enterprise/extensions/ipam.php:308 +#: ../../enterprise/extensions/ipam.php:415 msgid "Administration view" msgstr "管理画面" -#: ../../extensions/files_repo.php:110 ../../extensions/files_repo.php:192 -#: ../../enterprise/extensions/ipam.php:159 -#: ../../enterprise/extensions/ipam.php:300 +#: ../../extensions/files_repo.php:119 ../../extensions/files_repo.php:207 +#: ../../enterprise/extensions/ipam.php:170 +#: ../../enterprise/extensions/ipam.php:423 msgid "Operation view" msgstr "操作画面" -#: ../../extensions/files_repo.php:116 ../../extensions/files_repo.php:218 +#: ../../extensions/files_repo.php:127 ../../extensions/files_repo.php:237 msgid "Files repository manager" msgstr "ファイルリポジトリ管理" -#: ../../extensions/files_repo.php:133 ../../include/functions.php:2214 -#: ../../include/functions.php:2217 +#: ../../extensions/files_repo.php:145 ../../include/functions.php:2729 +#: ../../include/functions.php:2733 msgid "The file exceeds the maximum size" msgstr "ファイルサイズが上限を超えています。" -#: ../../extensions/files_repo.php:166 -#: ../../godmode/agentes/planned_downtime.list.php:107 -#: ../../godmode/alerts/alert_actions.php:332 -#: ../../godmode/alerts/alert_commands.php:337 -#: ../../godmode/alerts/alert_list.php:145 -#: ../../godmode/alerts/alert_list.php:213 -#: ../../godmode/alerts/alert_special_days.php:223 -#: ../../godmode/alerts/alert_templates.php:225 -#: ../../godmode/events/event_filter.php:56 -#: ../../godmode/events/event_filter.php:77 -#: ../../godmode/massive/massive_delete_action_alerts.php:114 -#: ../../godmode/massive/massive_delete_alerts.php:156 -#: ../../godmode/massive/massive_delete_modules.php:250 -#: ../../godmode/massive/massive_delete_tags.php:151 -#: ../../godmode/modules/manage_nc_groups.php:122 -#: ../../godmode/modules/manage_network_components.php:372 -#: ../../godmode/netflow/nf_edit.php:76 ../../godmode/netflow/nf_edit.php:100 -#: ../../godmode/netflow/nf_item_list.php:105 -#: ../../godmode/netflow/nf_item_list.php:126 -#: ../../godmode/reporting/graphs.php:89 ../../godmode/reporting/graphs.php:97 -#: ../../godmode/reporting/graphs.php:139 -#: ../../godmode/reporting/map_builder.php:94 -#: ../../godmode/reporting/reporting_builder.php:446 -#: ../../godmode/setup/gis.php:57 ../../godmode/setup/links.php:69 -#: ../../godmode/setup/news.php:97 -#: ../../godmode/snmpconsole/snmp_alert.php:560 -#: ../../godmode/snmpconsole/snmp_filters.php:128 -#: ../../godmode/users/configure_user.php:478 -#: ../../godmode/users/profile_list.php:94 -#: ../../godmode/users/user_list.php:147 ../../godmode/users/user_list.php:188 -#: ../../operation/events/events.php:562 -#: ../../operation/gis_maps/gis_map.php:74 -#: ../../operation/incidents/incident.php:66 -#: ../../operation/incidents/incident_detail.php:85 -#: ../../operation/incidents/incident_detail.php:114 -#: ../../operation/messages/message_list.php:56 -#: ../../operation/messages/message_list.php:73 -#: ../../operation/reporting/graph_viewer.php:44 -#: ../../operation/reporting/graph_viewer.php:51 -#: ../../operation/snmpconsole/snmp_view.php:113 -#: ../../enterprise/dashboard/dashboards.php:53 -#: ../../enterprise/extensions/ipam/ipam_action.php:64 -#: ../../enterprise/godmode/alerts/alert_events_list.php:160 -#: ../../enterprise/godmode/alerts/alert_events_list.php:204 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:281 -#: ../../enterprise/godmode/modules/local_components.php:330 -#: ../../enterprise/godmode/policies/policies.php:174 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:119 -#: ../../enterprise/godmode/reporting/graph_template_list.php:89 -#: ../../enterprise/godmode/reporting/graph_template_list.php:109 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:117 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:225 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:53 -#: ../../enterprise/operation/agentes/transactional_map.php:132 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/agentes/planned_downtime.list.php:112 +#: ../../godmode/alerts/alert_actions.php:173 +#: ../../godmode/alerts/alert_commands.php:368 +#: ../../godmode/alerts/alert_list.php:227 +#: ../../godmode/alerts/alert_list.php:325 +#: ../../godmode/alerts/alert_special_days.php:250 +#: ../../godmode/alerts/alert_templates.php:251 +#: ../../godmode/events/event_filter.php:54 +#: ../../godmode/events/event_filter.php:81 +#: ../../godmode/massive/massive_delete_action_alerts.php:124 +#: ../../godmode/massive/massive_delete_alerts.php:179 +#: ../../godmode/massive/massive_delete_modules.php:143 +#: ../../godmode/modules/manage_nc_groups.php:141 +#: ../../godmode/modules/manage_network_components.php:417 +#: ../../godmode/netflow/nf_edit.php:91 ../../godmode/netflow/nf_edit.php:124 +#: ../../godmode/netflow/nf_item_list.php:122 +#: ../../godmode/netflow/nf_item_list.php:150 +#: ../../godmode/reporting/graphs.php:97 ../../godmode/reporting/graphs.php:107 +#: ../../godmode/reporting/graphs.php:150 +#: ../../godmode/reporting/map_builder.php:158 +#: ../../godmode/reporting/reporting_builder.php:623 +#: ../../godmode/setup/gis.php:67 ../../godmode/setup/links.php:73 +#: ../../godmode/setup/news.php:112 +#: ../../godmode/snmpconsole/snmp_alert.php:680 +#: ../../godmode/snmpconsole/snmp_filters.php:159 +#: ../../godmode/users/configure_user.php:628 +#: ../../godmode/users/profile_list.php:86 +#: ../../godmode/users/user_list.php:173 ../../godmode/users/user_list.php:220 +#: ../../include/functions_api.php:13915 +#: ../../operation/gis_maps/gis_map.php:86 +#: ../../operation/incidents/incident.php:98 +#: ../../operation/incidents/incident_detail.php:96 +#: ../../operation/incidents/incident_detail.php:134 +#: ../../operation/incidents/list_integriaims_incidents.php:78 +#: ../../operation/messages/message_list.php:85 +#: ../../operation/messages/message_list.php:103 +#: ../../operation/reporting/graph_viewer.php:39 +#: ../../operation/reporting/graph_viewer.php:47 +#: ../../operation/snmpconsole/snmp_view.php:112 +#: ../../enterprise/dashboard/dashboards.php:76 +#: ../../enterprise/extensions/ipam/ipam_action.php:84 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:148 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:222 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:112 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:184 +#: ../../enterprise/godmode/alerts/alert_events_list.php:180 +#: ../../enterprise/godmode/alerts/alert_events_list.php:232 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 +#: ../../enterprise/godmode/modules/local_components.php:359 +#: ../../enterprise/godmode/policies/policies.php:172 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:644 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:652 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1128 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1136 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:97 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:125 +#: ../../enterprise/godmode/reporting/graph_template_list.php:99 +#: ../../enterprise/godmode/reporting/graph_template_list.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:301 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:235 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:135 +#: ../../enterprise/include/class/DatabaseHA.class.php:919 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:243 +#: ../../enterprise/meta/advanced/links.php:81 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:65 +#: ../../enterprise/operation/agentes/transactional_map.php:156 msgid "Successfully deleted" msgstr "削除しました。" -#: ../../extensions/files_repo.php:166 -#: ../../godmode/alerts/alert_actions.php:333 -#: ../../godmode/alerts/alert_commands.php:338 -#: ../../godmode/alerts/alert_list.php:145 -#: ../../godmode/alerts/alert_list.php:213 -#: ../../godmode/alerts/alert_special_days.php:224 -#: ../../godmode/alerts/alert_templates.php:226 -#: ../../godmode/massive/massive_delete_action_alerts.php:115 -#: ../../godmode/massive/massive_delete_alerts.php:157 -#: ../../godmode/massive/massive_delete_tags.php:152 -#: ../../godmode/modules/manage_network_components.php:373 -#: ../../godmode/reporting/reporting_builder.php:447 -#: ../../godmode/setup/gis.php:55 ../../godmode/setup/news.php:98 -#: ../../godmode/users/configure_user.php:479 -#: ../../operation/agentes/pandora_networkmap.php:427 -#: ../../operation/events/events.php:563 -#: ../../operation/gis_maps/gis_map.php:75 -#: ../../operation/incidents/incident.php:67 -#: ../../operation/incidents/incident_detail.php:86 -#: ../../operation/incidents/incident_detail.php:115 -#: ../../operation/messages/message_list.php:57 -#: ../../operation/snmpconsole/snmp_view.php:114 -#: ../../enterprise/dashboard/dashboards.php:54 -#: ../../enterprise/extensions/ipam/ipam_action.php:61 -#: ../../enterprise/godmode/alerts/alert_events_list.php:161 -#: ../../enterprise/godmode/alerts/alert_events_list.php:205 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:282 -#: ../../enterprise/godmode/modules/local_components.php:331 +#: ../../extensions/files_repo.php:181 +#: ../../godmode/alerts/alert_actions.php:174 +#: ../../godmode/alerts/alert_commands.php:369 +#: ../../godmode/alerts/alert_list.php:228 +#: ../../godmode/alerts/alert_list.php:326 +#: ../../godmode/alerts/alert_special_days.php:251 +#: ../../godmode/alerts/alert_templates.php:252 +#: ../../godmode/massive/massive_delete_action_alerts.php:125 +#: ../../godmode/massive/massive_delete_alerts.php:180 +#: ../../godmode/modules/manage_network_components.php:418 +#: ../../godmode/reporting/reporting_builder.php:624 +#: ../../godmode/setup/gis.php:65 ../../godmode/setup/news.php:113 +#: ../../godmode/users/configure_user.php:629 +#: ../../operation/agentes/pandora_networkmap.php:539 +#: ../../operation/gis_maps/gis_map.php:87 +#: ../../operation/incidents/incident.php:99 +#: ../../operation/incidents/incident_detail.php:97 +#: ../../operation/incidents/incident_detail.php:135 +#: ../../operation/incidents/list_integriaims_incidents.php:79 +#: ../../operation/messages/message_list.php:86 +#: ../../operation/snmpconsole/snmp_view.php:113 +#: ../../enterprise/dashboard/dashboards.php:77 +#: ../../enterprise/extensions/ipam/ipam_action.php:82 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:146 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:220 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:110 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:182 +#: ../../enterprise/godmode/alerts/alert_events_list.php:181 +#: ../../enterprise/godmode/alerts/alert_events_list.php:233 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:270 +#: ../../enterprise/godmode/modules/local_components.php:360 #: ../../enterprise/godmode/policies/policies.php:175 -#: ../../enterprise/godmode/policies/policy_agents.php:96 -#: ../../enterprise/godmode/policies/policy_agents.php:118 -#: ../../enterprise/godmode/policies/policy_alerts.php:165 -#: ../../enterprise/godmode/policies/policy_alerts.php:206 -#: ../../enterprise/godmode/policies/policy_collections.php:69 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:96 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:141 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:96 -#: ../../enterprise/godmode/policies/policy_modules.php:1128 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:245 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:191 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:118 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:54 -#: ../../enterprise/operation/agentes/transactional_map.php:133 +#: ../../enterprise/godmode/policies/policy_agents.php:115 +#: ../../enterprise/godmode/policies/policy_agents.php:137 +#: ../../enterprise/godmode/policies/policy_alerts.php:199 +#: ../../enterprise/godmode/policies/policy_alerts.php:240 +#: ../../enterprise/godmode/policies/policy_collections.php:77 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:108 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:135 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:135 +#: ../../enterprise/godmode/policies/policy_modules.php:1336 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:645 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:653 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1129 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1137 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:302 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:136 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:66 +#: ../../enterprise/operation/agentes/transactional_map.php:157 msgid "Could not be deleted" msgstr "削除できませんでした。" -#: ../../extensions/files_repo.php:200 ../../extensions/files_repo.php:216 +#: ../../extensions/files_repo.php:218 ../../extensions/files_repo.php:235 msgid "Files repository" msgstr "ファイルリポジトリ" -#: ../../extensions/insert_data.php:56 +#: ../../extensions/insert_data.php:58 msgid "Insert data" msgstr "データの挿入" -#: ../../extensions/insert_data.php:93 +#: ../../extensions/insert_data.php:86 msgid "You haven't privileges for insert data in the agent." msgstr "エージェントにデータを挿入する権限がありません。" -#: ../../extensions/insert_data.php:130 +#: ../../extensions/insert_data.php:122 #, php-format msgid "Can't save agent (%s), module (%s) data xml." msgstr "エージェント(%s)、モジュール(%s) のデータを保存できません。" -#: ../../extensions/insert_data.php:137 +#: ../../extensions/insert_data.php:131 #, php-format msgid "Save agent (%s), module (%s) data xml." msgstr "エージェント(%s)、モジュール(%s) のデータを保存しました。" -#: ../../extensions/insert_data.php:146 +#: ../../extensions/insert_data.php:142 #, php-format msgid "" "Please check that the directory \"%s\" is writeable by the apache user.

    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\tここに、.pspz 圧縮フォーマットでサーバプラグインをアップロードできます。\n" +"\t\t\t\t\t\tサーバープラグインの入手方法および使用方法については、公式ドキュメントを参照してください。\n" +"\t\t\t\t\t\t

    プラグインは公開リソースライブラリから入手できます。 " -#: ../../extensions/plugin_registration.php:84 +#: ../../extensions/plugin_registration.php:86 msgid "Cannot load INI file" msgstr "INI ファイルをロードできません。" @@ -3770,183 +4463,339 @@ msgstr "INI ファイルをロードできません。" msgid "Plugin exec not found. Aborting!" msgstr "実行可能なプラグインがありません。中止します。" -#: ../../extensions/plugin_registration.php:120 +#: ../../extensions/plugin_registration.php:117 msgid "Plugin already registered. Aborting!" msgstr "プラグインは既に登録されています。中止します。" -#: ../../extensions/plugin_registration.php:291 +#: ../../extensions/plugin_registration.php:281 msgid "Plug-in Remote Registered unsuccessfull" msgstr "プラグインのリモート登録に失敗しました" -#: ../../extensions/plugin_registration.php:293 +#: ../../extensions/plugin_registration.php:284 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "\"plugin_definition.ini\" の書式を確認してください。" -#: ../../extensions/plugin_registration.php:417 +#: ../../extensions/plugin_registration.php:403 msgid "Module plugin registered" msgstr "モジュールプラグインを登録しました。" -#: ../../extensions/plugin_registration.php:422 -#: ../../godmode/agentes/module_manager_editor_plugin.php:50 -#: ../../godmode/massive/massive_edit_modules.php:671 -#: ../../godmode/massive/massive_edit_plugins.php:287 -#: ../../godmode/modules/manage_network_components_form_plugin.php:22 -#: ../../enterprise/extensions/vmware/vmware_admin.php:360 +#: ../../extensions/plugin_registration.php:406 +#: ../../godmode/agentes/module_manager_editor_plugin.php:49 +#: ../../godmode/massive/massive_edit_modules.php:1091 +#: ../../godmode/massive/massive_edit_plugins.php:324 +#: ../../godmode/modules/manage_network_components_form_plugin.php:35 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:928 msgid "Plugin" msgstr "プラグイン" -#: ../../extensions/plugin_registration.php:422 +#: ../../extensions/plugin_registration.php:406 msgid "Registered successfully" msgstr "登録しました。" -#: ../../extensions/plugin_registration.php:432 +#: ../../extensions/plugin_registration.php:417 msgid "Register plugin" msgstr "プラグインの登録" -#: ../../extensions/realtime_graphs.php:29 -#: ../../extensions/realtime_graphs.php:136 +#: ../../extensions/quick_shell.php:104 ../../extensions/quick_shell.php:206 +msgid "WebService engine has not been started, please check documentation." +msgstr "ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" + +#: ../../extensions/quick_shell.php:116 +msgid "Retry" +msgstr "再試行" + +#: ../../extensions/quick_shell.php:138 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:460 +#: ../../godmode/agentes/module_manager_editor_wmi.php:63 +#: ../../godmode/massive/massive_edit_modules.php:834 +#: ../../godmode/modules/manage_network_components_form_wmi.php:47 +#: ../../include/class/CredentialStore.class.php:878 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:692 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:495 +#: ../../enterprise/include/functions_ui.php:102 +msgid "Username" +msgstr "ユーザ名" + +#: ../../extensions/quick_shell.php:145 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:730 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:467 +#: ../../godmode/agentes/module_manager_editor_network.php:126 +#: ../../godmode/massive/massive_edit_modules.php:1073 +#: ../../godmode/modules/manage_network_components_form_network.php:53 +#: ../../godmode/servers/modificar_server.php:82 +#: ../../include/functions_config.php:1399 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:906 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:725 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:436 +#: ../../enterprise/godmode/servers/manage_export_form.php:115 +#: ../../enterprise/godmode/setup/setup_history.php:51 +msgid "Port" +msgstr "ポート番号" + +#: ../../extensions/quick_shell.php:154 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:358 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:227 +#: ../../enterprise/meta/include/functions_autoprovision.php:614 +msgid "Method" +msgstr "方法" + +#: ../../extensions/quick_shell.php:159 +#: ../../godmode/agentes/module_manager_editor_network.php:469 +#: ../../enterprise/godmode/servers/HA_cluster.php:128 +msgid "SSH" +msgstr "SSH" + +#: ../../extensions/quick_shell.php:160 +msgid "Telnet" +msgstr "Telnet" + +#: ../../extensions/quick_shell.php:168 +msgid "Connect" +msgstr "接続" + +#: ../../extensions/quick_shell.php:195 +msgid "Please use SSH or Telnet." +msgstr "SSH または Telnet を利用してください。" + +#: ../../extensions/quick_shell.php:228 +msgid "" +"WebService engine is not working properly, please check documentation." +msgstr "ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してください。" + +#: ../../extensions/quick_shell.php:381 +#, php-format +msgid "%d Updated" +msgstr "%d 更新" + +#: ../../extensions/quick_shell.php:384 +#, php-format +msgid "%d Updated, please restart WebSocket engine service" +msgstr "%d 更新、WebSocket サービスを再起動してください。" + +#: ../../extensions/quick_shell.php:394 +msgid "Quickshell" +msgstr "クイックシェル" + +#: ../../extensions/quick_shell.php:404 +msgid "Gotty path" +msgstr "Gotty パス" + +#: ../../extensions/quick_shell.php:414 +msgid "Gotty host" +msgstr "Gotty ホスト" + +#: ../../extensions/quick_shell.php:424 +msgid "Gotty ssh port" +msgstr "Gotty ssh ポート" + +#: ../../extensions/quick_shell.php:434 +msgid "Gotty telnet port" +msgstr "Gotty telnet ポート" + +#: ../../extensions/quick_shell.php:451 +msgid "Gotty user" +msgstr "Gotty ユーザ" + +#: ../../extensions/quick_shell.php:452 +msgid "Optional, set a user to access gotty service" +msgstr "オプション、gotty サービスへアクセスするユーザを設定" + +#: ../../extensions/quick_shell.php:464 +msgid "Gotty password" +msgstr "Gotty パスワード" + +#: ../../extensions/quick_shell.php:465 +msgid "Optional, set a password to access gotty service" +msgstr "オプション、gotty サービスへアクセスするパスワードを設定" + +#: ../../extensions/quick_shell.php:482 +#: ../../godmode/agentes/agent_manager.php:816 +#: ../../godmode/agentes/agent_manager.php:958 +#: ../../godmode/agentes/module_manager_editor.php:700 +#: ../../godmode/massive/massive_add_action_alerts.php:212 +#: ../../godmode/massive/massive_edit_agents.php:728 +#: ../../include/functions_visual_map_editor.php:805 +#: ../../operation/events/events.php:1246 +#: ../../operation/events/events_list.php:1016 +#: ../../enterprise/godmode/alerts/alert_events_list.php:688 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 +#: ../../enterprise/godmode/policies/policy_modules.php:403 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:112 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:169 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:559 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 +#: ../../enterprise/operation/log/log_viewer.php:625 +msgid "Advanced options" +msgstr "拡張オプション" + +#: ../../extensions/quick_shell.php:506 +msgid "QuickShell" +msgstr "クイックシェル" + +#: ../../extensions/realtime_graphs.php:33 +#: ../../extensions/realtime_graphs.php:211 msgid "Realtime graphs" msgstr "リアルタイムグラフ" -#: ../../extensions/realtime_graphs.php:61 -msgid "Pandora Server CPU" -msgstr "Pandora サーバ CPU" +#: ../../extensions/realtime_graphs.php:98 +#, php-format +msgid "%s Server CPU" +msgstr "%s サーバ CPU" -#: ../../extensions/realtime_graphs.php:62 -msgid "Pandora Server Pending packets" -msgstr "Pandora サーバ処理待ちデータ" +#: ../../extensions/realtime_graphs.php:99 +#, php-format +msgid "Pending packages from %s Server" +msgstr "" -#: ../../extensions/realtime_graphs.php:63 -msgid "Pandora Server Disk IO Wait" -msgstr "Pandora サーバ ディスク I/O ウエイト" +#: ../../extensions/realtime_graphs.php:100 +#, php-format +msgid "%s Server Disk IO Wait" +msgstr "%s サーバディスク IO ウエイト" -#: ../../extensions/realtime_graphs.php:64 -msgid "Pandora Server Apache load" -msgstr "Pandora サーバ Apache のロード" +#: ../../extensions/realtime_graphs.php:101 +#, php-format +msgid "%s Server Apache load" +msgstr "%s サーバ Apache 負荷" -#: ../../extensions/realtime_graphs.php:65 -msgid "Pandora Server MySQL load" -msgstr "Pandora サーバ MySQL のロード" +#: ../../extensions/realtime_graphs.php:102 +#, php-format +msgid "%s Server MySQL load" +msgstr "%s サーバ MySQL 負荷" -#: ../../extensions/realtime_graphs.php:66 -msgid "Pandora Server load" -msgstr "Pandora サーバのロード" +#: ../../extensions/realtime_graphs.php:103 +#, php-format +msgid "%s Server load" +msgstr "%s サーバ負荷" -#: ../../extensions/realtime_graphs.php:67 +#: ../../extensions/realtime_graphs.php:104 msgid "SNMP Interface throughput" msgstr "SNMP インタフェーススループット" -#: ../../extensions/realtime_graphs.php:72 ../../include/ajax/module.php:786 -#: ../../include/functions_pandora_networkmap.php:1648 -#: ../../include/functions_events.php:2204 -#: ../../include/functions_visual_map_editor.php:56 -#: ../../operation/agentes/status_monitor.php:985 -#: ../../operation/search_modules.php:52 -#: ../../enterprise/dashboard/widgets/custom_graph.php:33 -#: ../../enterprise/include/ajax/clustermap.php:67 -#: ../../enterprise/include/ajax/clustermap.php:277 -#: ../../enterprise/operation/agentes/tag_view.php:535 -#: ../../enterprise/operation/services/services.list.php:344 -#: ../../enterprise/operation/services/services.service.php:143 +#: ../../extensions/realtime_graphs.php:110 +#: ../../godmode/agentes/status_monitor_custom_fields.php:101 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../include/ajax/module.php:841 +#: ../../include/class/NetworkMap.class.php:2934 +#: ../../include/functions_events.php:4161 +#: ../../include/functions_events.php.orig:4067 +#: ../../include/functions_visual_map_editor.php:58 +#: ../../operation/agentes/status_monitor.php:1145 +#: ../../operation/search_modules.php:36 +#: ../../enterprise/dashboard/widgets/custom_graph.php:35 +#: ../../enterprise/include/ajax/clustermap.php:73 +#: ../../enterprise/include/ajax/clustermap.php:292 +#: ../../enterprise/operation/agentes/tag_view.php:654 +#: ../../enterprise/operation/services/services.list.php:415 +#: ../../enterprise/operation/services/services.service.php:177 msgid "Graph" msgstr "グラフ" -#: ../../extensions/realtime_graphs.php:79 +#: ../../extensions/realtime_graphs.php:142 msgid "Refresh interval" msgstr "更新間隔" -#: ../../extensions/realtime_graphs.php:80 +#: ../../extensions/realtime_graphs.php:144 msgid "Incremental" msgstr "インクリメンタル" -#: ../../extensions/realtime_graphs.php:81 +#: ../../extensions/realtime_graphs.php:147 msgid "Clear graph" msgstr "グラフをクリア" -#: ../../extensions/realtime_graphs.php:94 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:705 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:423 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:297 -#: ../../godmode/agentes/module_manager_editor_network.php:67 +#: ../../extensions/realtime_graphs.php:158 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:727 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:464 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:440 +#: ../../godmode/agentes/module_manager_editor_network.php:80 #: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/massive/massive_edit_modules.php:514 -#: ../../include/functions_snmp_browser.php:552 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:694 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:412 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:296 +#: ../../godmode/massive/massive_edit_modules.php:749 +#: ../../include/functions_snmp_browser.php:615 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:600 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:722 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:433 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:475 msgid "Target IP" msgstr "対象IP" -#: ../../extensions/realtime_graphs.php:97 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:69 -#: ../../include/functions_snmp_browser.php:554 +#: ../../extensions/realtime_graphs.php:161 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:82 +#: ../../include/functions_snmp_browser.php:624 msgid "Community" msgstr "コミュニティ" -#: ../../extensions/realtime_graphs.php:108 -#: ../../godmode/setup/snmp_wizard.php:41 -#: ../../include/functions_snmp_browser.php:447 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 +#: ../../extensions/realtime_graphs.php:172 +#: ../../godmode/setup/snmp_wizard.php:42 +#: ../../include/functions_snmp_browser.php:501 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:284 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:338 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:56 msgid "OID" msgstr "OID" -#: ../../extensions/realtime_graphs.php:111 ../../godmode/extensions.php:144 -#: ../../godmode/servers/servers.build_table.php:67 -#: ../../include/functions_snmp_browser.php:559 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:39 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:388 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../extensions/realtime_graphs.php:175 ../../godmode/extensions.php:137 +#: ../../godmode/servers/servers.build_table.php:68 +#: ../../include/functions_snmp_browser.php:643 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:40 +#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/include/class/AgentRepository.class.php:360 +#: ../../enterprise/include/class/AgentRepository.class.php:615 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:623 +#: ../../enterprise/meta/advanced/servers.build_table.php:61 msgid "Version" msgstr "バージョン" -#: ../../extensions/realtime_graphs.php:112 -#: ../../godmode/agentes/module_manager_editor_network.php:161 +#: ../../extensions/realtime_graphs.php:176 +#: ../../godmode/agentes/module_manager_editor_network.php:266 msgid "SNMP walk" msgstr "snmpwalk" -#: ../../extensions/realtime_graphs.php:125 -#: ../../godmode/agentes/module_manager_editor_network.php:30 +#: ../../extensions/realtime_graphs.php:199 +#: ../../godmode/agentes/module_manager_editor_network.php:43 msgid "Use this OID" msgstr "この OID を利用" -#: ../../extensions/resource_exportation.php:53 -#: ../../extensions/resource_exportation.php:338 +#: ../../extensions/resource_exportation.php:47 +#: ../../extensions/resource_exportation.php:410 msgid "Resource exportation" msgstr "リソースのエクスポート" -#: ../../extensions/resource_exportation.php:341 -msgid "" -"This extension makes exportation of resource template more easy. Here you " -"can export as a resource template in Pandora FMS 3.x format (.ptr). " -msgstr "" -"この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS 3.x " -"フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 " +#: ../../extensions/resource_exportation.php:413 +msgid "This extension makes exportation of resource template more easy." +msgstr "この拡張機能により、リソーステンプレートのエクスポートがより簡単になります。" -#: ../../extensions/resource_exportation.php:352 -#: ../../enterprise/dashboard/widgets/reports.php:27 -#: ../../enterprise/dashboard/widgets/reports.php:43 -#: ../../enterprise/extensions/cron/functions.php:487 -#: ../../enterprise/extensions/cron/main.php:281 -#: ../../enterprise/extensions/cron/main.php:360 -#: ../../enterprise/extensions/cron/main.php:386 +#: ../../extensions/resource_exportation.php:413 +msgid "You can export resource templates in .ptr format." +msgstr "リソーステンプレートを .ptr フォーマットでエクスポートできます。" + +#: ../../extensions/resource_exportation.php:423 +#: ../../include/functions_cron.php:505 ../../include/functions_cron.php:620 +#: ../../include/functions_cron.php:650 +#: ../../enterprise/dashboard/widgets/reports.php:46 +#: ../../enterprise/include/functions_cron.php:1156 +#: ../../enterprise/include/functions_tasklist.php:221 +#: ../../enterprise/include/functions_tasklist.php:343 +#: ../../enterprise/include/functions_tasklist.php:374 msgid "Report" msgstr "レポート" -#: ../../extensions/resource_exportation.php:354 -#: ../../extensions/resource_exportation.php:357 -#: ../../operation/agentes/exportdata.php:341 -#: ../../enterprise/extensions/resource_exportation/functions.php:20 +#: ../../extensions/resource_exportation.php:425 +#: ../../extensions/resource_exportation.php:428 +#: ../../operation/agentes/exportdata.php:372 +#: ../../enterprise/extensions/resource_exportation/functions.php:21 msgid "Export" msgstr "エクスポート" -#: ../../extensions/resource_exportation.php:355 -#: ../../godmode/users/configure_user.php:587 ../../operation/menu.php:134 -#: ../../operation/menu.php:139 ../../operation/users/user_edit.php:279 -#: ../../enterprise/meta/screens/screens.visualmap.php:156 -#: ../../enterprise/meta/screens/screens.visualmap.php:160 +#: ../../extensions/resource_exportation.php:426 +#: ../../godmode/reporting/map_builder.php:93 +#: ../../godmode/reporting/visual_console_favorite.php:87 +#: ../../godmode/users/configure_user.php:840 ../../operation/menu.php:185 +#: ../../operation/menu.php:189 ../../operation/users/user_edit.php:339 +#: ../../enterprise/extensions/visual_console_manager.php:176 +#: ../../enterprise/godmode/reporting/visual_console_template.php:96 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:95 +#: ../../enterprise/meta/screens/screens.visualmap.php:188 +#: ../../enterprise/meta/screens/screens.visualmap.php:193 msgid "Visual console" msgstr "ビジュアルコンソール" @@ -3960,235 +4809,213 @@ msgstr "レポート '%s' に、アイテム '%s' を追加しました。" msgid "Error create '%s' item in report '%s'." msgstr "レポート '%s' にアイテム '%s' の追加でエラーになりました。" -#: ../../extensions/resource_registration.php:68 +#: ../../extensions/resource_registration.php:71 #, php-format msgid "Error create '%s' report, the name exist and there aren't free name." msgstr "レポート '%s' でエラーです。指定の名前はすでに使われています。" -#: ../../extensions/resource_registration.php:75 +#: ../../extensions/resource_registration.php:79 #, php-format msgid "" "Warning create '%s' report, the name exist, the report have a name %s." msgstr "レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は %s です。" -#: ../../extensions/resource_registration.php:82 +#: ../../extensions/resource_registration.php:88 msgid "Error the report haven't name." msgstr "レポートに名前がありません。" -#: ../../extensions/resource_registration.php:88 +#: ../../extensions/resource_registration.php:94 msgid "Error the report haven't group." msgstr "レポートにグループがありません。" -#: ../../extensions/resource_registration.php:98 +#: ../../extensions/resource_registration.php:106 #, php-format msgid "Success create '%s' report." msgstr "レポート '%s' を作成しました。" -#: ../../extensions/resource_registration.php:99 +#: ../../extensions/resource_registration.php:107 #, php-format msgid "Error create '%s' report." msgstr "レポート '%s' の作成に失敗しました。" -#: ../../extensions/resource_registration.php:327 -#: ../../extensions/resource_registration.php:348 -#: ../../extensions/resource_registration.php:358 +#: ../../extensions/resource_registration.php:384 +#: ../../extensions/resource_registration.php:406 +#: ../../extensions/resource_registration.php:417 #, php-format msgid "Success add '%s' content." msgstr "コンテンツ '%s'を追加しました。" -#: ../../extensions/resource_registration.php:328 -#: ../../extensions/resource_registration.php:349 -#: ../../extensions/resource_registration.php:359 -#: ../../enterprise/extensions/resource_registration/functions.php:516 +#: ../../extensions/resource_registration.php:385 +#: ../../extensions/resource_registration.php:407 +#: ../../extensions/resource_registration.php:418 +#: ../../enterprise/extensions/resource_registration/functions.php:739 #, php-format msgid "Error add '%s' action." msgstr "アクション '%s' の追加に失敗しました。" -#: ../../extensions/resource_registration.php:335 +#: ../../extensions/resource_registration.php:394 #, php-format msgid "Success add '%s' SLA." msgstr "SLA '%s' を追加しました。" -#: ../../extensions/resource_registration.php:336 +#: ../../extensions/resource_registration.php:395 #, php-format msgid "Error add '%s' SLA." msgstr "SLA '%s' の追加に失敗しました。" -#: ../../extensions/resource_registration.php:377 +#: ../../extensions/resource_registration.php:438 #, php-format msgid "Error create '%s' visual map, lost tag name." msgstr "ビジュアルマップ '%s' の作成に失敗しました。タグ名がありません。" -#: ../../extensions/resource_registration.php:413 +#: ../../extensions/resource_registration.php:481 #, php-format msgid "" "Error create '%s' visual map, the name exist and there aren't free name." msgstr "ビジュアルマップ '%s' の作成に失敗しました。名前がすでに存在します。" -#: ../../extensions/resource_registration.php:420 +#: ../../extensions/resource_registration.php:489 #, php-format msgid "" "Warning create '%s' visual map, the name exist, the report have a name %s." msgstr "ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s です。" -#: ../../extensions/resource_registration.php:428 +#: ../../extensions/resource_registration.php:501 #, php-format msgid "Success create '%s' visual map." msgstr "ビジュアルマップ '%s' を作成しました。" -#: ../../extensions/resource_registration.php:429 +#: ../../extensions/resource_registration.php:502 #, php-format msgid "Error create '%s' visual map." msgstr "ビジュアルマップ '%s' の作成に失敗しました。" -#: ../../extensions/resource_registration.php:535 +#: ../../extensions/resource_registration.php:663 #, php-format msgid "Success create item type '%d' visual map." msgstr "アイテムタイプ '%d' のビジュアルマップを作成しました。" -#: ../../extensions/resource_registration.php:536 +#: ../../extensions/resource_registration.php:664 #, php-format msgid "Error create item type '%d' visual map." msgstr "アイテムタイム '%d' のビジュアルマップを作成できませんでした。" -#: ../../extensions/resource_registration.php:554 -#: ../../extensions/resource_registration.php:569 +#: ../../extensions/resource_registration.php:683 +#: ../../extensions/resource_registration.php:699 #, php-format msgid "Success create item for agent '%s' visual map." msgstr "'%s'ビジュアルマップ用エージェント項目を作成しました。" -#: ../../extensions/resource_registration.php:555 -#: ../../extensions/resource_registration.php:570 +#: ../../extensions/resource_registration.php:684 +#: ../../extensions/resource_registration.php:700 #, php-format msgid "Error create item for agent '%s' visual map." msgstr "'%s'ビジュアルマップ用エージェント項目の作成に失敗しました。" -#: ../../extensions/resource_registration.php:792 +#: ../../extensions/resource_registration.php:960 #, php-format msgid "Success create '%s' component." msgstr "コンポーネント '%s' を作成しました。" -#: ../../extensions/resource_registration.php:793 +#: ../../extensions/resource_registration.php:961 #, php-format msgid "Error create '%s' component." msgstr "コンポーネント '%s' の作成に失敗しました。" -#: ../../extensions/resource_registration.php:849 -#: ../../extensions/resource_registration.php:889 +#: ../../extensions/resource_registration.php:1024 +#: ../../extensions/resource_registration.php:1067 msgid "Resource registration" msgstr "リソース登録" -#: ../../extensions/resource_registration.php:852 -#: ../../enterprise/include/functions_policies.php:4269 +#: ../../extensions/resource_registration.php:1027 +#: ../../enterprise/include/functions_policies.php:4369 msgid "Error, please install the PHP libXML in the system." msgstr "エラー。PHP libXML をインストールしてください。" -#: ../../extensions/resource_registration.php:858 +#: ../../extensions/resource_registration.php:1034 +msgid "" +"This node is configured with centralized mode. Go to metaconsole to create a " +"policy." +msgstr "このノードは中央管理モードに設定されています。 ポリシーを作成するにはメタコンソールを利用してください。" + +#: ../../extensions/resource_registration.php:1038 +msgid "This extension makes registering resource templates easier." +msgstr "この拡張機能により、リソーステンプレートの登録が簡単になります。" + +#: ../../extensions/resource_registration.php:1038 +msgid "Here you can upload a resource template in .ptr format." +msgstr "ここに、.ptr フォーマットでリソーステンプレートをアップロードできます。" + +#: ../../extensions/resource_registration.php:1038 #, 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" -msgstr "" -"この拡張を使うと、リソーステンプレートの登録が簡単にできます。ここに、Pandora FMS 3.x フォーマット (.ptr) " -"でリソーステンプレートをアップロードできます。Pandora FMS " -"リソースの取得および利用方法については、ドキュメントを参照してください。

    リソースは、我々のPublic " -"Resource Libraryから取得できます。" +"Please refer to our documentation for more information on how to obtain and " +"use %s resources." +msgstr "%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してください。" -#: ../../extensions/resource_registration.php:872 -#: ../../enterprise/include/functions_policies.php:4285 +#: ../../extensions/resource_registration.php:1038 +msgid "" +"You can get more resurces in our Public Resource Library" +msgstr "" +"公開リソースライブラリから追加のリソースを入手できます。" + +#: ../../extensions/resource_registration.php:1048 +#: ../../enterprise/include/functions_policies.php:4388 msgid "Group filter: " msgstr "グループフィルター: " -#: ../../extensions/users_connected.php:38 -#: ../../extensions/users_connected.php:122 -#: ../../extensions/users_connected.php:123 +#: ../../extensions/users_connected.php:37 +#: ../../extensions/users_connected.php:137 +#: ../../extensions/users_connected.php:138 msgid "Users connected" msgstr "接続ユーザ" -#: ../../extensions/users_connected.php:66 +#: ../../extensions/users_connected.php:67 msgid "No other users connected" msgstr "他のユーザは接続していません" -#: ../../extras/pandora_diag.php:91 -msgid "Pandora FMS Diagnostic tool" -msgstr "Pandora FMS 診断ツール" - -#: ../../extras/pandora_diag.php:94 -msgid "Pandora status info" -msgstr "Pandora ステータス情報" - -#: ../../extras/pandora_diag.php:123 -msgid "PHP setup" -msgstr "PHP 設定" - -#: ../../extras/pandora_diag.php:136 ../../godmode/db/db_main.php:95 -msgid "Database size stats" -msgstr "データベースサイズ" - -#: ../../extras/pandora_diag.php:154 ../../godmode/db/db_main.php:160 -msgid "Database sanity" -msgstr "データベースの健全性" - -#: ../../extras/pandora_diag.php:236 -msgid "Database status info" -msgstr "データベースステータス情報" - -#: ../../extras/pandora_diag.php:252 -msgid "System info" -msgstr "システム情報" - -#: ../../extras/pandora_diag.php:322 +#: ../../general/alert_enterprise.php:107 +#, php-format msgid "" -"(*) Please check your Pandora Server setup and be sure that database " -"maintenance daemon is running. It' very important to \n" -"keep up-to-date database to get the best performance and results in Pandora" +"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 "" -"(*) Pandora サーバ設定を確認し、データベースメンテナスデーモンが動作していることを確認してください。\n" -"データベースを最新の状態にし、Pandora で最高のパフォーマンスを出すためにとても重要です。" +"これは、%s コンソールのオンラインヘルプです。このヘルプは簡単なコンテキストヘルプであり、%s " +"の使用方法を教えることを目的としたものではありません。%s " +"の公式ドキュメントは約900ページあり、通常はすべてを読む必要はありませんが、ダウンロードして見てください。

    \n" +" 公式ドキュメントをダウンロードする" -#: ../../general/alert_enterprise.php:96 -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" -"\tDownload the official documentation" -msgstr "" -"これは、Pandora FMS コンソールのオンラインヘルプです。このヘルプは、Pandora " -"FMS の使い方を教えるためのものではなく、状況に応じた簡単なヘルプです。Pandora FMS の公式ドキュメントは約 " -"900ページあり、おそらく全体を読む必要はありませんが、ダウンロードして確認した方が良いでしょう。

    \n" -"\t公式ドキュメントのダウンロード" - -#: ../../general/alert_enterprise.php:103 +#: ../../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" -"\tPlease know that all attempts to access this page are recorded in security " -"logs of Pandora System Database" +"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" -"\tこのページへのアクセスは、Pandora のシステムデータベースのセキュリティログに記録されます。" +"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な場合はシステム管理者に連絡してください。

    \n" +" このページへのアクセス試行は、すべて %s システムデータベースのセキュリティログに記録されます。" -#: ../../general/alert_enterprise.php:114 +#: ../../general/alert_enterprise.php:130 +#, php-format 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." +"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 "" -"アップデートマネージャクライアントは、Pandora FMS に含まれています。Pandorra FMS " -"を自動的に更新する処理をサポートします。アップデートマネージャは、新たなモジュール、新たなプラグインおよび新たな機能(将来のバージョンへのマイグレーション" -"ツールを含む)を自動的に取り込みます。" +"アップデートマネージャクライアントは、%s " +"に含まれています。アップデートマネージャは、新しいモジュール、新しいプラグイン、新しい機能(将来のバージョンの完全な移行ツールも含む)を自動的に取得するた" +"め、システム管理者が %s を自動的に更新するのに役立ちます。" -#: ../../general/alert_enterprise.php:117 +#: ../../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 " @@ -4198,54 +5025,59 @@ msgstr "" "オープンソース版は毎週生成されるパッケージで更新されます。これらの更新は保証やサポートはありません。システムが壊れたり一部の機能が正しく動作しなかっ" "た場合は、ご自身でバックアップから戻す必要があります。" -#: ../../general/alert_enterprise.php:120 +#: ../../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 " -"Pandora FMS Enterprise Edition. For more information visit pandorafms.com" msgstr "" -"Enterprise版では、完全にテストされ、サポートされたパッケージでの異なる更新システムです。我々のサポートチームが問題や問い合わせに対して対応します" -"。Enterprise版のアップデートマネージャには、オープンソース版には無い異なる機能があります。Pandora FMS " -"Enterpriseには、多くのビジネス向けの機能が含まれています。より詳細は、pandorafms.comを参照してください。" +"Enterprise " +"版には、完全にテストされ専門的にサポートされたパッケージの更新システムが付属しており、問題や問い合わせにはサポートチームが対応します。アップデートマネージ" +"ャは、Enterprise 版に存在する機能であり、オープンソース版には含まれていません。%s Enterprise " +"版には、ビジネス向けの高度な機能が数多く含まれています。より詳細は、pandorafms.comを参照してください。" -#: ../../general/alert_enterprise.php:128 +#: ../../general/alert_enterprise.php:132 +#, php-format 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." +"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 "" -"新しいアップデートマネージャクライアントは、Pandora " -"FMSと一緒にリリースされています。アップデートマネージャは、新規モジュール、新規プラグイン、新規機能を自動的に取得するもの(フルマイグレーションツールは" -"将来対応予定)であり、これによりシステム管理者がPandora FMSを自動的に更新するのに役に立つでしょう。" +"新たな アップデートマネージャクライアントは、%s " +"に含まれています。アップデートマネージャは、新しいモジュール、新しいプラグイン、新しい機能(将来のバージョンの完全な移行ツールも含む)を自動的に取得するた" +"め、システム管理者が %s を自動的に更新するのに役立ちます。" -#: ../../general/alert_enterprise.php:131 +#: ../../general/alert_enterprise.php:132 +#, php-format msgid "" -"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 を参照してください。" +"アップデートマネージャは、%s Enterprise 版の最も高度な機能の一つです。より詳細は、http://pandorafms.comを参照してください。" -#: ../../general/alert_enterprise.php:134 +#: ../../general/alert_enterprise.php:132 +#, php-format 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 %s 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 " -"の利用状況の情報(実行しているエージェントとモジュール数)を送信します。無効化するには、アップデートマネージャプラグインの設定からリモートサーバのアドレス" -"を削除します。" +"アップデートマネージャは、%s " +"の使用状況(実行中のエージェントとモジュールの数)に関する匿名情報を送信します。無効にするには、アップデートマネージャプラグインの設定からリモートサーバの" +"アドレスを削除してください。" -#: ../../general/alert_enterprise.php:141 +#: ../../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 " @@ -4263,49 +5095,53 @@ msgstr "" "プラグインのライブラリも利用できません。Enterprise版は、これらすべてがあり、個別はもちろんポリシーを通してローカルモジュールを配布したり管理する" "ことができます。" -#: ../../general/alert_enterprise.php:145 +#: ../../general/alert_enterprise.php:144 +#, php-format msgid "" "Do you want to consolidate all your system monitoring? Do you have many " "systems, making it difficult to manage them in a comprehensive manner? Would " "you like to deploy monitoring, alerts and even local plugins with a single " -"click? 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を参照してください。" +"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な方法で管理することが難しくありませんか? " +"ワンクリックで監視、アラート、さらにはローカルプラグインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必要とするものです。 " +"時間、労力、煩わしさを削減できます。 詳細は、 pandorafms.com " +" を参照してください。" #: ../../general/alert_enterprise.php:148 +#, php-format 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." +"%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 "" -"Pandora FMS Enterprise " -"は、イベント集約の相関も持っています。これを通して、論理的なルールに基づくリアルタイムアラートや新たなイベントを生成することができます。これは、自動的なト" -"ラブルシューティングを可能にします。イベント発生時の値を知れば、イベント送還が次のステップを教えてくれます。" +"%s Enterprise は、イベント相関も備えています。 相関により、論理的なルールに基づいてリアルタイムのアラートや新しいイベントを生成できます。 " +"これにより、トラブルシューティングを自動化できます。 イベントに応じた対応の受容性がわかっているのであれば、イベント相関が新しい領域を提供します。" -#: ../../general/alert_enterprise.php:151 +#: ../../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, Pandora FMS Enterprise version is for you." +"to your business, %s Enterprise version is for you." msgstr "" -"Enterprise版のレポートはより強力です。ウィザードがあり、決めたスケジュールで PDF " -"を送信することができます。また、あなたの顧客ごとに個別のレポートを素早く作成できるテンプレートシステムがあります。作成したテンプレートから、顧客自身が独自" -"のレポートを生成することもできます。レポートがビジネスにとって重要であるならば、Pandora FMS Enteprise はあなたの要望にマッチします。" +"Enterprise 版でのレポート生成もより強力です。ウィザードがあり、PDF " +"でメールを送信するようにスケジュールを設定できます。また、顧客ごとにパーソナライズされたレポートをすばやく作成するためのテンプレートシステムがあります。 " +"顧客が作成したテンプレートから独自のレポートを生成することもできます。 レポートがビジネスにとって重要であるならば、%s Enterprise " +"版が最適です。" -#: ../../general/alert_enterprise.php:154 +#: ../../general/alert_enterprise.php:156 msgid "These options are only effective on the Enterprise version." msgstr "これらのオプションは、Enterprise版でのみ有効です。" -#: ../../general/alert_enterprise.php:157 +#: ../../general/alert_enterprise.php:160 +#: ../../godmode/update_manager/update_manager.online.php:186 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 " @@ -4318,7 +5154,7 @@ msgstr "" "ス版はパッケージを使って自動更新されます。保障やサポートはありません。プロフェッショナルサポートや保証が必要な場合は、Enterprise版にアップデート" "してください。" -#: ../../general/alert_enterprise.php:160 +#: ../../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 " @@ -4327,7 +5163,7 @@ msgstr "" "このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応できますが、最適なチューニングのための知識と時間が必要です。プロフェッショナ" "ルサポートは、Enterprise版を確認してください。" -#: ../../general/alert_enterprise.php:163 +#: ../../general/alert_enterprise.php:168 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 " @@ -4337,7 +5173,7 @@ msgstr "" "このシステムは、一つのエージェントあたりのモジュール数が多すぎです。オープンソース版では数千のモジュールを管理することができますが、一つのエージェントで " "40以上はお勧めしません。プロフェッショナルサポートは、Enterprise版を確認してください。" -#: ../../general/alert_enterprise.php:166 +#: ../../general/alert_enterprise.php:172 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 " @@ -4349,7 +5185,7 @@ msgstr "" "リクエストがある環境でのパフォーマンスは限られています。プロフェッショナルサポートがあり、容量を改善したネットワーク監視や分散監視ができる " "Enterprise版を確認してください。" -#: ../../general/alert_enterprise.php:169 +#: ../../general/alert_enterprise.php:176 msgid "" "This system has too much events in the database. Checkout database purge " "options. Checkout the Enterprise Version for a professional supported system." @@ -4357,7 +5193,7 @@ msgstr "" "このシステムはデータベースに多くのイベントがあります。データベースの削除オプションを確認してください。プロフェッショナルサポートは、Enterprise版" "を確認してください。" -#: ../../general/alert_enterprise.php:172 +#: ../../general/alert_enterprise.php:180 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 " @@ -4367,28 +5203,109 @@ msgstr "" "アラートの定義数が多くあるため、将来的にパフォーマンスの問題が発生する可能性があります。Enterprise版では、イベント相関でアラートシステムを単純化" "でき、管理が簡単になりパフォーマンスが向上します。" -#: ../../general/firts_task/collections.php:21 +#: ../../general/first_task/HA_cluster_builder.php:37 +msgid "There are no HA clusters defined yet." +msgstr "HA クラスタが定義されていません。" + +#: ../../general/first_task/HA_cluster_builder.php:42 +#: ../../general/first_task/cluster_builder.php:35 +#: ../../enterprise/godmode/reporting/cluster_list.php:26 +msgid "Clusters" +msgstr "クラスタ" + +#: ../../general/first_task/HA_cluster_builder.php:45 +msgid "PANDORA FMS DB CLUSTER" +msgstr "PANDORA FMS DB クラスタ" + +#: ../../general/first_task/HA_cluster_builder.php:48 +msgid "" +"With Pandora FMS Enterprise you can add high availability to your Pandora " +"FMS installation by adding redundant MySQL servers" +msgstr "" +"Pandora FMS Enterprise では、冗長構成の 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." +msgstr "\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始します。" + +#: ../../general/first_task/HA_cluster_builder.php:59 +msgid "Add new node" +msgstr "新規ノード追加" + +#: ../../general/first_task/cluster_builder.php:30 +msgid "There are no clusters defined yet." +msgstr "クラスタが定義されていません。" + +#: ../../general/first_task/cluster_builder.php:38 +#: ../../general/first_task/cluster_builder.php:56 +msgid "Create Cluster" +msgstr "クラスタ作成" + +#: ../../general/first_task/cluster_builder.php:41 +msgid "" +"A cluster is a group of devices that provide the same service in high " +"availability." +msgstr "クラスタは、同一サービスの高可用性を提供するデバイスのグループです。" + +#: ../../general/first_task/cluster_builder.php:43 +msgid "Depending on how they provide that service, we can find two types:" +msgstr "どのようにサービス提供であるかに依存し、次の 2つのタイプがあります:" + +#: ../../general/first_task/cluster_builder.php:45 +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." +msgstr "" +"
    サービス負荷分散クラスタ
    :これらは、アクティブ-" +"アクティブ(A/A)モードクラスタです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停止しても動作を継続しますが負荷は増えます。" + +#: ../../general/first_task/cluster_builder.php:47 +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." +msgstr "" +"サービス保証クラスタ:これらは、アクティブ-" +"スタンバイモードクラスタです。一つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動作していません(セカンダリ)。プライマリが" +"ダウンした場合、セカンダリがサービスを代わりに引き継ぎます。このクラスタの要素の多くはアクティブ-" +"スタンバイですが、スタンバイノードが「オンライン」であることを示すアクティブな要素もあります。したがって、マスタのサービス障害の場合、アクティブノードはこ" +"の情報を収集します。" + +#: ../../general/first_task/collections.php:18 +#: ../../enterprise/meta/advanced/collections.php:403 msgid "There are no collections defined yet." msgstr "コレクションが定義されていません。" -#: ../../general/firts_task/collections.php:25 -#: ../../enterprise/godmode/agentes/collections.agents.php:47 -#: ../../enterprise/godmode/agentes/collections.data.php:42 -#: ../../enterprise/godmode/agentes/collections.editor.php:49 -#: ../../enterprise/godmode/menu.php:56 -#: ../../enterprise/godmode/policies/policies.php:385 -#: ../../enterprise/godmode/policies/policy_collections.php:29 -#: ../../enterprise/godmode/policies/policy_collections.php:173 -#: ../../enterprise/include/functions_policies.php:3468 +#: ../../general/first_task/collections.php:22 +#: ../../enterprise/godmode/agentes/collections.agents.php:46 +#: ../../enterprise/godmode/agentes/collections.data.php:44 +#: ../../enterprise/godmode/agentes/collections.editor.php:58 +#: ../../enterprise/godmode/menu.php:58 +#: ../../enterprise/godmode/policies/policies.php:521 +#: ../../enterprise/godmode/policies/policy_collections.php:31 +#: ../../enterprise/include/functions_policies.php:3784 +#: ../../enterprise/meta/advanced/collections.data.php:35 +#: ../../enterprise/meta/advanced/collections.editor.php:39 +#: ../../enterprise/meta/include/functions_agents_meta.php:514 msgid "Collections" msgstr "コレクション" -#: ../../general/firts_task/collections.php:28 -#: ../../general/firts_task/collections.php:37 +#: ../../general/first_task/collections.php:25 +#: ../../general/first_task/collections.php:39 msgid "Create Collections" msgstr "コレクション作成" -#: ../../general/firts_task/collections.php:29 +#: ../../general/first_task/collections.php:28 msgid "" "A file collection is a group of files (e.g. scripts or executables) which " "are \n" @@ -4414,21 +5331,22 @@ msgstr "" "\t\tエージェント管理画面へ行ってください。次に、\"コレクション\" というサブオプションへ行きます。以下の画像で示すように、\n" "\t\t新たなコレクションを作成するにはそれをクリックします。 " -#: ../../general/firts_task/custom_fields.php:23 -#: ../../general/firts_task/fields_manager.php:21 +#: ../../general/first_task/custom_fields.php:19 +#: ../../general/first_task/fields_manager.php:18 msgid "There are no custom fields defined yet." msgstr "カスタムフィールドが定義されていません。" -#: ../../general/firts_task/custom_fields.php:28 +#: ../../general/first_task/custom_fields.php:24 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:170 msgid "Custom Fields" msgstr "カスタムフィールド" -#: ../../general/firts_task/custom_fields.php:31 -#: ../../general/firts_task/custom_fields.php:35 +#: ../../general/first_task/custom_fields.php:27 +#: ../../general/first_task/custom_fields.php:36 msgid "Create Custom Fields" msgstr "カスタムフィールド作成" -#: ../../general/firts_task/custom_fields.php:32 +#: ../../general/first_task/custom_fields.php:30 msgid "" "Custom fields are an easy way to personalized agent's information.\n" "\t\t You're able to create custom fields by klicking on 'Administration' -> " @@ -4437,42 +5355,43 @@ msgstr "" "カスタムフィールドは、エージェントの独自情報を記載できます。\n" "\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを作成できます。 " -#: ../../general/firts_task/custom_graphs.php:23 +#: ../../general/first_task/custom_graphs.php:19 msgid "There are no custom graphs defined yet." msgstr "カスタムグラフが定義されていません。" -#: ../../general/firts_task/custom_graphs.php:28 +#: ../../general/first_task/custom_graphs.php:24 msgid "Custom Graphs" msgstr "カスタムグラフ" -#: ../../general/firts_task/custom_graphs.php:31 -#: ../../general/firts_task/custom_graphs.php:36 +#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:39 msgid "Create Custom Graph" msgstr "カスタムグラフ作成" -#: ../../general/firts_task/custom_graphs.php:32 +#: ../../general/first_task/custom_graphs.php:30 +#, php-format msgid "" -"Graphs are designed to show the data collected by Pandora FMS in a temporary " -"scale defined by the user.\n" -"\t\t\t\tPandora FMS Graphs display data in real time. They are generated " -"every time the operator requires any of them and display the up-to-date " -"state.\n" +"Graphs are designed to show the data collected by %s in a temporary scale " +"defined by the user.\n" +"\t\t\t\t%s Graphs display data in real time. They are generated every time " +"the operator requires any of them and display the up-to-date state.\n" "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " "graphs the user customizes by using one or more modules to do so." msgstr "" -"グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表示します。\n" -"\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作したタイミングで生成され、最新の状態を表示します。\n" -"\t\t\t\tグラフには 2つのタイプがあります。エージェントで自動生成されるグラフと、1つ以上のモジュールを使ってユーザがカスタマイズしたグラフです。" +"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示するように設計されています。\n" +"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とするタイミングで生成され、最新の状態を表示します。\n" +"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフと、ユーザが " +"1つ以上のモジュールを使用してカスタマイズするグラフです。" -#: ../../general/firts_task/fields_manager.php:25 +#: ../../general/first_task/fields_manager.php:22 msgid "Fields Manager" msgstr "フィールド管理" -#: ../../general/firts_task/fields_manager.php:28 +#: ../../general/first_task/fields_manager.php:25 msgid "Create Fields Manager" msgstr "フィールド管理の作成" -#: ../../general/firts_task/fields_manager.php:29 +#: ../../general/first_task/fields_manager.php:28 msgid "" "Custom fields are an easy way to personalized agent's information.\n" "\t\t\t\tYou're able to create custom fields by klicking on 'Administration' -" @@ -4481,106 +5400,111 @@ msgstr "" "カスタムフィールドは、エージェントの独自情報を記載できます。\n" "\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを作成できます。 " -#: ../../general/firts_task/fields_manager.php:32 +#: ../../general/first_task/fields_manager.php:34 msgid "Create Fields " msgstr "フィールド作成 " -#: ../../general/firts_task/incidents.php:25 +#: ../../general/first_task/incidents.php:21 msgid "There are no incidents defined yet." msgstr "インシデントが定義されていません。" -#: ../../general/firts_task/incidents.php:32 -#: ../../godmode/agentes/configurar_agente.php:441 -#: ../../godmode/agentes/configurar_agente.php:577 -#: ../../operation/agentes/ver_agente.php:1116 -#: ../../operation/incidents/incident_statistics.php:30 -#: ../../operation/menu.php:391 +#: ../../general/first_task/incidents.php:28 +#: ../../godmode/agentes/configurar_agente.php:494 +#: ../../godmode/agentes/configurar_agente.php:649 +#: ../../operation/agentes/ver_agente.php:1234 +#: ../../operation/incidents/incident_statistics.php:27 +#: ../../operation/menu.php:471 msgid "Incidents" msgstr "インシデント" -#: ../../general/firts_task/incidents.php:35 -#: ../../general/firts_task/incidents.php:44 +#: ../../general/first_task/incidents.php:31 +#: ../../general/first_task/incidents.php:46 msgid "Create Incidents" msgstr "インシデント作成" -#: ../../general/firts_task/incidents.php:36 +#: ../../general/first_task/incidents.php:34 +#, php-format msgid "" -"Besides receiving and processing data to monitor systems or applications, \n" +"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" +"place on these subsystems within the system's monitoring process.\n" +"\t\t\tFor it, the %s team has designed an incident manager from which any " +"user is able to open incidents,\n" +"\t\t\tthat explain what's happened on the network, and update them with " +"comments and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles " +"and work-flow systems which allow an incident to be\n" +"\t\t\tmoved from one group to another, and members from different groups and " +"different people could work on the same incident, sharing information and " +"files.\n" "\t\t" msgstr "" -"システムやアプリケーションを監視するためにデータを受信し処理するほかに、\n" -"\t\t\tシステム監視処理内ではインシデントも処理され、それも見る必要があります。\n" -"\t\t\tそのために、Pandora FMS チームではインシデント管理機能を用意しました。ユーザはいつでもインシデントをオープンし、\n" -"\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシステムにより、ユーザがチームとして動くことが\n" -"\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグループから他のグループへ移したり、異なる\n" -"\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報やファイルを共有したりできます。\n" +"システムまたはアプリケーションを監視するためのデータの受信と処理に加えて、\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" -#: ../../general/firts_task/map_builder.php:26 -#: ../../godmode/reporting/map_builder.php:336 +#: ../../general/first_task/map_builder.php:23 +#: ../../godmode/reporting/map_builder.php:413 msgid "There are no visual console defined yet." msgstr "ビジュアルコンソールが定義されていません。" -#: ../../general/firts_task/map_builder.php:32 -#: ../../godmode/reporting/map_builder.php:43 -#: ../../godmode/reporting/visual_console_favorite.php:33 -#: ../../enterprise/include/functions_enterprise.php:292 -#: ../../enterprise/meta/general/main_header.php:189 +#: ../../general/first_task/map_builder.php:31 +#: ../../godmode/reporting/map_builder.php:84 +#: ../../include/class/OrderInterpreter.class.php:233 +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:34 +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:281 +#: ../../enterprise/extensions/visual_console_manager.php:107 +#: ../../enterprise/godmode/reporting/visual_console_template.php:87 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:86 +#: ../../enterprise/include/functions_enterprise.php:317 +#: ../../enterprise/meta/general/main_header.php:219 msgid "Visual Console" msgstr "ビジュアルコンソール" -#: ../../general/firts_task/map_builder.php:35 -#: ../../general/firts_task/map_builder.php:43 +#: ../../general/first_task/map_builder.php:34 +#: ../../general/first_task/map_builder.php:45 msgid "Create Visual Console" msgstr "ビジュアルコンソール作成" -#: ../../general/firts_task/map_builder.php:36 +#: ../../general/first_task/map_builder.php:37 +#, php-format msgid "" -"Pandora FMS allows you to create visual maps in which each user is able to " -"create his own monitoring map.\n" -"\t\t\tThe new visual console editor is much more practical, although the old " -"visual console editor had its advantages. \n" -"\t\t\tWithin the new visual console, we've been successful in imitating the " -"sensation and touch of a drawing application like GIMP. \n" -"\t\t\tWe've also simplified the editor by dividing it into several subject-" -"matter tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and " -"'Editor'.\n" -"\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are " -"'static image', 'percentage bar', 'module graph' and 'simple value'. " +"%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 "" -"Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監視マップを作成することができます。\n" -"\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的です。新たなビジュアルコンソールでは、\n" -"\t\t\t絵を書くツールの GIMP のような感覚とタッチを模倣することに成功しました。\n" -"\t\t\tまた、'データ'、'プレビュー'、'ウィザード'、'要素一覧' および 'エディタ' " -"のいくつかのタイトルに分けることによりエディタを単純化しました。\n" -"\t\t\tPandora FMS ビジュアルマップの要素は、'静的画像'、'パーセント表示バー'、'モジュールグラフ' および '単純な値' " -"を扱うようにデザインされています。 " +"%s " +"を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユーザーは独自の監視マップを作成できます。以前のビジュアルコンソールエディターにも良" +"い点はありましたが、新しいビジュアルコンソールエディターははるかに実用的です。新しいビジュアルコンソールでは、GIMP " +"のような描画アプリケーションの感覚とタッチを模倣することに成功しています。また、'データ'、'プレビュー'、'ウィザード'、'要素のリスト'、'エディタ'" +" という名前の複数の要素に分割したタブにすることで、エディターを簡素化しました。%s " +"ビジュアルマップが処理するように設計したアイテムは、’静的画像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' です。" -#: ../../general/firts_task/network_map.php:23 +#: ../../general/first_task/network_map.php:19 msgid "There are no network map defined yet." msgstr "ネットワークマップが定義されていません。" -#: ../../general/firts_task/network_map.php:30 +#: ../../general/first_task/network_map.php:26 msgid "Network Map" msgstr "ネットワーク マップ" -#: ../../general/firts_task/network_map.php:33 -#: ../../general/firts_task/network_map.php:49 +#: ../../general/first_task/network_map.php:29 +#: ../../general/first_task/network_map.php:50 msgid "Create Network Map" msgstr "ネットワークマップ作成" -#: ../../general/firts_task/network_map.php:34 +#: ../../general/first_task/network_map.php:32 msgid "" "There is also an open-source version of the network map. \n" "\t\t\t\t\t\t\t\tThis functionality allows to graphically display the nodes " @@ -4593,76 +5517,120 @@ msgstr "" "\t\t\t\t\t\t\t\tネットワークマップには 3つのタイプがあります。\n" "\t\t\t" -#: ../../general/firts_task/network_map.php:38 +#: ../../general/first_task/network_map.php:37 msgid "Topology Map" msgstr "トポロジマップ" -#: ../../general/firts_task/network_map.php:39 +#: ../../general/first_task/network_map.php:38 msgid "Group Map" msgstr "グループマップ" -#: ../../general/firts_task/network_map.php:40 +#: ../../general/first_task/network_map.php:39 msgid "Radial Map (User without strict user)" msgstr "放射状マップ (制限ユーザを除く)" -#: ../../general/firts_task/network_map.php:41 +#: ../../general/first_task/network_map.php:40 msgid "Dinamic Map" msgstr "ダイナミックマップ" -#: ../../general/firts_task/network_map.php:42 +#: ../../general/first_task/network_map.php:41 msgid "Policy Map (Only Enterprise version)" msgstr "ポリシーマップ (Enterprise 版のみ)" -#: ../../general/firts_task/planned_downtime.php:21 +#: ../../general/first_task/omnishell.php:27 +msgid "There is no command defined yet." +msgstr "コマンドが定義されていません。" + +#: ../../general/first_task/omnishell.php:31 +#: ../../general/first_task/omnishell.php:34 +#: ../../enterprise/godmode/menu.php:288 +msgid "Omnishell" +msgstr "Omnishell" + +#: ../../general/first_task/omnishell.php:37 +#, php-format +msgid "" +"Omnishell is an enterprise feature which allows you to execute a structured " +"command along any agent in your %s. The only requirement is to have remote " +"configuration enabled in your agent." +msgstr "" +"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる 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" +msgstr "" +"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を使用してすべてのエージェントでの実行を確認できます。" + +#: ../../general/first_task/omnishell.php:50 +msgid "Define a command" +msgstr "コマンド定義" + +#: ../../general/first_task/planned_downtime.php:18 msgid "There are no planned downtime defined yet." msgstr "計画停止が定義されていません。" -#: ../../general/firts_task/planned_downtime.php:25 -#: ../../godmode/agentes/planned_downtime.editor.php:43 -#: ../../godmode/agentes/planned_downtime.list.php:54 +#: ../../general/first_task/planned_downtime.php:22 +#: ../../godmode/agentes/planned_downtime.editor.php:62 +#: ../../include/functions_reporting_html.php:795 +#: ../../include/functions_reporting_html.php:3551 +#: ../../enterprise/include/functions_reporting.php:1733 +#: ../../enterprise/include/functions_reporting.php:2673 +#: ../../enterprise/include/functions_reporting.php:2922 +#: ../../enterprise/include/functions_reporting.php:3666 msgid "Planned Downtime" msgstr "計画停止" -#: ../../general/firts_task/planned_downtime.php:28 -#: ../../general/firts_task/planned_downtime.php:34 +#: ../../general/first_task/planned_downtime.php:25 +#: ../../general/first_task/planned_downtime.php:37 msgid "Create Planned Downtime" msgstr "計画停止作成" -#: ../../general/firts_task/planned_downtime.php:29 +#: ../../general/first_task/planned_downtime.php:28 +#, php-format msgid "" -"Pandora FMS contains a scheduled downtime management system. \n" -"\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " +"%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 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\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 "" -"Pandora FMS には、計画停止を管理するシステムがあります。\n" -"\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラートを無効化するように設計されています。\n" -"\t\t\t\t\t\tエージェントが無効化されると情報収集が行われません。停止期間中のデータは、多くのレポートの計算に\n" -"\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いためです。 " +"%s は、計画停止管理システムがあります。\n" +"\t\t\t\t\t\tこのシステムは、エージェントを無効化することにより、停止時間中のアラートを無効化するように設計されました。\n" +"\t\t\t\t\t\tエージェントが無効化されている場合、エージェントは情報を収集しません。 計画停止期間中は、\n" +"\t\t\t\t\t\tレポートにおける停止時間には考慮されません。なぜなら、この間はエージェントの情報が無いためです。" -#: ../../general/firts_task/recon_view.php:21 -msgid "There are no recon task defined yet." +#: ../../general/first_task/recon_view.php:18 +msgid "There are no discovery tasks defined yet." msgstr "自動検出タスクが定義されていません。" -#: ../../general/firts_task/recon_view.php:25 -#: ../../godmode/servers/manage_recontask_form.php:228 -#: ../../include/functions_servers.php:379 -#: ../../enterprise/extensions/ipam/ipam_editor.php:80 -msgid "Recon server" +#: ../../general/first_task/recon_view.php:22 +#: ../../godmode/wizards/HostDevices.class.php:743 +#: ../../include/class/CustomNetScan.class.php:478 +#: ../../include/functions_servers.php:590 +#: ../../include/functions_servers.php:1223 +#: ../../enterprise/extensions/ipam/ipam_editor.php:119 +#: ../../enterprise/include/class/Aws.cloud.php:433 +#: ../../enterprise/include/class/Aws.cloud.php:1097 +#: ../../enterprise/include/class/Azure.cloud.php:744 +#: ../../enterprise/include/class/MySQL.app.php:452 +#: ../../enterprise/include/class/Oracle.app.php:450 +#: ../../enterprise/include/class/SAP.app.php:471 +#: ../../enterprise/include/class/VMware.app.php:528 +msgid "Discovery server" msgstr "自動検出サーバ" -#: ../../general/firts_task/recon_view.php:28 -#: ../../general/firts_task/recon_view.php:35 -msgid "Create Recon Task" +#: ../../general/first_task/recon_view.php:25 +msgid "Create Discovery Task" msgstr "自動検出タスクの作成" -#: ../../general/firts_task/recon_view.php:29 +#: ../../general/first_task/recon_view.php:28 msgid "" -"The Recon Task definition of Pandora FMS is used to find new elements in the " -"network. \n" +"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 " @@ -4672,43 +5640,51 @@ msgid "" "\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および カスタムタイプです。独自の検出スクリプトを定義することもできます。" +"自動検出タスクは、ネットワーク内の新たな要素を検出するのに使います。\n" +"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視されている場合は、\n" +"\t\tそれを無視するか、その情報を更新します。検出には 3つのタイプがあります。 ICMP " +"(ping)、\n" +"\t\t SNMP (ネットワークとそのインターフェースのトポロジの検出)、その他 " +"カスタマイズタイプです。\n" +"\t\t独自の自動検出スクリプトを定義することができます。" -#: ../../general/firts_task/service_list.php:23 +#: ../../general/first_task/recon_view.php:37 +msgid "Discover" +msgstr "自動検出" + +#: ../../general/first_task/service_list.php:20 msgid "There are no services defined yet." msgstr "サービスが定義されていません。" -#: ../../general/firts_task/service_list.php:28 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:364 -#: ../../operation/agentes/ver_agente.php:1205 -#: ../../enterprise/dashboard/widgets/service_map.php:79 -#: ../../enterprise/godmode/menu.php:92 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:363 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:164 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:101 -#: ../../enterprise/godmode/services/services.elements.php:135 -#: ../../enterprise/godmode/services/services.service.php:250 -#: ../../enterprise/include/functions_groups.php:61 -#: ../../enterprise/meta/general/main_header.php:172 -#: ../../enterprise/operation/menu.php:42 -#: ../../enterprise/operation/services/services.list.php:60 -#: ../../enterprise/operation/services/services.list.php:64 -#: ../../enterprise/operation/services/services.service_map.php:119 -#: ../../enterprise/operation/services/services.table_services.php:46 -#: ../../enterprise/operation/services/services.table_services.php:50 +#: ../../general/first_task/service_list.php:25 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:555 +#: ../../operation/agentes/ver_agente.php:1318 +#: ../../enterprise/dashboard/widgets/service_map.php:95 +#: ../../enterprise/godmode/menu.php:116 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:618 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:200 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:120 +#: ../../enterprise/godmode/services/services.elements.php:181 +#: ../../enterprise/godmode/services/services.service.php:349 +#: ../../enterprise/include/functions_groups.php:65 +#: ../../enterprise/meta/general/main_header.php:201 +#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/services/services.list.php:59 +#: ../../enterprise/operation/services/services.list.php:62 +#: ../../enterprise/operation/services/services.service_map.php:165 +#: ../../enterprise/operation/services/services.table_services.php:59 +#: ../../enterprise/operation/services/services.table_services.php:65 +#: ../../enterprise/operation/services/services.treeview_services.php:60 +#: ../../enterprise/operation/services/services.treeview_services.php:66 msgid "Services" msgstr "サービス" -#: ../../general/firts_task/service_list.php:31 -#: ../../general/firts_task/service_list.php:40 +#: ../../general/first_task/service_list.php:28 +#: ../../general/first_task/service_list.php:42 msgid "Create Services" msgstr "サービス作成" -#: ../../general/firts_task/service_list.php:32 +#: ../../general/first_task/service_list.php:31 msgid "" "A service is a way to group your IT resources based on their " "functionalities. \n" @@ -4732,20 +5708,20 @@ msgstr "" "\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っています。\n" "\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門からなっています。" -#: ../../general/firts_task/snmp_filters.php:21 +#: ../../general/first_task/snmp_filters.php:18 msgid "There are no SNMP filter defined yet." msgstr "SNMPフィルタがまだ定義されていません。" -#: ../../general/firts_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:22 msgid "SNMP Filter" msgstr "SNMPフィルタ" -#: ../../general/firts_task/snmp_filters.php:28 -#: ../../general/firts_task/snmp_filters.php:35 +#: ../../general/first_task/snmp_filters.php:25 +#: ../../general/first_task/snmp_filters.php:37 msgid "Create SNMP Filter" msgstr "SNMPフィルタの作成" -#: ../../general/firts_task/snmp_filters.php:29 +#: ../../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 " @@ -4762,85 +5738,82 @@ msgstr "" "\t\t\t\tトラップをフィルタすることができます。異なるフィルタを定義するには、’管理' -> 'SNMP管理コンソール' および \n" "\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外され、一つになります。 " -#: ../../general/firts_task/tags.php:21 +#: ../../general/first_task/tags.php:18 msgid "There are no tags defined yet." msgstr "タグが定義されていません。" -#: ../../general/firts_task/tags.php:25 -#: ../../godmode/events/custom_events.php:104 -#: ../../godmode/events/custom_events.php:164 -#: ../../godmode/massive/massive_add_tags.php:147 -#: ../../godmode/massive/massive_copy_modules.php:134 -#: ../../godmode/massive/massive_delete_modules.php:466 -#: ../../godmode/massive/massive_delete_modules.php:516 -#: ../../godmode/massive/massive_delete_tags.php:187 -#: ../../godmode/massive/massive_edit_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:356 -#: ../../godmode/massive/massive_edit_modules.php:594 -#: ../../godmode/modules/manage_network_components_form_common.php:200 -#: ../../godmode/tag/edit_tag.php:57 -#: ../../godmode/users/configure_user.php:739 -#: ../../include/functions_treeview.php:165 -#: ../../include/functions_events.php:46 -#: ../../include/functions_events.php:2545 -#: ../../include/functions_events.php:3688 -#: ../../include/functions_reporting_html.php:2122 -#: ../../mobile/operation/events.php:514 -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/group_view.php:164 -#: ../../operation/agentes/status_monitor.php:338 -#: ../../operation/agentes/status_monitor.php:341 -#: ../../operation/events/events.build_table.php:223 -#: ../../operation/tree.php:49 ../../operation/users/user_edit.php:517 -#: ../../enterprise/dashboard/widgets/events_list.php:62 -#: ../../enterprise/dashboard/widgets/tree_view.php:37 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:94 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:133 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:92 -#: ../../enterprise/godmode/modules/configure_local_component.php:375 -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 -#: ../../enterprise/include/functions_reporting_pdf.php:2451 -#: ../../enterprise/meta/include/functions_events_meta.php:91 -#: ../../enterprise/operation/agentes/tag_view.php:143 -#: ../../enterprise/operation/agentes/tag_view.php:146 -#: ../../enterprise/operation/agentes/tag_view.php:531 +#: ../../general/first_task/tags.php:22 +#: ../../godmode/events/custom_events.php:107 +#: ../../godmode/massive/massive_copy_modules.php:156 +#: ../../godmode/massive/massive_delete_modules.php:377 +#: ../../godmode/massive/massive_delete_modules.php:491 +#: ../../godmode/massive/massive_edit_modules.php:378 +#: ../../godmode/massive/massive_edit_modules.php:463 +#: ../../godmode/massive/massive_edit_modules.php:975 +#: ../../godmode/modules/manage_network_components_form_common.php:338 +#: ../../godmode/tag/edit_tag.php:57 ../../include/functions_events.php:201 +#: ../../include/functions_events.php:268 +#: ../../include/functions_events.php:4622 +#: ../../include/functions_events.php:6075 +#: ../../include/functions_events.php.orig:199 +#: ../../include/functions_events.php.orig:266 +#: ../../include/functions_events.php.orig:4508 +#: ../../include/functions_events.php.orig:5979 +#: ../../include/functions_treeview.php:162 +#: ../../include/functions_reporting_html.php:2668 +#: ../../include/functions_profile.php:213 +#: ../../mobile/operation/events.php:557 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/agentes/group_view.php:193 +#: ../../operation/agentes/status_monitor.php:447 +#: ../../operation/events/events.build_table.php:283 +#: ../../operation/tree.php:47 ../../operation/users/user_edit.php:755 +#: ../../enterprise/dashboard/widgets/events_list.php:99 +#: ../../enterprise/dashboard/widgets/tree_view.php:40 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:105 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:146 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:814 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:106 +#: ../../enterprise/godmode/modules/configure_local_component.php:522 +#: ../../enterprise/godmode/setup/setup_auth.php:226 +#: ../../enterprise/godmode/setup/setup_auth.php:979 +#: ../../enterprise/meta/include/functions_events_meta.php:106 +#: ../../enterprise/operation/agentes/tag_view.php:197 +#: ../../enterprise/operation/agentes/tag_view.php:199 +#: ../../enterprise/operation/agentes/tag_view.php:650 msgid "Tags" msgstr "タグ" -#: ../../general/firts_task/tags.php:28 ../../general/firts_task/tags.php:33 +#: ../../general/first_task/tags.php:25 ../../general/first_task/tags.php:35 msgid "Create Tags" msgstr "タグ作成" -#: ../../general/firts_task/tags.php:29 +#: ../../general/first_task/tags.php:28 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. " +"Access to modules can be configured by a tagging system.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " +"chosen modules.\n" +"\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " +"certain tags." msgstr "" -"Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセスを設定できます。\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タグはシステム上で構成され、選択したモジュールに割り当てられます。\n" +"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限できます。" -#: ../../general/firts_task/transactional_list.php:23 +#: ../../general/first_task/transactional_list.php:21 msgid "There are no transactions defined yet." msgstr "トランザクションが定義されていません。" -#: ../../general/firts_task/transactional_list.php:30 +#: ../../general/first_task/transactional_list.php:28 msgid "Transactions" msgstr "トランザクション" -#: ../../general/firts_task/transactional_list.php:33 -#: ../../general/firts_task/transactional_list.php:38 +#: ../../general/first_task/transactional_list.php:31 +#: ../../general/first_task/transactional_list.php:41 msgid "Create Transactions" msgstr "トランザクションの作成" -#: ../../general/firts_task/transactional_list.php:34 +#: ../../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 " @@ -4854,674 +5827,337 @@ msgstr "" "\n" "トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる処理を表現します。" -#: ../../general/firts_task/cluster_builder.php:32 -msgid "There are no clusters defined yet." -msgstr "クラスタが定義されていません。" - -#: ../../general/firts_task/cluster_builder.php:37 -#: ../../enterprise/godmode/reporting/cluster_list.php:25 -msgid "Clusters" -msgstr "クラスタ" - -#: ../../general/firts_task/cluster_builder.php:40 -#: ../../general/firts_task/cluster_builder.php:53 -msgid "Create Cluster" -msgstr "クラスタ作成" - -#: ../../general/firts_task/cluster_builder.php:43 -msgid "" -"A cluster is a group of devices that provide the same service in high " -"availability." -msgstr "クラスタは、同一サービスの高可用性を提供するデバイスのグループです。" - -#: ../../general/firts_task/cluster_builder.php:45 -msgid "Depending on how they provide that service, we can find two types:" -msgstr "どのようにサービス提供であるかに依存し、次の 2つのタイプがあります:" - -#: ../../general/firts_task/cluster_builder.php:47 -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." -msgstr "" -"
    サービス負荷分散クラスタ:これらは、アクティブ-" -"アクティブ(A/A)モードクラスタです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停止しても動作を継続しますが負荷は増えます。" - -#: ../../general/firts_task/cluster_builder.php:49 -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." -msgstr "" -"サービス保証クラスタ:これらは、アクティブ-" -"スタンバイモードクラスタです。一つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動作していません(セカンダリ)。プライマリが" -"ダウンした場合、セカンダリがサービスを代わりに引き継ぎます。このクラスタの要素の多くはアクティブ-" -"スタンバイですが、スタンバイノードが「オンライン」であることを示すアクティブな要素もあります。したがって、マスタのサービス障害の場合、アクティブノードはこ" -"の情報を収集します。" - -#: ../../general/footer.php:48 ../../enterprise/meta/general/footer.php:30 +#: ../../general/footer.php:47 ../../enterprise/meta/general/footer.php:28 #, php-format -msgid "Pandora FMS %s - Build %s - MR %s" -msgstr "Pandora FMS %s - ビルド %s - MR %s" +msgid "%s %s - Build %s - MR %s" +msgstr "%s %s - ビルド %s - MR %s" -#: ../../general/footer.php:51 ../../enterprise/meta/general/footer.php:31 -msgid "Page generated at" -msgstr "ページ更新日時:" +#: ../../general/footer.php:54 +#, php-format +msgid "Page generated on %s" +msgstr "ページ生成: %s" -#: ../../general/footer.php:52 ../../enterprise/meta/general/footer.php:32 -msgid "® Ártica ST" -msgstr "® Ãrtica ST" - -#: ../../general/header.php:75 -msgid "Blank characters are used as AND conditions" -msgstr "スペースは、AND 条件です。" - -#: ../../general/header.php:90 ../../general/header.php:92 -msgid "Enter keywords to search" -msgstr "検索文字列を入力してください" - -#: ../../general/header.php:114 ../../general/header.php:122 -#: ../../enterprise/meta/general/main_header.php:355 -#: ../../enterprise/meta/general/main_header.php:363 +#: ../../general/header.php:48 ../../general/header.php:54 +#: ../../enterprise/meta/general/main_header.php:453 +#: ../../enterprise/meta/general/main_header.php:459 msgid "All systems" msgstr "全モニタシステム" -#: ../../general/header.php:114 -#: ../../enterprise/meta/general/main_header.php:355 +#: ../../general/header.php:48 +#: ../../enterprise/meta/general/main_header.php:453 msgid "Down" msgstr "停止" -#: ../../general/header.php:118 -#: ../../enterprise/meta/general/main_header.php:359 +#: ../../general/header.php:51 +#: ../../enterprise/meta/general/main_header.php:456 msgid "servers down" msgstr "停止中" -#: ../../general/header.php:122 -#: ../../enterprise/meta/general/main_header.php:363 +#: ../../general/header.php:54 +#: ../../enterprise/meta/general/main_header.php:459 msgid "Ready" msgstr "稼働中" -#: ../../general/header.php:142 ../../general/header.php:143 -msgid "QR Code of the page" -msgstr "ページの QR コード" - -#: ../../general/header.php:147 -#: ../../operation/visual_console/public_console.php:130 -msgid "QR code of the page" -msgstr "ページの QR コード" - -#: ../../general/header.php:169 ../../general/header.php:170 -#: ../../include/functions_clippy.php:128 -msgid "Pandora FMS assistant" -msgstr "Pandora FMS アシスタント" - -#: ../../general/header.php:206 -#: ../../enterprise/meta/general/main_header.php:390 -msgid "Configure autorefresh" -msgstr "自動更新設定" - -#: ../../general/header.php:233 ../../general/header.php:243 -#: ../../enterprise/meta/general/main_header.php:407 -#: ../../enterprise/meta/general/main_header.php:417 -msgid "Disabled autorefresh" -msgstr "自動更新の無効化" - -#: ../../general/header.php:266 +#: ../../general/header.php:76 msgid "Sobre actualización de revisión menor" msgstr "" -#: ../../general/header.php:269 -#: ../../godmode/update_manager/update_manager.offline.php:63 -#: ../../godmode/update_manager/update_manager.offline.php:66 -#: ../../include/functions_update_manager.php:363 -#: ../../include/functions_update_manager.php:366 -#: ../../enterprise/include/functions_update_manager.php:195 -#: ../../enterprise/include/functions_update_manager.php:198 +#: ../../general/header.php:78 +#: ../../godmode/update_manager/update_manager.offline.php:88 +#: ../../include/functions_update_manager.php:1392 +#: ../../enterprise/include/functions_update_manager.php:238 msgid "About minor release update" msgstr "マイナーアップデートに関して" -#: ../../general/header.php:277 -msgid "System alerts detected - Please fix as soon as possible" -msgstr "システムアラートを検知しました。できるだけ早く修正してください。" - -#: ../../general/header.php:292 -#, php-format -msgid "You have %d warning(s)" -msgstr "警告が %d 件あります。" - -#: ../../general/header.php:303 -msgid "There are not warnings" -msgstr "警告はありません" - -#: ../../general/header.php:312 -msgid "Main help" -msgstr "メインヘルプ" - -#: ../../general/header.php:318 ../../mobile/include/functions_web.php:33 -#: ../../mobile/include/ui.class.php:175 -#: ../../mobile/include/user.class.php:286 ../../mobile/operation/home.php:151 -#: ../../enterprise/meta/general/main_header.php:373 -msgid "Logout" -msgstr "ログアウト" - -#: ../../general/header.php:323 ../../general/header.php:325 -#: ../../operation/menu.php:373 -#: ../../enterprise/meta/general/main_header.php:430 -#: ../../enterprise/meta/general/main_header.php:435 -#: ../../enterprise/meta/include/functions_users_meta.php:178 -#: ../../enterprise/meta/include/functions_users_meta.php:190 -msgid "Edit my user" -msgstr "ユーザ情報編集" - -#: ../../general/header.php:334 +#: ../../general/header.php:87 msgid "New chat message" msgstr "新規チャットメッセージ" -#: ../../general/header.php:343 -msgid "Message overview" -msgstr "メッセージ概要" +#: ../../general/header.php:118 ../../general/header.php:120 +msgid "Enter keywords to search" +msgstr "検索文字列を入力してください" -#: ../../general/header.php:344 -#, php-format -msgid "You have %d unread message(s)" -msgstr "未読メッセージが %d 件あります。" +#: ../../general/header.php:233 +#: ../../enterprise/meta/general/main_header.php:487 +msgid "Configure autorefresh" +msgstr "自動更新設定" -#: ../../general/links_menu.php:20 ../../godmode/menu.php:299 -#: ../../godmode/menu.php:420 +#: ../../general/header.php:293 ../../general/header.php:310 +#: ../../enterprise/meta/general/main_header.php:504 +#: ../../enterprise/meta/general/main_header.php:516 +msgid "Disabled autorefresh" +msgstr "自動更新の無効化" + +#: ../../general/header.php:345 ../../general/header.php:347 +#: ../../include/class/Diagnostics.class.php:1958 +#: ../../include/class/HelpFeedBack.class.php:213 +msgid "Feedback" +msgstr "フィードバック" + +#: ../../general/header.php:364 +msgid "Go to support" +msgstr "サポート" + +#: ../../general/header.php:370 +msgid "Go to documentation" +msgstr "ドキュメント" + +#: ../../general/header.php:380 ../../general/header.php:390 +#: ../../operation/menu.php:447 +#: ../../enterprise/meta/general/main_header.php:559 +#: ../../enterprise/meta/general/main_header.php:565 +#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../enterprise/meta/include/functions_users_meta.php:208 +msgid "Edit my user" +msgstr "ユーザ情報編集" + +#: ../../general/header.php:405 ../../general/header.php:407 +#: ../../mobile/include/functions_web.php:32 +#: ../../mobile/include/ui.class.php:210 +#: ../../mobile/include/user.class.php:317 ../../mobile/operation/home.php:150 +#: ../../enterprise/meta/general/main_header.php:470 +msgid "Logout" +msgstr "ログアウト" + +#: ../../general/header.php:722 ../../godmode/setup/setup_general.php:426 +msgid "Send" +msgstr "送信" + +#: ../../general/header.php:723 +#: ../../godmode/agentes/status_monitor_custom_fields.php:240 +#: ../../godmode/events/custom_events.php:202 +#: ../../godmode/setup/snmp_wizard.php:100 +#: ../../godmode/update_manager/update_manager.offline.php:94 +#: ../../include/class/CredentialStore.class.php:1112 +#: ../../include/class/CredentialStore.class.php:1164 +#: ../../include/class/NetworkMap.class.php:2823 +#: ../../include/class/TreeGroupEdition.class.php:93 +#: ../../include/class/WelcomeWindow.class.php:174 +#: ../../include/functions_update_manager.php:204 +#: ../../include/functions_update_manager.php:468 +#: ../../include/functions_update_manager.php:762 +#: ../../include/functions_update_manager.php:1398 +#: ../../include/functions_visual_map_editor.php:790 +#: ../../include/functions_visual_map_editor.php:794 +#: ../../operation/agentes/pandora_networkmap.editor.php:573 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:469 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:355 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:268 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:344 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:241 +#: ../../enterprise/godmode/services/services.service.php:650 +#: ../../enterprise/include/class/AgentRepository.class.php:784 +#: ../../enterprise/include/class/AgentRepository.class.php:882 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2723 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1522 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1698 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1730 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/functions_update_manager.php:244 +#: ../../enterprise/meta/event/custom_events.php:248 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1099 +msgid "Cancel" +msgstr "キャンセル" + +#: ../../general/header.php:724 +msgid "Report an issue" +msgstr "問題を報告" + +#: ../../general/links_menu.php:17 ../../godmode/menu.php:348 +#: ../../godmode/menu.php:465 ../../enterprise/meta/general/main_header.php:376 msgid "Links" msgstr "リンク" -#: ../../general/login_help_dialog.php:39 -#: ../../enterprise/dashboard/widgets/example.php:37 -msgid "Welcome to Pandora FMS" -msgstr "ようこそ Pandora FMS へ" +#: ../../general/login_help_dialog.php:37 +#: ../../enterprise/dashboard/widgets/example.php:39 +#, php-format +msgid "Welcome to %s" +msgstr "%s へようこそ" -#: ../../general/login_help_dialog.php:42 +#: ../../general/login_help_dialog.php:41 +#, php-format 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 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 "" -"初めての Pandora FMS の利用であれば、Pandora FMS " -"に関して学べるいくつかのリンクを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには時間が必要です。" +"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつかお勧めします。 さまざまな監視ができますが、時間をかけて %s " +"の機能を活用する方法を学んでください!" -#: ../../general/login_help_dialog.php:51 -#: ../../general/login_help_dialog.php:53 +#: ../../general/login_help_dialog.php:55 +#: ../../general/login_help_dialog.php:60 msgid "Online help" msgstr "オンラインヘルプ" -#: ../../general/login_help_dialog.php:59 -#: ../../general/login_help_dialog.php:61 +#: ../../general/login_help_dialog.php:68 +#: ../../general/login_help_dialog.php:73 msgid "Enterprise version" msgstr "Enterprise版" -#: ../../general/login_help_dialog.php:67 -#: ../../general/login_help_dialog.php:69 ../../general/login_page.php:113 -#: ../../enterprise/include/process_reset_pass.php:58 -#: ../../enterprise/include/reset_pass.php:59 -#: ../../enterprise/meta/general/login_page.php:67 -#: ../../enterprise/meta/include/process_reset_pass.php:43 -#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../general/login_help_dialog.php:81 +#: ../../general/login_help_dialog.php:86 ../../general/login_page.php:142 +#: ../../general/login_page.php:145 +#: ../../enterprise/include/process_reset_pass.php:52 +#: ../../enterprise/include/reset_pass.php:53 +#: ../../enterprise/meta/general/login_page.php:64 +#: ../../enterprise/meta/include/process_reset_pass.php:47 +#: ../../enterprise/meta/include/reset_pass.php:47 msgid "Support" msgstr "サポート" -#: ../../general/login_help_dialog.php:69 +#: ../../general/login_help_dialog.php:86 msgid "Forums" msgstr "フォーラム" -#: ../../general/login_help_dialog.php:75 -#: ../../general/login_help_dialog.php:77 +#: ../../general/login_help_dialog.php:94 +#: ../../general/login_help_dialog.php:99 ../../general/mysqlerr.php:126 msgid "Documentation" msgstr "ドキュメント" -#: ../../general/login_help_dialog.php:86 +#: ../../general/login_help_dialog.php:108 msgid "Click here to don't show again this message" msgstr "このメッセージを再度表示したくない場合はこちらをクリックしてください" -#: ../../general/login_identification_wizard.php:141 -msgid "The Pandora FMS community wizard" -msgstr "Pandora FMS コミュニティウィザード" +#: ../../general/login_page.php:50 +#, php-format +msgid "Go to %s Website" +msgstr "%s ウェブサイトへ行く" -#: ../../general/login_identification_wizard.php:146 -msgid "Stay up to date with the Pandora FMS community" -msgstr "Pandora FMS コミュニティで最新情報を確認してください" - -#: ../../general/login_identification_wizard.php:150 -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" -msgstr "" -"Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータベースにあなたの Pandora " -"インスタンスを識別する情報を登録することに合意いただくことになります。これは Pandora FMS " -"に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありません。アップデートマネージャオプションからいつでもデータベースの登録解除を行うことが" -"できます。" - -#: ../../general/login_identification_wizard.php:151 -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" -msgstr "" -"同様に、ニュースレターの購読をすると、あなたのメールアドレスが Artica TS のデータベースに登録されることに合意いただくことになります。これは " -"Pandora FMS " -"に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありません。ニュースレターの購読オプションでいつでも登録解除を行うことができます。" - -#: ../../general/login_identification_wizard.php:156 -#: ../../godmode/alerts/configure_alert_template.php:817 -#: ../../enterprise/godmode/alerts/alert_events.php:548 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:91 -msgid "Finish" -msgstr "終了" - -#: ../../general/login_identification_wizard.php:160 -msgid "Return" -msgstr "戻る" - -#: ../../general/login_identification_wizard.php:164 -msgid "Join the Pandora FMS community" -msgstr "Pandora FMS コミュニティに参加する" - -#: ../../general/login_identification_wizard.php:166 -#: ../../operation/users/user_edit.php:358 -msgid "Subscribe to our newsletter" -msgstr "ニュースレターを購読する" - -#: ../../general/login_identification_wizard.php:169 -#: ../../general/login_identification_wizard.php:170 -#: ../../godmode/tag/edit_tag.php:195 ../../godmode/tag/tag.php:203 -#: ../../operation/search_users.php:44 -#: ../../enterprise/extensions/cron/main.php:282 -#: ../../enterprise/extensions/cron/main.php:320 -#: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../enterprise/operation/reporting/custom_reporting.php:24 -#: ../../enterprise/operation/reporting/custom_reporting.php:78 -msgid "Email" -msgstr "Email" - -#: ../../general/login_identification_wizard.php:171 -msgid "Required" -msgstr "必須" - -#: ../../general/login_identification_wizard.php:179 -#: ../../general/login_required.php:69 -msgid "Pandora FMS instance identification wizard" -msgstr "Pandora FMS インスタンス識別ウィザード" - -#: ../../general/login_identification_wizard.php:181 -msgid "Do you want to continue without any registration" -msgstr "登録せずに進みますか" - -#: ../../general/login_identification_wizard.php:184 -#: ../../godmode/agentes/agent_conf_gis.php:80 -#: ../../godmode/agentes/agent_manager.php:433 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:303 -#: ../../godmode/alerts/alert_view.php:385 -#: ../../godmode/massive/massive_edit_agents.php:348 -#: ../../godmode/massive/massive_edit_agents.php:469 -#: ../../godmode/massive/massive_edit_agents.php:475 -#: ../../godmode/massive/massive_edit_modules.php:428 -#: ../../godmode/massive/massive_edit_modules.php:473 -#: ../../godmode/massive/massive_edit_modules.php:492 -#: ../../godmode/massive/massive_edit_modules.php:590 -#: ../../godmode/massive/massive_edit_modules.php:618 -#: ../../godmode/massive/massive_edit_modules.php:636 -#: ../../godmode/reporting/reporting_builder.main.php:115 -#: ../../godmode/reporting/reporting_builder.php:677 -#: ../../godmode/reporting/visual_console_builder.wizard.php:274 -#: ../../godmode/reporting/visual_console_builder.wizard.php:315 -#: ../../godmode/servers/manage_recontask.php:340 -#: ../../godmode/servers/manage_recontask_form.php:317 -#: ../../godmode/servers/modificar_server.php:45 -#: ../../godmode/setup/news.php:264 ../../godmode/setup/performance.php:119 -#: ../../godmode/setup/performance.php:126 -#: ../../godmode/setup/performance.php:133 -#: ../../godmode/setup/setup_auth.php:52 ../../godmode/setup/setup_auth.php:60 -#: ../../godmode/setup/setup_auth.php:95 -#: ../../godmode/setup/setup_auth.php:144 -#: ../../godmode/setup/setup_ehorus.php:56 -#: ../../godmode/setup/setup_general.php:72 -#: ../../godmode/setup/setup_general.php:76 -#: ../../godmode/setup/setup_general.php:80 -#: ../../godmode/setup/setup_general.php:104 -#: ../../godmode/setup/setup_general.php:113 -#: ../../godmode/setup/setup_general.php:171 -#: ../../godmode/setup/setup_general.php:179 -#: ../../godmode/setup/setup_general.php:186 -#: ../../godmode/setup/setup_general.php:211 -#: ../../godmode/setup/setup_general.php:220 -#: ../../godmode/setup/setup_general.php:228 -#: ../../godmode/setup/setup_netflow.php:64 -#: ../../godmode/setup/setup_netflow.php:72 -#: ../../godmode/setup/setup_visuals.php:90 -#: ../../godmode/setup/setup_visuals.php:110 -#: ../../godmode/setup/setup_visuals.php:133 -#: ../../godmode/setup/setup_visuals.php:272 -#: ../../godmode/setup/setup_visuals.php:281 -#: ../../godmode/setup/setup_visuals.php:289 -#: ../../godmode/setup/setup_visuals.php:302 -#: ../../godmode/setup/setup_visuals.php:325 -#: ../../godmode/setup/setup_visuals.php:418 -#: ../../godmode/setup/setup_visuals.php:510 -#: ../../godmode/setup/setup_visuals.php:517 -#: ../../godmode/setup/setup_visuals.php:544 -#: ../../godmode/setup/setup_visuals.php:711 -#: ../../godmode/setup/setup_visuals.php:738 -#: ../../godmode/update_manager/update_manager.setup.php:125 -#: ../../godmode/users/configure_user.php:579 -#: ../../include/functions_events.php:2487 -#: ../../include/functions_events.php:2494 -#: ../../include/functions_snmp.php:334 ../../mobile/operation/events.php:186 -#: ../../mobile/operation/events.php:193 -#: ../../operation/netflow/nf_live_view.php:280 -#: ../../operation/snmpconsole/snmp_view.php:506 -#: ../../operation/users/user_edit.php:251 -#: ../../enterprise/extensions/cron/functions.php:351 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:334 -#: ../../enterprise/godmode/setup/setup.php:32 -#: ../../enterprise/godmode/setup/setup.php:41 -#: ../../enterprise/godmode/setup/setup.php:57 -#: ../../enterprise/godmode/setup/setup.php:141 -#: ../../enterprise/godmode/setup/setup.php:206 -#: ../../enterprise/godmode/setup/setup.php:289 -#: ../../enterprise/godmode/setup/setup.php:298 -#: ../../enterprise/godmode/setup/setup.php:303 -#: ../../enterprise/godmode/setup/setup.php:312 -#: ../../enterprise/godmode/setup/setup.php:326 -#: ../../enterprise/godmode/setup/setup.php:331 -#: ../../enterprise/godmode/setup/setup.php:342 -#: ../../enterprise/godmode/setup/setup_auth.php:82 -#: ../../enterprise/godmode/setup/setup_auth.php:106 -#: ../../enterprise/godmode/setup/setup_auth.php:240 -#: ../../enterprise/godmode/setup/setup_auth.php:669 -#: ../../enterprise/godmode/setup/setup_auth.php:704 -#: ../../enterprise/godmode/setup/setup_auth.php:823 -#: ../../enterprise/godmode/setup/setup_history.php:47 -#: ../../enterprise/godmode/setup/setup_history.php:51 -#: ../../enterprise/meta/advanced/metasetup.password.php:80 -#: ../../enterprise/meta/advanced/metasetup.password.php:91 -#: ../../enterprise/meta/advanced/metasetup.password.php:97 -#: ../../enterprise/meta/advanced/metasetup.password.php:108 -#: ../../enterprise/meta/advanced/metasetup.password.php:124 -#: ../../enterprise/meta/advanced/metasetup.password.php:130 -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -#: ../../enterprise/meta/advanced/metasetup.setup.php:138 -#: ../../enterprise/meta/advanced/metasetup.setup.php:189 -#: ../../enterprise/meta/advanced/metasetup.setup.php:194 -#: ../../enterprise/meta/advanced/metasetup.setup.php:259 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:95 -#: ../../enterprise/meta/advanced/metasetup.visual.php:126 -#: ../../enterprise/meta/advanced/metasetup.visual.php:130 -#: ../../enterprise/meta/advanced/metasetup.visual.php:192 -#: ../../enterprise/meta/advanced/metasetup.visual.php:201 -#: ../../enterprise/meta/advanced/metasetup.visual.php:321 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1565 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 -msgid "No" -msgstr "いいえ" - -#: ../../general/login_identification_wizard.php:187 -#: ../../godmode/agentes/agent_conf_gis.php:79 -#: ../../godmode/agentes/agent_manager.php:430 -#: ../../godmode/alerts/alert_view.php:107 -#: ../../godmode/alerts/alert_view.php:301 -#: ../../godmode/massive/massive_edit_agents.php:348 -#: ../../godmode/massive/massive_edit_agents.php:468 -#: ../../godmode/massive/massive_edit_agents.php:475 -#: ../../godmode/massive/massive_edit_modules.php:427 -#: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/massive/massive_edit_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:590 -#: ../../godmode/massive/massive_edit_modules.php:617 -#: ../../godmode/massive/massive_edit_modules.php:636 -#: ../../godmode/reporting/reporting_builder.main.php:111 -#: ../../godmode/reporting/reporting_builder.php:675 -#: ../../godmode/reporting/visual_console_builder.wizard.php:269 -#: ../../godmode/reporting/visual_console_builder.wizard.php:312 -#: ../../godmode/servers/manage_recontask.php:340 -#: ../../godmode/servers/manage_recontask_form.php:317 -#: ../../godmode/servers/modificar_server.php:47 -#: ../../godmode/setup/performance.php:118 -#: ../../godmode/setup/performance.php:125 -#: ../../godmode/setup/performance.php:132 -#: ../../godmode/setup/setup_auth.php:51 ../../godmode/setup/setup_auth.php:59 -#: ../../godmode/setup/setup_auth.php:94 -#: ../../godmode/setup/setup_auth.php:141 -#: ../../godmode/setup/setup_ehorus.php:55 -#: ../../godmode/setup/setup_general.php:71 -#: ../../godmode/setup/setup_general.php:75 -#: ../../godmode/setup/setup_general.php:79 -#: ../../godmode/setup/setup_general.php:103 -#: ../../godmode/setup/setup_general.php:112 -#: ../../godmode/setup/setup_general.php:168 -#: ../../godmode/setup/setup_general.php:176 -#: ../../godmode/setup/setup_general.php:185 -#: ../../godmode/setup/setup_general.php:210 -#: ../../godmode/setup/setup_general.php:219 -#: ../../godmode/setup/setup_general.php:227 -#: ../../godmode/setup/setup_netflow.php:63 -#: ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/setup/setup_visuals.php:86 -#: ../../godmode/setup/setup_visuals.php:106 -#: ../../godmode/setup/setup_visuals.php:129 -#: ../../godmode/setup/setup_visuals.php:264 -#: ../../godmode/setup/setup_visuals.php:278 -#: ../../godmode/setup/setup_visuals.php:286 -#: ../../godmode/setup/setup_visuals.php:299 -#: ../../godmode/setup/setup_visuals.php:323 -#: ../../godmode/setup/setup_visuals.php:416 -#: ../../godmode/setup/setup_visuals.php:509 -#: ../../godmode/setup/setup_visuals.php:515 -#: ../../godmode/setup/setup_visuals.php:542 -#: ../../godmode/setup/setup_visuals.php:707 -#: ../../godmode/setup/setup_visuals.php:734 -#: ../../godmode/update_manager/update_manager.setup.php:124 -#: ../../godmode/users/configure_user.php:579 -#: ../../include/functions_snmp.php:340 -#: ../../operation/netflow/nf_live_view.php:276 -#: ../../operation/snmpconsole/snmp_view.php:503 -#: ../../operation/users/user_edit.php:251 -#: ../../enterprise/extensions/cron/functions.php:351 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:332 -#: ../../enterprise/godmode/setup/setup.php:31 -#: ../../enterprise/godmode/setup/setup.php:40 -#: ../../enterprise/godmode/setup/setup.php:56 -#: ../../enterprise/godmode/setup/setup.php:140 -#: ../../enterprise/godmode/setup/setup.php:205 -#: ../../enterprise/godmode/setup/setup.php:288 -#: ../../enterprise/godmode/setup/setup.php:297 -#: ../../enterprise/godmode/setup/setup.php:302 -#: ../../enterprise/godmode/setup/setup.php:311 -#: ../../enterprise/godmode/setup/setup.php:325 -#: ../../enterprise/godmode/setup/setup.php:330 -#: ../../enterprise/godmode/setup/setup.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:79 -#: ../../enterprise/godmode/setup/setup_auth.php:103 -#: ../../enterprise/godmode/setup/setup_auth.php:237 -#: ../../enterprise/godmode/setup/setup_auth.php:666 -#: ../../enterprise/godmode/setup/setup_auth.php:701 -#: ../../enterprise/godmode/setup/setup_auth.php:822 -#: ../../enterprise/godmode/setup/setup_history.php:46 -#: ../../enterprise/godmode/setup/setup_history.php:50 -#: ../../enterprise/meta/advanced/metasetup.password.php:79 -#: ../../enterprise/meta/advanced/metasetup.password.php:90 -#: ../../enterprise/meta/advanced/metasetup.password.php:96 -#: ../../enterprise/meta/advanced/metasetup.password.php:107 -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/advanced/metasetup.password.php:129 -#: ../../enterprise/meta/advanced/metasetup.performance.php:82 -#: ../../enterprise/meta/advanced/metasetup.setup.php:137 -#: ../../enterprise/meta/advanced/metasetup.setup.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:193 -#: ../../enterprise/meta/advanced/metasetup.setup.php:258 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:94 -#: ../../enterprise/meta/advanced/metasetup.visual.php:125 -#: ../../enterprise/meta/advanced/metasetup.visual.php:129 -#: ../../enterprise/meta/advanced/metasetup.visual.php:188 -#: ../../enterprise/meta/advanced/metasetup.visual.php:197 -#: ../../enterprise/meta/advanced/metasetup.visual.php:318 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1563 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 -msgid "Yes" -msgstr "はい" - -#: ../../general/login_page.php:53 -msgid "Go to Pandora FMS Website" -msgstr "Pandora FMS のウェブサイトへ" - -#: ../../general/login_page.php:65 +#: ../../general/login_page.php:63 msgid "Go to Login" msgstr "ログインへ" -#: ../../general/login_page.php:73 -#: ../../enterprise/meta/general/login_page.php:48 -#: ../../enterprise/meta/include/process_reset_pass.php:30 -#: ../../enterprise/meta/include/reset_pass.php:30 +#: ../../general/login_page.php:74 +#: ../../enterprise/meta/general/login_page.php:45 +#: ../../enterprise/meta/include/process_reset_pass.php:28 +#: ../../enterprise/meta/include/reset_pass.php:28 msgid "Splash login" msgstr "スプラッシュログイン" -#: ../../general/login_page.php:107 -#: ../../enterprise/include/process_reset_pass.php:56 -#: ../../enterprise/include/reset_pass.php:57 +#: ../../general/login_page.php:130 ../../general/login_page.php:133 +#: ../../general/login_page.php:149 +#: ../../enterprise/include/process_reset_pass.php:47 +#: ../../enterprise/include/reset_pass.php:48 msgid "Docs" msgstr "ドキュメント" -#: ../../general/login_page.php:177 +#: ../../general/login_page.php:227 msgid "Login as admin" msgstr "admin としてログイン" -#: ../../general/login_page.php:185 -#: ../../enterprise/meta/general/login_page.php:127 +#: ../../general/login_page.php:235 +#: ../../enterprise/meta/general/login_page.php:144 msgid "Login with SAML" msgstr "SAML でログイン" -#: ../../general/login_page.php:204 ../../mobile/include/user.class.php:256 -#: ../../enterprise/meta/general/login_page.php:119 -#: ../../enterprise/meta/general/login_page.php:147 +#: ../../general/login_page.php:267 ../../mobile/include/user.class.php:283 +#: ../../enterprise/meta/general/login_page.php:136 +#: ../../enterprise/meta/general/login_page.php:177 msgid "Login" msgstr "ログイン" -#: ../../general/login_page.php:219 +#: ../../general/login_page.php:283 msgid "Authentication code" msgstr "認証コード" -#: ../../general/login_page.php:222 ../../mobile/include/user.class.php:306 +#: ../../general/login_page.php:286 ../../mobile/include/user.class.php:349 msgid "Check code" msgstr "コードの確認" -#: ../../general/login_page.php:230 +#: ../../general/login_page.php:295 msgid "View details" msgstr "詳細を表示" -#: ../../general/login_page.php:244 -#: ../../enterprise/meta/general/login_page.php:155 +#: ../../general/login_page.php:309 +#: ../../enterprise/meta/general/login_page.php:185 msgid "Forgot your password?" msgstr "パスワードを忘れましたか?" -#: ../../general/login_page.php:259 ../../general/login_page.php:263 -#: ../../include/functions_config.php:1192 -#: ../../enterprise/include/process_reset_pass.php:132 -#: ../../enterprise/include/process_reset_pass.php:136 -#: ../../enterprise/include/reset_pass.php:122 -#: ../../enterprise/include/reset_pass.php:126 -msgid "WELCOME TO PANDORA FMS" -msgstr "PANDORA FMS へようこそ" +#: ../../general/login_page.php:323 ../../general/login_page.php:326 +#, php-format +msgid "WELCOME TO %s" +msgstr "%s へようこそ" -#: ../../general/login_page.php:272 ../../general/login_page.php:276 -#: ../../include/functions_config.php:1196 -#: ../../enterprise/include/process_reset_pass.php:145 -#: ../../enterprise/include/process_reset_pass.php:149 -#: ../../enterprise/include/reset_pass.php:135 -#: ../../enterprise/include/reset_pass.php:139 +#: ../../general/login_page.php:335 ../../general/login_page.php:338 msgid "NEXT GENERATION" msgstr "NEXT GENERATION" -#: ../../general/login_page.php:295 -#: ../../enterprise/include/process_reset_pass.php:170 -#: ../../enterprise/include/reset_pass.php:160 -#: ../../enterprise/meta/general/login_page.php:191 -#: ../../enterprise/meta/include/process_reset_pass.php:129 -#: ../../enterprise/meta/include/reset_pass.php:118 +#: ../../general/login_page.php:357 +#: ../../enterprise/include/process_reset_pass.php:174 +#: ../../enterprise/include/reset_pass.php:154 +#: ../../enterprise/meta/general/login_page.php:222 +#: ../../enterprise/meta/include/process_reset_pass.php:161 +#: ../../enterprise/meta/include/reset_pass.php:137 msgid "Build" msgstr "ビルド" -#: ../../general/login_page.php:299 ../../general/login_page.php:302 -#: ../../general/login_page.php:317 ../../general/login_page.php:320 -#: ../../general/login_page.php:337 ../../general/login_page.php:340 -#: ../../enterprise/meta/general/login_page.php:195 -#: ../../enterprise/meta/general/login_page.php:198 -#: ../../enterprise/meta/general/login_page.php:213 -#: ../../enterprise/meta/general/login_page.php:216 -#: ../../enterprise/meta/general/login_page.php:233 -#: ../../enterprise/meta/general/login_page.php:236 +#: ../../general/login_page.php:361 ../../general/login_page.php:364 +#: ../../general/login_page.php:378 ../../general/login_page.php:381 +#: ../../general/login_page.php:398 ../../general/login_page.php:401 +#: ../../enterprise/meta/general/login_page.php:225 +#: ../../enterprise/meta/general/login_page.php:228 +#: ../../enterprise/meta/general/login_page.php:242 +#: ../../enterprise/meta/general/login_page.php:245 +#: ../../enterprise/meta/general/login_page.php:262 +#: ../../enterprise/meta/general/login_page.php:265 msgid "Password reset" msgstr "パスワードのリセット" -#: ../../general/login_page.php:306 -#: ../../enterprise/meta/general/login_page.php:202 +#: ../../general/login_page.php:368 +#: ../../enterprise/meta/general/login_page.php:232 msgid "INFO" msgstr "情報" -#: ../../general/login_page.php:307 -#: ../../enterprise/meta/general/login_page.php:203 +#: ../../general/login_page.php:369 +#: ../../enterprise/meta/general/login_page.php:233 msgid "An email has been sent to your email address" msgstr "あなたのアドレス宛にメールを送信しました" -#: ../../general/login_page.php:324 ../../general/login_page.php:363 -#: ../../enterprise/include/reset_pass.php:171 -#: ../../enterprise/meta/general/login_page.php:220 -#: ../../enterprise/meta/general/login_page.php:259 -#: ../../enterprise/meta/include/reset_pass.php:129 +#: ../../general/login_page.php:385 ../../general/login_page.php:427 +#: ../../enterprise/include/reset_pass.php:165 +#: ../../enterprise/meta/general/login_page.php:249 +#: ../../enterprise/meta/general/login_page.php:291 +#: ../../enterprise/meta/include/reset_pass.php:148 msgid "ERROR" msgstr "エラー" -#: ../../general/login_page.php:344 -#: ../../enterprise/meta/general/login_page.php:240 +#: ../../general/login_page.php:405 +#: ../../enterprise/meta/general/login_page.php:269 msgid "SUCCESS" msgstr "成功" -#: ../../general/login_page.php:356 ../../general/login_page.php:359 -#: ../../general/login_page.php:458 ../../general/login_page.php:461 -#: ../../enterprise/include/functions_login.php:131 -#: ../../enterprise/meta/general/login_page.php:252 -#: ../../enterprise/meta/general/login_page.php:255 +#: ../../general/login_page.php:420 ../../general/login_page.php:423 +#: ../../general/login_page.php:552 ../../general/login_page.php:555 +#: ../../enterprise/include/functions_login.php:141 +#: ../../enterprise/meta/general/login_page.php:284 +#: ../../enterprise/meta/general/login_page.php:287 msgid "Login failed" msgstr "ログインに失敗しました" -#: ../../general/login_page.php:375 ../../general/login_page.php:378 -#: ../../general/login_page.php:382 -#: ../../enterprise/meta/general/login_page.php:271 -#: ../../enterprise/meta/general/login_page.php:274 -#: ../../enterprise/meta/general/login_page.php:278 +#: ../../general/login_page.php:445 ../../general/login_page.php:448 +#: ../../general/login_page.php:452 +#: ../../enterprise/meta/general/login_page.php:309 +#: ../../enterprise/meta/general/login_page.php:312 +#: ../../enterprise/meta/general/login_page.php:316 msgid "Logged out" msgstr "ログアウトしました。" -#: ../../general/login_page.php:383 ../../mobile/include/user.class.php:221 -#: ../../enterprise/meta/general/login_page.php:279 +#: ../../general/login_page.php:453 ../../mobile/include/user.class.php:241 +#: ../../enterprise/meta/general/login_page.php:317 +#, php-format msgid "" -"Your session is over. Please close your browser window to close this Pandora " +"Your session has ended. Please close your browser window to close this %s " "session." -msgstr "セッションを終了しました。ブラウザのウインドウを閉じてください。" +msgstr "セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを閉じてください。" -#: ../../general/login_page.php:396 ../../include/functions_ui.php:3720 -msgid "Problem with Pandora FMS database" -msgstr "Pandora FMS データベースに問題があります" +#: ../../general/login_page.php:467 ../../general/login_page.php:469 +#, php-format +msgid "Problem with %s database" +msgstr "%s データベースに問題があります" -#: ../../general/login_page.php:397 +#: ../../general/login_page.php:473 msgid "" "Cannot connect to the database, please check your database setup in the " "include/config.php file.

    \n" @@ -5533,82 +6169,84 @@ msgstr "" "\t\tおそらく、データベース名、ホスト名、ユーザ名、パスワードの値が不正か\n" "\t\tデータベースサーバが動作していません。" -#: ../../general/login_page.php:401 ../../include/functions_ui.php:3725 +#: ../../general/login_page.php:478 msgid "DB ERROR" msgstr "DB エラー" -#: ../../general/login_page.php:407 ../../include/functions_ui.php:3731 +#: ../../general/login_page.php:484 +#, php-format 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 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 "" -"認証システムを変更した場合この問題が発生します。Pandora " -"は、データベース設定では認証方法を上書きできないためです。次のクエリを実行することにより、それらをデータベースから削除してください。: " -"
    DELETE FROM tconfig WHERE token = \"auth\";
    " +"認証システムを変更した場合、この問題の原因は、%s " +"が設定データベースの認証設定を上書きできないことです。以下を実行することにより、データベースよりそれらを削除してください。
    DELETE "
    +"FROM tconfig WHERE token = \"auth\";
    " -#: ../../general/login_page.php:411 ../../include/functions_ui.php:3735 +#: ../../general/login_page.php:489 msgid "Empty configuration table" msgstr "設定テーブルが空です" -#: ../../general/login_page.php:412 +#: ../../general/login_page.php:491 +#, php-format msgid "" "Cannot load configuration variables from database. Please check your " "database setup in the\n" -"\t\tinclude/config.php file.

    \n" -"\t\tMost likely your database schema has been created but there are is no " +"\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

    Pandora FMS 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\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データベース設定を確認してください。

    \n" -"\t\tデータベーススキーマは作成されていますが、データが無い、データベースへのアクセス権の問題、またはスキーマが古い可能性があります。\n" -"\t\t

    Pandora FMS コンソールが include/config.php ファイルを見つけることができないか\n" -"\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:419 ../../include/functions_ui.php:3743 +#: ../../general/login_page.php:501 msgid "No configuration file found" msgstr "設定ファイルがありません" -#: ../../general/login_page.php:420 +#: ../../general/login_page.php:503 +#, php-format msgid "" -"Pandora FMS Console cannot find include/config.php or this file has " -"invalid\n" +"%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." msgstr "" -"Pandora FMS コンソールが include/config.php を見つけられないか、このファイルのパーミッション\n" -"\t\tが不正で HTTP サーバが読み込めません。この問題を修正するにはドキュメントを参照してください。" +"%s コンソールが include/config.php を見つけられないか、このファイルのパーミッションが不正で\n" +"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照してください。" -#: ../../general/login_page.php:431 ../../include/functions_ui.php:3755 +#: ../../general/login_page.php:515 #, php-format msgid "You may try to run the %sinstallation wizard%s to create one." msgstr "作成するには、%sインストールウィザード%s を実行します。" -#: ../../general/login_page.php:434 ../../include/functions_ui.php:3758 +#: ../../general/login_page.php:519 msgid "Installer active" msgstr "インストーラが有効です" -#: ../../general/login_page.php:435 +#: ../../general/login_page.php:521 +#, php-format msgid "" "For security reasons, normal operation is not possible until you delete " "installer file.\n" -"\t\tPlease delete the ./install.php file before running Pandora FMS " -"Console." +"\t\tPlease delete the ./install.php file before running %s Console." msgstr "" -"セキュリティ上の理由jにより、インストーラファイルを削除するまで通常の操作はできません。\n" -"\t\tPandora FMS コンソールを実行する前に ./install.php ファイルを削除してください。" +"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はできません。\n" +"\t\t%s コンソールを実行する前に、./install.php ファイルを削除してください。" -#: ../../general/login_page.php:439 ../../include/functions_ui.php:3763 +#: ../../general/login_page.php:528 msgid "Bad permission for include/config.php" msgstr "include/config.php のパーミッションが不正です" -#: ../../general/login_page.php:440 +#: ../../general/login_page.php:530 msgid "" "For security reasons, config.php must have restrictive permissions, " "and \"other\" users\n" @@ -5623,21 +6261,21 @@ msgstr "" "\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変更するまで\n" "\t\t通常の操作はできません。セキュリティのために対応してください。" -#: ../../general/login_page.php:446 +#: ../../general/login_page.php:538 msgid "Bad defined homedir" msgstr "homedir の定義が不正です" -#: ../../general/login_page.php:447 +#: ../../general/login_page.php:539 msgid "" "In the config.php file in the variable $config[\"homedir\"] = add the " "correct path" msgstr "config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してください。" -#: ../../general/login_page.php:450 +#: ../../general/login_page.php:543 msgid "Bad defined homeurl or homeurl_static" msgstr "homeurl または homeurl_static の定義が不正です" -#: ../../general/login_page.php:451 +#: ../../general/login_page.php:544 msgid "" "In the config.php file in the variable $config[\"homeurl\"] or " "$config[\"homeurl_static\"] = add the correct path" @@ -5645,150 +6283,18 @@ msgstr "" "config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] " "に正しいパスを設定してください。" -#: ../../general/login_required.php:72 -msgid "" -"Please fill the following information in order to configure your Pandora FMS " -"instance successfully" -msgstr "Pandora FMS インスタンスを正しく設定するために、以下の情報を入力してください" - -#: ../../general/login_required.php:86 -#: ../../godmode/setup/setup_general.php:52 -#: ../../include/functions_config.php:129 -#: ../../enterprise/meta/advanced/metasetup.setup.php:119 -#: ../../enterprise/meta/include/functions_meta.php:337 -msgid "Language code for Pandora" -msgstr "Pandoraの言語" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:148 -msgid "Africa" -msgstr "アフリカ" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -msgid "America" -msgstr "アメリカ" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:150 -msgid "Antarctica" -msgstr "南極大陸" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:151 -msgid "Arctic" -msgstr "北極" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -msgid "Asia" -msgstr "アジア" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:153 -msgid "Atlantic" -msgstr "大西洋" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:154 -msgid "Australia" -msgstr "オーストラリア" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -msgid "Europe" -msgstr "ヨーロッパ" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:156 -msgid "Indian" -msgstr "インド" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:157 -msgid "Pacific" -msgstr "太平洋" - -#: ../../general/login_required.php:91 -#: ../../godmode/setup/setup_general.php:115 -#: ../../include/functions_visual_map_editor.php:227 -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "UTC" -msgstr "UTC" - -#: ../../general/login_required.php:111 -#: ../../godmode/setup/setup_general.php:135 -#: ../../include/functions_config.php:166 -#: ../../enterprise/meta/advanced/metasetup.setup.php:177 -#: ../../enterprise/meta/include/functions_meta.php:387 -msgid "Timezone setup" -msgstr "タイムゾーン設定" - -#: ../../general/login_required.php:112 -#: ../../godmode/setup/setup_general.php:136 -msgid "" -"Must have the same time zone as the system or database to avoid mismatches " -"of time." -msgstr "時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする必要があります。" - -#: ../../general/login_required.php:116 -msgid "E-mail for receiving alerts" -msgstr "アラート受信メールアドレス" - -#: ../../general/login_required.php:124 -msgid "Register" -msgstr "登録" - -#: ../../general/login_required.php:127 -#: ../../godmode/setup/snmp_wizard.php:109 -#: ../../godmode/update_manager/update_manager.offline.php:72 -#: ../../include/functions_pandora_networkmap.php:1015 -#: ../../include/functions_update_manager.php:372 -#: ../../include/functions_visual_map_editor.php:622 -#: ../../include/functions_visual_map_editor.php:630 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:186 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:227 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:194 -#: ../../enterprise/include/functions_update_manager.php:204 -msgid "Cancel" -msgstr "キャンセル" - -#: ../../general/login_required.php:130 -msgid "All fields required" -msgstr "全フィールドが必須です" - -#: ../../general/logon_failed.php:21 -#: ../../include/ajax/double_auth.ajax.php:247 -#: ../../include/ajax/double_auth.ajax.php:344 -#: ../../include/ajax/double_auth.ajax.php:389 -#: ../../include/ajax/double_auth.ajax.php:503 -#: ../../operation/users/user_edit.php:704 -#: ../../operation/users/user_edit.php:769 -#: ../../operation/users/user_edit.php:840 +#: ../../general/logon_failed.php:18 +#: ../../include/ajax/double_auth.ajax.php:243 +#: ../../include/ajax/double_auth.ajax.php:340 +#: ../../include/ajax/double_auth.ajax.php:385 +#: ../../include/ajax/double_auth.ajax.php:499 +#: ../../operation/users/user_edit.php:977 +#: ../../operation/users/user_edit.php:1043 +#: ../../operation/users/user_edit.php:1114 msgid "Authentication error" msgstr "認証エラー" -#: ../../general/logon_failed.php:33 +#: ../../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, " @@ -5799,80 +6305,112 @@ msgstr "" "パスワードまたはユーザ名が正しくありません。大文字・小文字を区別しますので、CAPS LOCKキーを確認してください。

    ログインの失敗は " "Pandora FMS システムログに記録され他のユーザから確認されます。問題があれば管理者へ連絡してください。" -#: ../../general/logon_ok.php:114 ../../general/logon_ok.php:318 -msgid "Pandora FMS Overview" -msgstr "Pandora FMS 概要" +#: ../../general/logon_ok.php:165 +#, php-format +msgid "%s Overview" +msgstr "%s 概要" -#: ../../general/logon_ok.php:181 ../../general/logon_ok.php:380 -msgid "News board" -msgstr "ニュースボード" - -#: ../../general/logon_ok.php:186 ../../general/logon_ok.php:385 -#: ../../enterprise/operation/agentes/wux_console_view.php:251 -#: ../../enterprise/operation/agentes/wux_console_view.php:286 +#: ../../general/logon_ok.php:189 ../../godmode/setup/performance.php:179 +#: ../../godmode/setup/performance.php:234 +#: ../../enterprise/operation/agentes/wux_console_view.php:317 +#: ../../enterprise/operation/agentes/wux_console_view.php:346 msgid "ago" msgstr "前" -#: ../../general/logon_ok.php:193 ../../general/logon_ok.php:392 +#: ../../general/logon_ok.php:204 msgid "by" msgstr "発行者:" -#: ../../general/logon_ok.php:227 ../../general/logon_ok.php:424 -#: ../../godmode/admin_access_logs.php:191 -#: ../../include/functions_reporting_html.php:3712 -#: ../../mobile/operation/tactical.php:311 -#: ../../operation/snmpconsole/snmp_statistics.php:140 +#: ../../general/logon_ok.php:218 +msgid "News board" +msgstr "ニュースボード" + +#: ../../general/logon_ok.php:248 ../../godmode/admin_access_logs.php:199 +#: ../../include/functions.php:2884 +#: ../../include/functions_reporting_html.php:4647 +#: ../../mobile/operation/tactical.php:351 +#: ../../operation/snmpconsole/snmp_statistics.php:144 msgid "Source IP" msgstr "ソースIP" -#: ../../general/logon_ok.php:228 ../../general/logon_ok.php:425 -#: ../../godmode/admin_access_logs.php:192 -#: ../../godmode/servers/manage_recontask_form.php:371 -#: ../../godmode/users/configure_user.php:548 -#: ../../include/ajax/events.php:347 ../../include/functions.php:2340 -#: ../../include/functions_reporting_html.php:3713 -#: ../../mobile/operation/events.php:518 -#: ../../operation/users/user_edit.php:459 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:93 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:206 -#: ../../enterprise/extensions/ipam/ipam_excel.php:124 -#: ../../enterprise/extensions/ipam/ipam_massive.php:69 -#: ../../enterprise/extensions/ipam/ipam_network.php:543 -#: ../../enterprise/extensions/ipam/ipam_network.php:654 +#: ../../general/logon_ok.php:249 ../../godmode/admin_access_logs.php:200 +#: ../../godmode/users/configure_user.php:777 +#: ../../include/ajax/events.php:1232 ../../include/functions.php:2884 +#: ../../include/functions_reporting_html.php:4648 +#: ../../mobile/operation/events.php:561 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:461 +#: ../../operation/users/user_edit.php:595 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1736 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:144 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:268 +#: ../../enterprise/extensions/ipam/ipam_massive.php:83 +#: ../../enterprise/extensions/ipam/ipam_network.php:331 +#: ../../enterprise/extensions/ipam/ipam_network.php:596 msgid "Comments" msgstr "コメント" -#: ../../general/logon_ok.php:229 ../../general/logon_ok.php:426 -msgid "This is your last activity in Pandora FMS console" -msgstr "Pandora FMS コンソールにおける最近の操作" +#: ../../general/logon_ok.php:294 +msgid "Latest activity" +msgstr "最新の活動" -#: ../../general/noaccess2.php:18 ../../general/noaccess2.php:21 -#: ../../mobile/index.php:232 ../../mobile/operation/agent.php:87 -#: ../../mobile/operation/agents.php:166 ../../mobile/operation/alerts.php:141 -#: ../../mobile/operation/events.php:430 ../../mobile/operation/groups.php:53 -#: ../../mobile/operation/module_graph.php:270 -#: ../../mobile/operation/modules.php:173 -#: ../../mobile/operation/networkmap.php:78 -#: ../../mobile/operation/networkmaps.php:99 -#: ../../mobile/operation/tactical.php:71 -#: ../../mobile/operation/visualmap.php:65 -#: ../../mobile/operation/visualmaps.php:83 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:13 -#: ../../enterprise/meta/general/noaccess.php:24 +#: ../../general/mysqlerr.php:90 +msgid "Database error" +msgstr "データベースエラー" + +#: ../../general/mysqlerr.php:99 +msgid "" +"Failure to connect to historical database, please check the configuration or " +"contact system administrator if you need assistance." +msgstr "ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合はシステム管理者に連絡してください。" + +#: ../../general/mysqlerr.php:101 +msgid "" +"Failure to connect to Database server, please check the configuration file " +"config.php or contact system administrator if you need assistance." +msgstr "" +"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認するか、支援が必要な場合はシステム管理者に連絡してください。" + +#: ../../general/noaccess.php:133 ../../general/noaccess2.php:15 +#: ../../general/noaccess2.php:17 ../../general/noaccesssaml.php:133 +#: ../../mobile/index.php:258 ../../mobile/operation/agent.php:99 +#: ../../mobile/operation/agents.php:172 ../../mobile/operation/alerts.php:158 +#: ../../mobile/operation/events.php:468 ../../mobile/operation/groups.php:59 +#: ../../mobile/operation/module_graph.php:255 +#: ../../mobile/operation/modules.php:194 +#: ../../mobile/operation/tactical.php:81 +#: ../../mobile/operation/visualmap.php:79 +#: ../../mobile/operation/visualmaps.php:91 +#: ../../enterprise/meta/general/metaconsole_no_activated.php:12 +#: ../../enterprise/meta/general/noaccess.php:25 +#: ../../enterprise/meta/general/noaccesssaml.php:133 msgid "You don't have access to this page" msgstr "このページにはアクセスできません。" -#: ../../general/noaccess2.php:26 +#: ../../general/noaccess.php:138 ../../enterprise/meta/general/noaccess.php:34 +msgid "" +"Access to this page is restricted to authorized users only, please contact " +"system administrator if you need assistance." +msgstr "このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な場合はシステム管理者に連絡してください。" + +#: ../../general/noaccess.php:140 ../../enterprise/meta/general/noaccess.php:36 +#, php-format +msgid "" +"Please know that all attempts to access this page are recorded in security " +"logs of %s System Database" +msgstr "このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに記録されます。" + +#: ../../general/noaccess2.php:22 msgid "Access to this page is restricted" msgstr "このページへのアクセスは制限されています" -#: ../../general/noaccess2.php:31 -#: ../../enterprise/meta/general/metaconsole_no_activated.php:21 -#: ../../enterprise/meta/general/noaccess.php:28 +#: ../../general/noaccess2.php:27 +#: ../../enterprise/meta/general/metaconsole_no_activated.php:20 +#: ../../enterprise/meta/general/noaccess.php:29 msgid "No access" msgstr "アクセス不可" -#: ../../general/noaccess2.php:36 +#: ../../general/noaccess2.php:34 msgid "" "Access to this page is restricted to authorized users only, please contact " "system administrator if you need assistance.

    \n" @@ -5882,2273 +6420,2661 @@ msgstr "" "このページへのアクセスは認証されたユーザに限定されています。手助けが必要な場合はシステム管理者へ連絡してください。

    \n" "\t\t\tこのページへの全てのアクセスは、Pandora のシステムデータベースのセキュリティログに記録されます。" -#: ../../general/pandora_help.php:24 -msgid "Pandora FMS help system" -msgstr "Pandora FMS ヘルプシステム" +#: ../../general/noaccesssaml.php:138 +#: ../../enterprise/meta/general/noaccesssaml.php:138 +msgid "" +"Access to this page is restricted to authorized users SAML only, please " +"contact system administrator if you need assistance." +msgstr "このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が必要な場合はシステム管理者に連絡してください。" -#: ../../general/pandora_help.php:75 +#: ../../general/noaccesssaml.php:140 +#: ../../enterprise/meta/general/noaccesssaml.php:140 +#, 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" +msgstr "" +"SAML 認証が適切に構成されていることを確認してください。 詳細については、このページへのアクセスエラーが %s " +"システムデータベースのセキュリティログに記録されています。" + +#: ../../general/pandora_help.php:23 +#, php-format +msgid "%s help system" +msgstr "%s ヘルプシステム" + +#: ../../general/pandora_help.php:72 msgid "Help system error" msgstr "ヘルプシステムエラー" -#: ../../general/pandora_help.php:80 +#: ../../general/pandora_help.php:77 +#, php-format msgid "" -"Pandora FMS help system has been called with a help reference that currently " -"don't exist. There is no help content to show." -msgstr "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しません。" +"%s help system has been called with a help reference that currently don't " +"exist. There is no help content to show." +msgstr "%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘルプコンテンツはありません。" -#: ../../general/ui/agents_list.php:80 ../../general/ui/agents_list.php:91 -#: ../../godmode/agentes/modificar_agente.php:194 -#: ../../godmode/agentes/modificar_agente.php:200 -#: ../../godmode/agentes/module_manager.php:45 -#: ../../godmode/agentes/planned_downtime.list.php:141 -#: ../../godmode/agentes/planned_downtime.list.php:177 -#: ../../godmode/alerts/alert_templates.php:257 -#: ../../godmode/alerts/alert_templates.php:261 -#: ../../godmode/modules/manage_network_components.php:524 -#: ../../godmode/reporting/map_builder.php:229 -#: ../../godmode/reporting/map_builder.php:248 -#: ../../godmode/reporting/reporting_builder.item_editor.php:720 -#: ../../godmode/reporting/reporting_builder.php:473 -#: ../../godmode/reporting/visual_console_favorite.php:55 -#: ../../godmode/reporting/visual_console_favorite.php:72 -#: ../../godmode/users/user_list.php:228 ../../godmode/users/user_list.php:232 -#: ../../include/functions_snmp_browser.php:623 -#: ../../include/functions_snmp.php:318 -#: ../../operation/agentes/estado_agente.php:208 -#: ../../operation/agentes/estado_agente.php:231 -#: ../../operation/agentes/status_monitor.php:334 -#: ../../operation/incidents/incident.php:294 -#: ../../operation/search_results.php:161 -#: ../../enterprise/extensions/translate_string.php:265 -#: ../../enterprise/godmode/agentes/collection_manager.php:50 -#: ../../enterprise/godmode/agentes/collections.php:221 -#: ../../enterprise/godmode/alerts/alert_events_list.php:364 -#: ../../enterprise/godmode/alerts/alert_events_list.php:368 -#: ../../enterprise/godmode/modules/local_components.php:450 -#: ../../enterprise/godmode/modules/local_components.php:464 -#: ../../enterprise/godmode/policies/policy_agents.php:561 -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_collections.php:182 -#: ../../enterprise/godmode/reporting/cluster_list.php:109 -#: ../../enterprise/godmode/reporting/cluster_list.php:128 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:138 -#: ../../enterprise/meta/agentsearch.php:78 -#: ../../enterprise/meta/general/main_header.php:488 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:228 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:318 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:487 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:560 -#: ../../enterprise/operation/agentes/agent_inventory.php:90 -#: ../../enterprise/operation/agentes/agent_inventory.php:95 -#: ../../enterprise/operation/agentes/tag_view.php:139 -#: ../../enterprise/operation/inventory/inventory.php:180 -#: ../../enterprise/operation/inventory/inventory.php:220 -#: ../../enterprise/operation/log/log_viewer.php:187 -#: ../../enterprise/operation/log/log_viewer.php:254 -#: ../../enterprise/operation/services/services.list.php:164 -#: ../../enterprise/operation/services/services.list.php:203 -#: ../../enterprise/operation/services/services.table_services.php:133 -#: ../../enterprise/operation/services/services.table_services.php:172 -msgid "Search" -msgstr "検索" +#: ../../general/php7_message.php:30 +#: ../../include/class/ConsoleSupervisor.php:1442 +msgid "" +"For a correct operation of PandoraFMS, PHP must be updated to version 7.0 or " +"higher." +msgstr "Pandora FMS を正しく動作させるには、PHP をバージョン 7.0 以降に更新する必要があります。" -#: ../../general/ui/agents_list.php:121 -#: ../../godmode/massive/massive_copy_modules.php:169 -#: ../../operation/reporting/reporting_viewer.php:234 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:148 -#: ../../enterprise/godmode/policies/policy_modules.php:1340 +#: ../../general/php7_message.php:31 +#: ../../include/class/ConsoleSupervisor.php:1442 +msgid "Otherwise, functionalities will be lost." +msgstr "そうしないと、機能が動作しません。" + +#: ../../general/php7_message.php:33 +#: ../../include/class/ConsoleSupervisor.php:1442 +msgid "Report download in PDF format" +msgstr "PDF フォーマットでのレポートダウンロード" + +#: ../../general/php7_message.php:34 +#: ../../include/class/ConsoleSupervisor.php:1442 +msgid "Emails Sending" +msgstr "メール送信" + +#: ../../general/php7_message.php:35 +#: ../../include/class/ConsoleSupervisor.php:1442 +msgid "Metaconsole Collections" +msgstr "メタコンソールコレクション" + +#: ../../general/php7_message.php:38 +msgid "Access Help" +msgstr "ヘルプを見る" + +#: ../../general/php7_message.php:41 +msgid "Warning php version" +msgstr "php バージョン警告" + +#: ../../general/ui/agents_list.php:146 +#: ../../godmode/massive/massive_copy_modules.php:219 +#: ../../include/functions_events.php:3967 +#: ../../include/functions_events.php.orig:3873 +#: ../../operation/reporting/reporting_viewer.php:255 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:178 +#: ../../enterprise/godmode/policies/policy_modules.php:1648 #: ../../enterprise/meta/monitoring/wizard/wizard.php:106 -#: ../../enterprise/operation/log/log_viewer.php:262 -#: ../../enterprise/operation/log/log_viewer.php:268 +#: ../../enterprise/operation/log/log_viewer.php:666 +#: ../../enterprise/operation/log/log_viewer.php:672 msgid "Loading" msgstr "読み込み中" -#: ../../general/ui/agents_list.php:127 -#: ../../enterprise/extensions/vmware/vmware_view.php:1440 -#: ../../enterprise/godmode/reporting/cluster_view.php:486 -#: ../../enterprise/operation/policies/networkmap.policies.php:71 +#: ../../general/ui/agents_list.php:152 msgid "No agents found" msgstr "エージェントがありません" -#: ../../godmode/admin_access_logs.php:33 -msgid "Pandora audit" -msgstr "Pandoraの監査" +#: ../../godmode/admin_access_logs.php:39 +#: ../../godmode/agentes/planned_downtime.list.php:524 +#: ../../godmode/modules/manage_network_templates.php:263 +#: ../../include/graphs/functions_flot.php:372 +#: ../../operation/incidents/list_integriaims_incidents.php:213 +#: ../../operation/network/network_report.php:140 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:437 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:310 +#: ../../enterprise/operation/log/log_viewer.php:650 +#: ../../enterprise/operation/reporting/custom_reporting.php:62 +msgid "Export to CSV" +msgstr "CSVにエクスポート" -#: ../../godmode/admin_access_logs.php:33 +#: ../../godmode/admin_access_logs.php:47 +#, php-format +msgid "%s audit" +msgstr "%s 監査" + +#: ../../godmode/admin_access_logs.php:47 msgid "Review Logs" msgstr "ログ一覧" -#: ../../godmode/admin_access_logs.php:45 -#: ../../godmode/admin_access_logs.php:72 -#: ../../godmode/agentes/module_manager.php:49 -#: ../../godmode/modules/manage_network_templates_form.php:244 -#: ../../godmode/modules/manage_network_templates_form.php:300 -#: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:679 -#: ../../godmode/reporting/reporting_builder.list_items.php:177 -#: ../../godmode/reporting/reporting_builder.list_items.php:200 -#: ../../godmode/snmpconsole/snmp_alert.php:1014 -#: ../../godmode/snmpconsole/snmp_filters.php:151 -#: ../../godmode/snmpconsole/snmp_filters.php:225 -#: ../../godmode/tag/tag.php:161 -#: ../../operation/agentes/alerts_status.functions.php:116 -#: ../../operation/agentes/alerts_status.functions.php:126 -#: ../../operation/agentes/estado_monitores.php:487 -#: ../../operation/agentes/graphs.php:194 -#: ../../operation/incidents/incident.php:230 -#: ../../operation/netflow/nf_live_view.php:320 ../../operation/tree.php:160 -#: ../../enterprise/extensions/backup/main.php:87 -#: ../../enterprise/extensions/ipam/ipam_network.php:328 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:150 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:179 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:230 -#: ../../enterprise/godmode/policies/policies.php:239 -#: ../../enterprise/godmode/policies/policy_linking.php:68 -#: ../../enterprise/godmode/policies/policy_queue.php:374 -#: ../../enterprise/godmode/setup/setup_acl.php:416 -#: ../../enterprise/godmode/setup/setup_skins.php:91 -#: ../../enterprise/meta/advanced/policymanager.queue.php:228 -#: ../../enterprise/operation/services/services.list.php:293 -#: ../../enterprise/operation/services/services.list.php:299 -#: ../../enterprise/operation/services/services.table_services.php:261 -#: ../../enterprise/operation/services/services.table_services.php:267 -msgid "Filter" -msgstr "フィルタ" - -#: ../../godmode/admin_access_logs.php:65 -#: ../../godmode/admin_access_logs.php:66 -#: ../../enterprise/extensions/translate_string.php:254 -#: ../../enterprise/extensions/translate_string.php:255 -#: ../../enterprise/godmode/agentes/collection_manager.php:44 -#: ../../enterprise/godmode/agentes/collections.php:217 -#: ../../enterprise/godmode/policies/policies.php:235 -#: ../../enterprise/godmode/policies/policy_collections.php:176 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:139 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:140 +#: ../../godmode/admin_access_logs.php:70 +#: ../../enterprise/extensions/translate_string.php:313 +#: ../../enterprise/extensions/translate_string.php:314 +#: ../../enterprise/godmode/agentes/collection_manager.php:42 +#: ../../enterprise/godmode/agentes/collections.php:303 +#: ../../enterprise/godmode/policies/policies.php:348 +#: ../../enterprise/godmode/policies/policy_collections.php:228 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:184 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:185 msgid "Free text for search (*)" msgstr "検索文字列 (*)" -#: ../../godmode/admin_access_logs.php:67 -#: ../../godmode/admin_access_logs.php:68 -#: ../../godmode/events/event_edit_filter.php:281 -#: ../../mobile/operation/events.php:647 -#: ../../operation/events/events_list.php:644 -#: ../../enterprise/dashboard/widgets/events_list.php:38 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:33 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:33 -#: ../../enterprise/include/functions_events.php:163 +#: ../../godmode/admin_access_logs.php:72 +#: ../../godmode/admin_access_logs.php:73 +#: ../../godmode/events/event_edit_filter.php:370 +#: ../../mobile/operation/events.php:705 ../../operation/events/events.php:920 +#: ../../operation/events/events.php:1412 +#: ../../operation/events/events_list.php:959 +#: ../../enterprise/dashboard/widgets/events_list.php:43 +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:39 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:39 +#: ../../enterprise/include/functions_events.php:229 msgid "Max. hours old" msgstr "最大表示範囲(時間)" -#: ../../godmode/admin_access_logs.php:303 -msgid "Export to CSV " -msgstr "CSV へエクスポート " +#: ../../godmode/admin_access_logs.php:90 +#: ../../godmode/admin_access_logs.php:97 +#: ../../godmode/agentes/module_manager.php:48 +#: ../../godmode/modules/manage_network_templates_form.php:265 +#: ../../godmode/modules/manage_network_templates_form.php:325 +#: ../../godmode/netflow/nf_item_list.php:176 +#: ../../godmode/reporting/reporting_builder.item_editor.php:863 +#: ../../godmode/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:261 +#: ../../godmode/snmpconsole/snmp_alert.php:1124 +#: ../../godmode/snmpconsole/snmp_filters.php:182 +#: ../../godmode/snmpconsole/snmp_filters.php:259 ../../godmode/tag/tag.php:180 +#: ../../include/functions_ui.php:3228 ../../include/functions_ui.php:3247 +#: ../../include/functions_ui.php:3258 +#: ../../operation/agentes/alerts_status.functions.php:121 +#: ../../operation/agentes/alerts_status.functions.php:130 +#: ../../operation/agentes/estado_monitores.php:585 +#: ../../operation/agentes/graphs.php:258 +#: ../../operation/incidents/incident.php:293 +#: ../../operation/incidents/list_integriaims_incidents.php:220 +#: ../../operation/incidents/list_integriaims_incidents.php:224 +#: ../../operation/netflow/nf_live_view.php:383 ../../operation/tree.php:193 +#: ../../enterprise/extensions/backup/main.php:114 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1516 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:141 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:192 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:254 +#: ../../enterprise/godmode/policies/policies.php:357 +#: ../../enterprise/godmode/policies/policy_linking.php:101 +#: ../../enterprise/godmode/policies/policy_queue.php:437 +#: ../../enterprise/godmode/setup/setup_acl.php:477 +#: ../../enterprise/godmode/setup/setup_skins.php:93 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2552 +#: ../../enterprise/include/class/SAPView.class.php:402 +#: ../../enterprise/meta/advanced/policymanager.queue.php:235 +#: ../../enterprise/operation/services/services.list.php:360 +#: ../../enterprise/operation/services/services.list.php:365 +#: ../../enterprise/operation/services/services.table_services.php:336 +#: ../../enterprise/operation/services/services.table_services.php:341 +msgid "Filter" +msgstr "フィルタ" -#: ../../godmode/agentes/agent_conf_gis.php:40 -#: ../../operation/agentes/gis_view.php:55 +#: ../../godmode/agentes/agent_conf_gis.php:38 +#: ../../operation/agentes/gis_view.php:56 msgid "" "There is no default map. Please go to the setup for to set a default map." msgstr "デフォルトマップがありません。デフォルトマップ設定を行ってください。" #: ../../godmode/agentes/agent_conf_gis.php:50 -#: ../../operation/agentes/gis_view.php:86 msgid "" "There is no GIS data for this agent, so it's positioned in default position " "of map." msgstr "このエージェントには GIS データがありません。そのため、マップのデフォルト位置に配置します。" -#: ../../godmode/agentes/agent_conf_gis.php:53 +#: ../../godmode/agentes/agent_conf_gis.php:58 msgid "" "When you change the Agent position, the agent automatically activates the " "'Ignore new GIS data' option" msgstr "エージェントの位置を変更すると、エージェントは '新たなGISデータを無視する' オプションを自動的に有効化します。" -#: ../../godmode/agentes/agent_conf_gis.php:60 +#: ../../godmode/agentes/agent_conf_gis.php:67 msgid "Agent position" msgstr "エージェントの位置" -#: ../../godmode/agentes/agent_conf_gis.php:66 +#: ../../godmode/agentes/agent_conf_gis.php:73 msgid "Latitude: " msgstr "緯度: " -#: ../../godmode/agentes/agent_conf_gis.php:70 +#: ../../godmode/agentes/agent_conf_gis.php:90 msgid "Longitude: " msgstr "経度: " -#: ../../godmode/agentes/agent_conf_gis.php:74 +#: ../../godmode/agentes/agent_conf_gis.php:107 msgid "Altitude: " msgstr "高度: " -#: ../../godmode/agentes/agent_conf_gis.php:78 -#: ../../godmode/agentes/agent_manager.php:429 -#: ../../godmode/massive/massive_edit_agents.php:466 +#: ../../godmode/agentes/agent_conf_gis.php:124 +#: ../../godmode/massive/massive_edit_agents.php:685 msgid "Ignore new GIS data:" msgstr "新たな GIS データを無視する:" -#: ../../godmode/agentes/agent_incidents.php:67 +#: ../../godmode/agentes/agent_conf_gis.php:125 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_view.php:307 +#: ../../godmode/massive/massive_edit_agents.php:537 +#: ../../godmode/massive/massive_edit_agents.php:687 +#: ../../godmode/massive/massive_edit_agents.php:696 +#: ../../godmode/massive/massive_edit_modules.php:588 +#: ../../godmode/massive/massive_edit_modules.php:657 +#: ../../godmode/massive/massive_edit_modules.php:697 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:1009 +#: ../../godmode/massive/massive_edit_modules.php:1037 +#: ../../godmode/reporting/reporting_builder.main.php:172 +#: ../../godmode/reporting/reporting_builder.php:965 +#: ../../godmode/reporting/visual_console_builder.wizard.php:400 +#: ../../godmode/reporting/visual_console_builder.wizard.php:487 +#: ../../godmode/servers/modificar_server.php:47 +#: ../../godmode/update_manager/update_manager.setup.php:257 +#: ../../godmode/users/configure_user.php:833 +#: ../../include/functions_snmp.php:390 ../../include/functions_profile.php:254 +#: ../../operation/netflow/nf_live_view.php:452 +#: ../../operation/snmpconsole/snmp_view.php:628 +#: ../../operation/users/user_edit.php:303 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:439 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:508 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:548 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:848 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:876 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:176 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 +#: ../../enterprise/godmode/reporting/visual_console_template.php:212 +#: ../../enterprise/godmode/setup/setup_auth.php:203 +#: ../../enterprise/godmode/setup/setup_auth.php:330 +#: ../../enterprise/godmode/setup/setup_auth.php:858 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1928 +#: ../../enterprise/include/functions_cron.php:714 +#: ../../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:147 +#: ../../enterprise/meta/advanced/metasetup.performance.php:80 +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../enterprise/meta/advanced/metasetup.setup.php:146 +#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/advanced/metasetup.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.setup.php:217 +#: ../../enterprise/meta/advanced/metasetup.setup.php:275 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:94 +msgid "Yes" +msgstr "はい" + +#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../godmode/alerts/alert_view.php:102 +#: ../../godmode/alerts/alert_view.php:307 +#: ../../godmode/alerts/alert_view.php:384 +#: ../../godmode/massive/massive_edit_agents.php:538 +#: ../../godmode/massive/massive_edit_agents.php:688 +#: ../../godmode/massive/massive_edit_agents.php:697 +#: ../../godmode/massive/massive_edit_modules.php:589 +#: ../../godmode/massive/massive_edit_modules.php:658 +#: ../../godmode/massive/massive_edit_modules.php:698 +#: ../../godmode/massive/massive_edit_modules.php:971 +#: ../../godmode/massive/massive_edit_modules.php:1010 +#: ../../godmode/massive/massive_edit_modules.php:1038 +#: ../../godmode/reporting/reporting_builder.main.php:179 +#: ../../godmode/reporting/reporting_builder.php:967 +#: ../../godmode/reporting/visual_console_builder.wizard.php:410 +#: ../../godmode/reporting/visual_console_builder.wizard.php:488 +#: ../../godmode/servers/modificar_server.php:45 +#: ../../godmode/setup/news.php:277 +#: ../../godmode/update_manager/update_manager.setup.php:258 +#: ../../godmode/users/configure_user.php:834 +#: ../../include/functions_snmp.php:382 ../../include/functions_events.php:4537 +#: ../../include/functions_events.php:4542 +#: ../../include/functions_events.php.orig:4431 +#: ../../include/functions_events.php.orig:4436 +#: ../../include/functions_profile.php:254 +#: ../../mobile/operation/events.php:195 ../../mobile/operation/events.php:200 +#: ../../operation/netflow/nf_live_view.php:462 +#: ../../operation/snmpconsole/snmp_view.php:629 +#: ../../operation/users/user_edit.php:304 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:440 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:509 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:549 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:877 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:178 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:427 +#: ../../enterprise/godmode/reporting/visual_console_template.php:212 +#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup_auth.php:203 +#: ../../enterprise/godmode/setup/setup_auth.php:333 +#: ../../enterprise/godmode/setup/setup_auth.php:861 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1928 +#: ../../enterprise/include/functions_cron.php:713 +#: ../../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:148 +#: ../../enterprise/meta/advanced/metasetup.performance.php:81 +#: ../../enterprise/meta/advanced/metasetup.setup.php:143 +#: ../../enterprise/meta/advanced/metasetup.setup.php:147 +#: ../../enterprise/meta/advanced/metasetup.setup.php:207 +#: ../../enterprise/meta/advanced/metasetup.setup.php:214 +#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +#: ../../enterprise/meta/advanced/metasetup.setup.php:276 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:95 +msgid "No" +msgstr "いいえ" + +#: ../../godmode/agentes/agent_incidents.php:69 msgid "No incidents associated to this agent" msgstr "このエージェントに関連付けられたインシデントがありません" -#: ../../godmode/agentes/agent_incidents.php:87 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:318 -#: ../../operation/incidents/incident.php:337 -#: ../../operation/incidents/incident_detail.php:244 +#: ../../godmode/agentes/agent_incidents.php:90 +#: ../../operation/incidents/incident.php:421 +#: ../../operation/incidents/incident_detail.php:272 msgid "Incident" msgstr "インシデント" -#: ../../godmode/agentes/agent_incidents.php:88 -#: ../../godmode/alerts/alert_list.list.php:127 -#: ../../godmode/alerts/alert_templates.php:52 -#: ../../godmode/alerts/alert_view.php:102 -#: ../../godmode/alerts/configure_alert_template.php:770 -#: ../../godmode/snmpconsole/snmp_alert.php:941 -#: ../../godmode/snmpconsole/snmp_alert.php:1006 -#: ../../include/functions_events.php:2274 -#: ../../include/functions_reporting_html.php:2996 -#: ../../operation/agentes/estado_generalagente.php:436 -#: ../../operation/incidents/incident.php:246 -#: ../../operation/incidents/incident.php:338 -#: ../../operation/incidents/incident_detail.php:318 -#: ../../enterprise/godmode/alerts/alert_events.php:505 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:172 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:223 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:276 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:355 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:107 +#: ../../godmode/agentes/agent_incidents.php:91 +#: ../../godmode/alerts/alert_list.list.php:120 +#: ../../godmode/alerts/alert_templates.php:51 +#: ../../godmode/alerts/alert_view.php:97 +#: ../../godmode/alerts/configure_alert_template.php:940 +#: ../../godmode/setup/setup_integria.php:307 +#: ../../godmode/setup/setup_integria.php:430 +#: ../../godmode/snmpconsole/snmp_alert.php:1036 +#: ../../godmode/snmpconsole/snmp_alert.php:1116 +#: ../../include/functions_events.php:4242 +#: ../../include/functions_events.php.orig:4149 +#: ../../include/functions_reporting_html.php:4021 +#: ../../operation/agentes/estado_generalagente.php:574 +#: ../../operation/incidents/configure_integriaims_incident.php:272 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:376 +#: ../../operation/incidents/incident.php:309 +#: ../../operation/incidents/incident.php:422 +#: ../../operation/incidents/incident_detail.php:347 +#: ../../operation/incidents/integriaims_export_csv.php:93 +#: ../../operation/incidents/list_integriaims_incidents.php:137 +#: ../../enterprise/godmode/alerts/alert_events.php:611 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:187 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:399 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:507 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:718 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:412 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:82 msgid "Priority" msgstr "優先度" -#: ../../godmode/agentes/agent_incidents.php:90 -#: ../../godmode/servers/servers.build_table.php:72 -#: ../../operation/incidents/incident.php:340 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:221 -#: ../../enterprise/meta/advanced/servers.build_table.php:67 +#: ../../godmode/agentes/agent_incidents.php:93 +#: ../../godmode/servers/servers.build_table.php:73 +#: ../../operation/incidents/incident.php:424 +#: ../../operation/incidents/integriaims_export_csv.php:94 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:283 +#: ../../enterprise/include/class/DatabaseHA.class.php:684 +#: ../../enterprise/meta/advanced/servers.build_table.php:66 msgid "Updated" msgstr "更新" -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/events/custom_events.php:165 -#: ../../godmode/massive/massive_copy_modules.php:108 -#: ../../godmode/reporting/reporting_builder.item_editor.php:923 -#: ../../include/functions_events.php:47 -#: ../../include/functions_events.php:2247 -#: ../../include/functions_events.php:2305 -#: ../../include/functions_events.php:3693 -#: ../../operation/agentes/pandora_networkmap.editor.php:246 -#: ../../operation/events/events.build_table.php:229 -#: ../../operation/incidents/incident.php:341 -#: ../../operation/incidents/incident_detail.php:289 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:116 -#: ../../enterprise/include/functions_log.php:369 -#: ../../enterprise/meta/advanced/policymanager.sync.php:291 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:332 -#: ../../enterprise/meta/advanced/synchronizing.component.php:310 -#: ../../enterprise/meta/advanced/synchronizing.group.php:152 +#: ../../godmode/agentes/agent_incidents.php:94 +#: ../../godmode/events/custom_events.php:108 +#: ../../godmode/events/event_edit_filter.php:593 +#: ../../godmode/massive/massive_copy_modules.php:128 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1251 +#: ../../include/functions_events.php:202 +#: ../../include/functions_events.php:271 +#: ../../include/functions_events.php:4210 +#: ../../include/functions_events.php:4278 +#: ../../include/functions_events.php:6081 +#: ../../include/functions_events.php.orig:200 +#: ../../include/functions_events.php.orig:269 +#: ../../include/functions_events.php.orig:4117 +#: ../../include/functions_events.php.orig:4185 +#: ../../include/functions_events.php.orig:5985 +#: ../../operation/agentes/pandora_networkmap.editor.php:306 +#: ../../operation/events/events.build_table.php:293 +#: ../../operation/events/events.php:997 +#: ../../operation/events/events_list.php:985 +#: ../../operation/incidents/incident.php:425 +#: ../../operation/incidents/incident_detail.php:317 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:130 +#: ../../enterprise/include/functions_log.php:381 +#: ../../enterprise/meta/advanced/policymanager.sync.php:307 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:320 +#: ../../enterprise/meta/advanced/synchronizing.component.php:300 +#: ../../enterprise/meta/advanced/synchronizing.group.php:177 #: ../../enterprise/meta/advanced/synchronizing.module_groups.php:75 -#: ../../enterprise/meta/advanced/synchronizing.os.php:75 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:91 -#: ../../enterprise/meta/advanced/synchronizing.user.php:528 -#: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:103 -#: ../../enterprise/operation/log/log_viewer.php:221 +#: ../../enterprise/meta/advanced/synchronizing.os.php:71 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:88 +#: ../../enterprise/meta/advanced/synchronizing.user.php:583 +#: ../../enterprise/meta/include/functions_events_meta.php:110 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:104 +#: ../../enterprise/operation/log/log_viewer.php:471 msgid "Source" msgstr "ソース" -#: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/events/custom_events.php:113 -#: ../../godmode/events/custom_events.php:167 -#: ../../include/functions_events.php:49 -#: ../../include/functions_events.php:2465 -#: ../../include/functions_events.php:3651 -#: ../../mobile/operation/events.php:477 -#: ../../operation/events/events.build_table.php:179 -#: ../../operation/incidents/incident.php:342 -#: ../../operation/incidents/incident_detail.php:266 -#: ../../enterprise/meta/include/functions_events_meta.php:100 +#: ../../godmode/agentes/agent_incidents.php:95 +#: ../../godmode/events/custom_events.php:110 +#: ../../godmode/setup/setup_integria.php:325 +#: ../../godmode/setup/setup_integria.php:448 +#: ../../include/functions_events.php:204 +#: ../../include/functions_events.php:277 +#: ../../include/functions_events.php:4507 +#: ../../include/functions_events.php:6032 +#: ../../include/functions_events.php.orig:202 +#: ../../include/functions_events.php.orig:275 +#: ../../include/functions_events.php.orig:4401 +#: ../../include/functions_events.php.orig:5936 +#: ../../mobile/operation/events.php:520 +#: ../../operation/events/events.build_table.php:212 +#: ../../operation/incidents/configure_integriaims_incident.php:288 +#: ../../operation/incidents/incident.php:426 +#: ../../operation/incidents/incident_detail.php:294 +#: ../../operation/incidents/integriaims_export_csv.php:97 +#: ../../operation/incidents/list_integriaims_incidents.php:131 +#: ../../operation/incidents/list_integriaims_incidents.php:261 +#: ../../enterprise/meta/include/functions_events_meta.php:118 msgid "Owner" msgstr "所有者" -#: ../../godmode/agentes/agent_manager.php:155 -#: ../../godmode/agentes/modificar_agente.php:460 -#: ../../godmode/events/custom_events.php:74 -#: ../../godmode/events/custom_events.php:154 -#: ../../include/functions_treeview.php:561 -#: ../../include/functions_events.php:36 -#: ../../include/functions_events.php:908 -#: ../../include/functions_events.php:3635 -#: ../../include/functions_reporting_html.php:2081 -#: ../../mobile/operation/modules.php:495 -#: ../../mobile/operation/modules.php:753 -#: ../../operation/events/events.build_table.php:161 -#: ../../enterprise/extensions/ipam/ipam_excel.php:123 -#: ../../enterprise/include/functions_reporting_pdf.php:2395 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1071 -#: ../../enterprise/meta/include/functions_events_meta.php:61 -msgid "Agent name" -msgstr "エージェント名" - -#: ../../godmode/agentes/agent_manager.php:156 -msgid "The agent's name must be the same as the one defined at the console" -msgstr "ここで指定するエージェント名は、すでに定義済のものである必要があります。" - -#: ../../godmode/agentes/agent_manager.php:159 -msgid "QR Code Agent view" -msgstr "エージェント表示 QR コード" - -#: ../../godmode/agentes/agent_manager.php:166 -#: ../../operation/agentes/estado_agente.php:173 ../../operation/menu.php:55 -msgid "Agent detail" -msgstr "エージェント詳細" - -#: ../../godmode/agentes/agent_manager.php:190 -#: ../../enterprise/godmode/policies/policy_agents.php:626 -msgid "This agent can be remotely configured" -msgstr "このエージェントはリモートから設定可能です。" - #: ../../godmode/agentes/agent_manager.php:193 -msgid "You can remotely edit this agent configuration" -msgstr "このエージェントはリモートから設定可能です。" - -#: ../../godmode/agentes/agent_manager.php:200 -msgid "Delete agent" -msgstr "エージェント削除" - -#: ../../godmode/agentes/agent_manager.php:202 -#: ../../enterprise/meta/include/functions_wizard_meta.php:148 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1629 -msgid "Alias" -msgstr "別名" - -#: ../../godmode/agentes/agent_manager.php:205 -msgid "Use alias as name" -msgstr "名前に別名を利用" - -#: ../../godmode/agentes/agent_manager.php:208 -#: ../../godmode/servers/modificar_server.php:56 -#: ../../include/functions_treeview.php:581 -#: ../../include/functions_events.php:2128 -#: ../../include/functions_reporting_html.php:2321 -#: ../../include/functions_reporting_html.php:2364 -#: ../../operation/gis_maps/ajax.php:269 -#: ../../enterprise/include/functions_reporting_pdf.php:1925 -#: ../../enterprise/include/functions_reporting_pdf.php:1944 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1087 -#: ../../enterprise/meta/include/functions_wizard_meta.php:163 -#: ../../enterprise/meta/include/functions_wizard_meta.php:166 -#: ../../enterprise/meta/include/functions_wizard_meta.php:375 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1306 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1641 -msgid "IP Address" -msgstr "IP アドレス" - -#: ../../godmode/agentes/agent_manager.php:217 -#: ../../godmode/snmpconsole/snmp_alert.php:1331 -#: ../../operation/events/events.build_table.php:770 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:211 -msgid "Delete selected" -msgstr "選択範囲を削除します" - -#: ../../godmode/agentes/agent_manager.php:235 -msgid "Only it is show when
    the agent is saved." -msgstr "エージェントが保存されたときのみ
    表示されます。" - -#: ../../godmode/agentes/agent_manager.php:247 -#: ../../godmode/agentes/agent_manager.php:332 -#: ../../godmode/agentes/planned_downtime.editor.php:727 -#: ../../godmode/agentes/planned_downtime.list.php:154 -#: ../../godmode/events/event_edit_filter.php:297 -#: ../../godmode/massive/massive_add_action_alerts.php:161 -#: ../../godmode/massive/massive_copy_modules.php:136 -#: ../../godmode/massive/massive_delete_modules.php:468 -#: ../../godmode/massive/massive_delete_modules.php:518 -#: ../../godmode/massive/massive_edit_agents.php:328 -#: ../../godmode/massive/massive_edit_modules.php:320 -#: ../../godmode/massive/massive_edit_modules.php:358 -#: ../../godmode/reporting/create_container.php:507 -#: ../../godmode/reporting/visual_console_builder.wizard.php:372 -#: ../../godmode/servers/manage_recontask.php:344 -#: ../../godmode/servers/manage_recontask_form.php:303 -#: ../../godmode/users/configure_user.php:810 -#: ../../include/ajax/visual_console_builder.ajax.php:919 -#: ../../include/functions_visual_map_editor.php:404 -#: ../../include/functions_visual_map_editor.php:915 -#: ../../include/functions_visual_map_editor.php:956 -#: ../../include/functions_html.php:958 ../../include/functions_html.php:959 -#: ../../include/functions_html.php:960 ../../include/functions_html.php:961 -#: ../../include/functions_html.php:962 ../../include/functions_html.php:965 -#: ../../include/functions_html.php:966 ../../include/functions_html.php:967 -#: ../../include/functions_html.php:968 ../../include/functions_html.php:969 -#: ../../operation/events/events_list.php:509 -#: ../../enterprise/dashboard/widgets/events_list.php:31 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:156 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:159 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:207 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:135 -#: ../../enterprise/godmode/setup/setup_acl.php:414 -#: ../../enterprise/godmode/setup/setup_auth.php:65 -#: ../../enterprise/godmode/setup/setup_auth.php:190 -#: ../../enterprise/godmode/setup/setup_auth.php:224 -#: ../../enterprise/godmode/setup/setup_auth.php:693 -#: ../../enterprise/godmode/setup/setup_auth.php:785 -#: ../../enterprise/operation/services/services.list.php:176 -#: ../../enterprise/operation/services/services.list.php:193 -#: ../../enterprise/operation/services/services.table_services.php:145 -#: ../../enterprise/operation/services/services.table_services.php:162 -msgid "Any" -msgstr "任意" - -#: ../../godmode/agentes/agent_manager.php:260 -#: ../../godmode/agentes/module_manager.php:563 -#: ../../godmode/agentes/module_manager_editor_common.php:382 -#: ../../godmode/agentes/module_manager_editor_common.php:408 -#: ../../godmode/massive/massive_edit_agents.php:356 -#: ../../godmode/massive/massive_edit_modules.php:484 -#: ../../godmode/modules/manage_network_components_form_common.php:104 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:259 -#: ../../include/functions_treeview.php:85 -#: ../../include/functions_treeview.php:587 -#: ../../include/functions_reporting_html.php:2119 -#: ../../mobile/operation/modules.php:540 -#: ../../mobile/operation/modules.php:543 -#: ../../mobile/operation/modules.php:544 -#: ../../mobile/operation/modules.php:755 -#: ../../operation/agentes/estado_agente.php:557 -#: ../../operation/agentes/estado_generalagente.php:229 -#: ../../operation/agentes/status_monitor.php:974 -#: ../../operation/netflow/nf_live_view.php:245 -#: ../../operation/search_agents.php:46 ../../operation/search_agents.php:56 -#: ../../operation/search_modules.php:50 -#: ../../operation/servers/recon_view.php:95 -#: ../../enterprise/extensions/ipam/ipam_list.php:162 -#: ../../enterprise/extensions/ipam/ipam_network.php:125 -#: ../../enterprise/extensions/vmware/functions.php:571 -#: ../../enterprise/godmode/agentes/inventory_manager.php:174 -#: ../../enterprise/godmode/agentes/inventory_manager.php:236 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:171 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:197 -#: ../../enterprise/godmode/modules/configure_local_component.php:223 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:188 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:244 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:80 -#: ../../enterprise/include/functions_reporting_pdf.php:2448 -#: ../../enterprise/meta/agentsearch.php:104 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1108 -#: ../../enterprise/meta/include/functions_wizard_meta.php:780 -#: ../../enterprise/meta/include/functions_wizard_meta.php:898 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1062 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1360 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1441 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1574 -#: ../../enterprise/operation/agentes/tag_view.php:466 -#: ../../enterprise/operation/agentes/tag_view.php:534 -msgid "Interval" -msgstr "間隔" - -#: ../../godmode/agentes/agent_manager.php:266 -#: ../../godmode/agentes/modificar_agente.php:468 -#: ../../godmode/agentes/planned_downtime.editor.php:781 -#: ../../godmode/massive/massive_edit_agents.php:360 -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:298 -#: ../../include/functions_events.php:2133 -#: ../../include/functions_reporting_html.php:2083 -#: ../../mobile/operation/agents.php:73 ../../mobile/operation/agents.php:339 -#: ../../operation/agentes/estado_agente.php:552 -#: ../../operation/agentes/estado_generalagente.php:156 -#: ../../operation/gis_maps/ajax.php:276 ../../operation/search_agents.php:45 -#: ../../operation/search_agents.php:53 ../../operation/tree.php:55 -#: ../../operation/tree.php:94 -#: ../../enterprise/dashboard/widgets/tree_view.php:40 -#: ../../enterprise/extensions/ipam/ipam_network.php:538 -#: ../../enterprise/godmode/modules/configure_local_component.php:168 -#: ../../enterprise/godmode/modules/local_components.php:446 -#: ../../enterprise/godmode/modules/local_components.php:460 -#: ../../enterprise/godmode/modules/local_components.php:482 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:156 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:82 -#: ../../enterprise/meta/agentsearch.php:103 -#: ../../enterprise/operation/agentes/tag_view.php:465 -msgid "OS" -msgstr "OS" - -#: ../../godmode/agentes/agent_manager.php:278 -#: ../../godmode/agentes/module_manager.php:557 -#: ../../godmode/massive/massive_edit_agents.php:371 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1287 -#: ../../include/functions_events.php:3614 -#: ../../operation/events/events.build_table.php:139 -#: ../../operation/events/events_list.php:516 -#: ../../operation/servers/recon_view.php:176 -#: ../../enterprise/extensions/csv_import/main.php:95 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1471 -#: ../../enterprise/include/functions_events.php:204 -#: ../../enterprise/meta/advanced/policymanager.queue.php:255 -#: ../../enterprise/meta/agentsearch.php:101 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1081 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1371 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1494 -#: ../../enterprise/meta/include/functions_wizard_meta.php:133 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1624 -msgid "Server" -msgstr "サーバ" - -#: ../../godmode/agentes/agent_manager.php:286 -#: ../../godmode/agentes/agent_manager.php:420 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:697 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:796 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:958 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:974 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:990 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1006 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1022 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1037 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1043 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:415 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:513 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:289 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:349 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:480 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:496 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:512 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:528 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:543 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:549 -#: ../../godmode/agentes/module_manager_editor_common.php:432 -#: ../../godmode/agentes/module_manager_editor_common.php:631 -#: ../../godmode/agentes/module_manager_editor_common.php:791 -#: ../../godmode/agentes/module_manager_editor_common.php:797 -#: ../../godmode/agentes/module_manager_editor_common.php:806 -#: ../../godmode/agentes/module_manager_editor_common.php:812 -#: ../../godmode/agentes/module_manager_editor_plugin.php:52 -#: ../../godmode/alerts/alert_list.list.php:611 -#: ../../godmode/alerts/configure_alert_action.php:131 -#: ../../godmode/alerts/configure_alert_template.php:588 -#: ../../godmode/events/custom_events.php:213 -#: ../../godmode/events/custom_events.php:224 -#: ../../godmode/events/event_edit_filter.php:422 -#: ../../godmode/gis_maps/configure_gis_map.php:414 -#: ../../godmode/groups/configure_group.php:197 -#: ../../godmode/massive/massive_add_action_alerts.php:288 -#: ../../godmode/massive/massive_add_alerts.php:193 -#: ../../godmode/massive/massive_add_tags.php:169 -#: ../../godmode/massive/massive_delete_alerts.php:243 -#: ../../godmode/massive/massive_delete_modules.php:511 -#: ../../godmode/massive/massive_delete_modules.php:591 -#: ../../godmode/massive/massive_delete_modules.php:643 -#: ../../godmode/massive/massive_delete_modules.php:644 -#: ../../godmode/massive/massive_delete_modules.php:645 -#: ../../godmode/massive/massive_delete_modules.php:646 -#: ../../godmode/massive/massive_delete_modules.php:712 -#: ../../godmode/massive/massive_delete_tags.php:226 -#: ../../godmode/massive/massive_delete_tags.php:253 -#: ../../godmode/massive/massive_delete_tags.php:289 -#: ../../godmode/massive/massive_edit_agents.php:370 -#: ../../godmode/massive/massive_edit_modules.php:335 -#: ../../godmode/massive/massive_edit_modules.php:564 -#: ../../godmode/massive/massive_edit_modules.php:596 -#: ../../godmode/massive/massive_edit_modules.php:673 -#: ../../godmode/massive/massive_edit_modules.php:704 -#: ../../godmode/massive/massive_edit_modules.php:766 -#: ../../godmode/massive/massive_edit_modules.php:932 -#: ../../godmode/massive/massive_edit_modules.php:933 -#: ../../godmode/massive/massive_edit_modules.php:934 -#: ../../godmode/massive/massive_edit_modules.php:935 -#: ../../godmode/massive/massive_edit_modules.php:1160 -#: ../../godmode/massive/massive_edit_plugins.php:284 -#: ../../godmode/modules/manage_nc_groups_form.php:72 -#: ../../godmode/modules/manage_network_components_form.php:455 -#: ../../godmode/modules/manage_network_components_form.php:461 -#: ../../godmode/modules/manage_network_components_form.php:470 -#: ../../godmode/modules/manage_network_components_form.php:476 -#: ../../godmode/modules/manage_network_components_form_common.php:191 -#: ../../godmode/modules/manage_network_components_form_plugin.php:24 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../godmode/reporting/create_container.php:432 -#: ../../godmode/reporting/graph_builder.graph_editor.php:301 -#: ../../godmode/reporting/graph_builder.graph_editor.php:360 -#: ../../godmode/reporting/graph_builder.graph_editor.php:380 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1128 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1156 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1197 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1207 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1232 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1568 -#: ../../godmode/reporting/visual_console_builder.elements.php:293 -#: ../../godmode/reporting/visual_console_builder.elements.php:434 -#: ../../godmode/reporting/visual_console_builder.wizard.php:199 -#: ../../godmode/reporting/visual_console_builder.wizard.php:296 -#: ../../godmode/reporting/visual_console_builder.wizard.php:304 -#: ../../godmode/reporting/visual_console_builder.wizard.php:326 -#: ../../godmode/reporting/visual_console_builder.wizard.php:335 -#: ../../godmode/reporting/visual_console_builder.wizard.php:374 -#: ../../godmode/reporting/visual_console_builder.wizard.php:571 -#: ../../godmode/reporting/visual_console_builder.wizard.php:581 -#: ../../godmode/reporting/visual_console_builder.wizard.php:613 -#: ../../godmode/servers/manage_recontask_form.php:277 -#: ../../godmode/setup/os.builder.php:40 -#: ../../godmode/setup/setup_visuals.php:557 -#: ../../godmode/snmpconsole/snmp_alert.php:27 -#: ../../godmode/snmpconsole/snmp_alert.php:1008 -#: ../../godmode/users/configure_user.php:573 -#: ../../godmode/users/configure_user.php:657 -#: ../../godmode/users/configure_user.php:662 -#: ../../godmode/users/configure_user.php:796 -#: ../../godmode/users/configure_user.php:800 -#: ../../godmode/users/configure_user.php:805 -#: ../../include/ajax/alert_list.ajax.php:171 -#: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/functions.php:909 -#: ../../include/functions_pandora_networkmap.php:424 -#: ../../include/functions_pandora_networkmap.php:997 -#: ../../include/functions_pandora_networkmap.php:1718 -#: ../../include/functions_pandora_networkmap.php:1721 -#: ../../include/functions_pandora_networkmap.php:1772 -#: ../../include/functions_pandora_networkmap.php:1776 -#: ../../include/functions_pandora_networkmap.php:1828 -#: ../../include/functions_pandora_networkmap.php:1833 -#: ../../include/functions_events.php:1690 -#: ../../include/functions_events.php:1697 -#: ../../include/functions_visual_map_editor.php:326 -#: ../../include/functions_visual_map_editor.php:467 -#: ../../include/functions_visual_map_editor.php:692 -#: ../../include/functions_html.php:317 ../../include/functions_html.php:495 -#: ../../mobile/operation/events.php:587 -#: ../../operation/agentes/pandora_networkmap.editor.php:256 -#: ../../operation/agentes/ver_agente.php:888 -#: ../../operation/agentes/ver_agente.php:931 -#: ../../operation/agentes/ver_agente.php:941 -#: ../../operation/events/events_list.php:351 -#: ../../operation/events/events_list.php:877 -#: ../../operation/netflow/nf_live_view.php:399 -#: ../../operation/snmpconsole/snmp_view.php:490 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:926 -#: ../../operation/users/user_edit.php:326 -#: ../../operation/users/user_edit.php:350 -#: ../../operation/users/user_edit.php:395 -#: ../../operation/users/user_edit.php:409 -#: ../../operation/users/user_edit.php:565 -#: ../../operation/users/user_edit.php:572 -#: ../../operation/users/user_edit.php:581 -#: ../../operation/users/user_edit.php:588 -#: ../../enterprise/dashboard/widgets/service_map.php:39 -#: ../../enterprise/dashboard/widgets/top_n.php:398 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:69 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:72 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:69 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:72 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:77 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:80 -#: ../../enterprise/extensions/ipam/ipam_network.php:635 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:428 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:559 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:655 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:106 -#: ../../enterprise/godmode/alerts/alert_events.php:468 -#: ../../enterprise/godmode/alerts/alert_events_list.php:595 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:98 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:117 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:129 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:97 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:116 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:128 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:27 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:174 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:197 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:306 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:384 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:459 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:460 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:461 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:462 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:511 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:90 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:135 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:225 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:89 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:133 -#: ../../enterprise/godmode/modules/configure_local_component.php:367 -#: ../../enterprise/godmode/modules/configure_local_component.php:507 -#: ../../enterprise/godmode/modules/configure_local_component.php:513 -#: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/modules/configure_local_component.php:527 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:686 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:942 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:958 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:974 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:990 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1006 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1021 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1027 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:404 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:499 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:288 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:348 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:479 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:495 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:511 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:527 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:542 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:548 -#: ../../enterprise/godmode/policies/policy_agents.php:339 -#: ../../enterprise/godmode/policies/policy_agents.php:1051 -#: ../../enterprise/godmode/policies/policy_alerts.php:459 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:273 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:141 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:347 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:366 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:377 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:392 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:424 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:350 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:367 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:383 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:399 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:423 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:439 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:514 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:523 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:542 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:666 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:730 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:745 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:755 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:769 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1856 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1964 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:253 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:700 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:721 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:736 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:746 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:756 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:760 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:787 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:76 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:607 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:628 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:637 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:999 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1027 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1046 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1073 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:274 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:282 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:292 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:352 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:415 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:456 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:500 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:520 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:158 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:196 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:208 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:218 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:863 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:926 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:941 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:951 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:975 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:990 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1000 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1015 -#: ../../enterprise/godmode/servers/manage_export_form.php:73 -#: ../../enterprise/godmode/setup/setup.php:384 -#: ../../enterprise/godmode/setup/setup.php:390 -#: ../../enterprise/godmode/setup/setup.php:398 -#: ../../enterprise/godmode/setup/setup.php:404 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:645 -#: ../../enterprise/meta/advanced/metasetup.setup.php:287 -#: ../../enterprise/meta/advanced/metasetup.setup.php:293 -#: ../../enterprise/meta/advanced/metasetup.setup.php:303 -#: ../../enterprise/meta/advanced/metasetup.setup.php:309 -#: ../../enterprise/meta/advanced/metasetup.visual.php:133 -#: ../../enterprise/meta/event/custom_events.php:211 -#: ../../enterprise/meta/event/custom_events.php:222 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:232 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:322 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:383 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:491 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:564 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:135 -#: ../../enterprise/operation/agentes/ver_agente.php:36 -msgid "None" -msgstr "なし" - -#: ../../godmode/agentes/agent_manager.php:307 -#: ../../godmode/agentes/module_manager_editor_common.php:360 -#: ../../godmode/groups/configure_group.php:178 -#: ../../godmode/massive/massive_edit_agents.php:407 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:158 +#: ../../godmode/agentes/module_manager_editor_common.php:708 +#: ../../godmode/groups/configure_group.php:192 +#: ../../godmode/massive/massive_edit_agents.php:629 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:338 msgid "Custom ID" msgstr "カスタムID" -#: ../../godmode/agentes/agent_manager.php:310 -#: ../../godmode/groups/configure_group.php:134 -#: ../../godmode/massive/massive_edit_agents.php:333 -#: ../../godmode/modules/manage_nc_groups_form.php:70 -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -#: ../../include/functions_visual_map_editor.php:689 -#: ../../operation/agentes/estado_generalagente.php:307 -#: ../../operation/agentes/ver_agente.php:929 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1277 -msgid "Parent" -msgstr "親" +#: ../../godmode/agentes/agent_manager.php:208 +#: ../../godmode/agentes/modificar_agente.php:487 +#: ../../include/functions_events.php:191 +#: ../../include/functions_events.php:235 +#: ../../include/functions_events.php:2393 +#: ../../include/functions_events.php:6013 +#: ../../include/functions_events.php.orig:189 +#: ../../include/functions_events.php.orig:233 +#: ../../include/functions_events.php.orig:2299 +#: ../../include/functions_events.php.orig:5917 +#: ../../include/functions_treeview.php:585 +#: ../../include/functions_reporting_html.php:2609 +#: ../../mobile/operation/modules.php:570 +#: ../../mobile/operation/modules.php:819 +#: ../../operation/events/events.build_table.php:182 +#: ../../operation/events/events.php:1610 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1735 +#: ../../enterprise/meta/include/functions_events_meta.php:66 +msgid "Agent name" +msgstr "エージェント名" -#: ../../godmode/agentes/agent_manager.php:324 -#: ../../godmode/massive/massive_edit_agents.php:346 -msgid "Cascade protection" -msgstr "関連障害検知抑制" +#: ../../godmode/agentes/agent_manager.php:208 +msgid "The agent's name must be the same as the one defined at the console" +msgstr "ここで指定するエージェント名は、すでに定義済のものである必要があります。" -#: ../../godmode/agentes/agent_manager.php:337 +#: ../../godmode/agentes/agent_manager.php:221 +#: ../../operation/agentes/estado_agente.php:188 ../../operation/menu.php:52 +msgid "Agent detail" +msgstr "エージェント詳細" + +#: ../../godmode/agentes/agent_manager.php:230 +msgid "Delete agent" +msgstr "エージェント削除" + +#: ../../godmode/agentes/agent_manager.php:245 +#: ../../enterprise/godmode/policies/policy_agents.php:782 +msgid "This agent can be remotely configured" +msgstr "このエージェントはリモートから設定可能です。" + +#: ../../godmode/agentes/agent_manager.php:249 +msgid "You can remotely edit this agent configuration" +msgstr "このエージェントはリモートから設定可能です。" + +#: ../../godmode/agentes/agent_manager.php:259 +msgid "QR Code Agent view" +msgstr "エージェント表示 QR コード" + +#: ../../godmode/agentes/agent_manager.php:276 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:210 +#: ../../enterprise/meta/include/functions_wizard_meta.php:188 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1799 +msgid "Alias" +msgstr "別名" + +#: ../../godmode/agentes/agent_manager.php:276 +msgid "Characters /,\\,|,%,#,&,$ will be ignored" +msgstr "これらの文字 /,\\,|,%,#,&,$ は無視されます" + +#: ../../godmode/agentes/agent_manager.php:280 +msgid "Use alias as name" +msgstr "名前に別名を利用" + +#: ../../godmode/agentes/agent_manager.php:285 +#: ../../godmode/servers/modificar_server.php:60 +#: ../../include/functions_events.php:4062 +#: ../../include/functions_events.php.orig:3968 +#: ../../include/functions_treeview.php:605 +#: ../../include/functions_reporting_html.php:3035 +#: ../../include/functions_reporting_html.php:3108 +#: ../../operation/gis_maps/ajax.php:290 +#: ../../enterprise/meta/include/functions_wizard_meta.php:209 +#: ../../enterprise/meta/include/functions_wizard_meta.php:213 +#: ../../enterprise/meta/include/functions_wizard_meta.php:479 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1466 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1811 +msgid "IP Address" +msgstr "IP アドレス" + +#: ../../godmode/agentes/agent_manager.php:288 +#: ../../godmode/setup/setup_general.php:349 +msgid "Unique IP" +msgstr "ユニーク IP" + +#: ../../godmode/agentes/agent_manager.php:288 +#: ../../godmode/setup/setup_general.php:349 +msgid "" +"Set the primary IP address as the unique IP, preventing the same primary IP " +"address from being used in more than one agent" +msgstr "プライマリ IP アドレスをユニーク IP として設定し、同じプライマリ IP アドレスが複数のエージェントで使用されないようにします" + +#: ../../godmode/agentes/agent_manager.php:297 +#: ../../godmode/snmpconsole/snmp_alert.php:1438 +#: ../../operation/events/events.php:1517 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:294 +#: ../../enterprise/include/class/Omnishell.class.php:520 +msgid "Delete selected" +msgstr "選択範囲を削除します" + +#: ../../godmode/agentes/agent_manager.php:315 +#: ../../godmode/agentes/agent_manager.php:526 +#: ../../godmode/agentes/planned_downtime.editor.php:944 +#: ../../godmode/agentes/planned_downtime.list.php:160 +#: ../../godmode/events/event_edit_filter.php:397 +#: ../../godmode/massive/massive_add_action_alerts.php:175 +#: ../../godmode/massive/massive_copy_modules.php:162 +#: ../../godmode/massive/massive_delete_modules.php:383 +#: ../../godmode/massive/massive_delete_modules.php:497 +#: ../../godmode/massive/massive_edit_agents.php:517 +#: ../../godmode/massive/massive_edit_agents.php:727 +#: ../../godmode/massive/massive_edit_modules.php:384 +#: ../../godmode/massive/massive_edit_modules.php:469 +#: ../../godmode/reporting/create_container.php:534 +#: ../../godmode/reporting/visual_console_builder.wizard.php:556 +#: ../../include/ajax/visual_console_builder.ajax.php:1190 +#: ../../include/functions_html.php:1235 ../../include/functions_html.php:1236 +#: ../../include/functions_html.php:1237 ../../include/functions_html.php:1238 +#: ../../include/functions_html.php:1239 ../../include/functions_html.php:1241 +#: ../../include/functions_html.php:1242 ../../include/functions_html.php:1243 +#: ../../include/functions_html.php:1244 ../../include/functions_html.php:1245 +#: ../../include/functions_visual_map_editor.php:464 +#: ../../include/functions_visual_map_editor.php:1362 +#: ../../include/functions_visual_map_editor.php:1456 +#: ../../include/functions_profile.php:315 +#: ../../operation/events/events.php:1085 +#: ../../operation/events/events.php:2288 +#: ../../operation/events/events_list.php:789 +#: ../../enterprise/dashboard/widgets/events_list.php:32 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:168 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:173 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:182 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:240 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:152 +#: ../../enterprise/godmode/setup/setup_acl.php:475 +#: ../../enterprise/godmode/setup/setup_auth.php:66 +#: ../../enterprise/godmode/setup/setup_auth.php:264 +#: ../../enterprise/godmode/setup/setup_auth.php:311 +#: ../../enterprise/godmode/setup/setup_auth.php:852 +#: ../../enterprise/godmode/setup/setup_auth.php:1015 +#: ../../enterprise/include/class/AgentRepository.class.php:633 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1441 +#: ../../enterprise/include/class/DeploymentCenter.class.php:738 +#: ../../enterprise/include/class/Omnishell.class.php:361 +#: ../../enterprise/operation/services/services.list.php:201 +#: ../../enterprise/operation/services/services.list.php:232 +#: ../../enterprise/operation/services/services.table_services.php:180 +#: ../../enterprise/operation/services/services.table_services.php:211 +msgid "Any" +msgstr "任意" + +#: ../../godmode/agentes/agent_manager.php:322 +msgid "Primary group" +msgstr "プライマリグループ" + +#: ../../godmode/agentes/agent_manager.php:336 +#: ../../godmode/agentes/module_manager.php:648 +#: ../../godmode/agentes/module_manager_editor_common.php:748 +#: ../../godmode/agentes/module_manager_editor_common.php:771 +#: ../../godmode/agentes/status_monitor_custom_fields.php:93 +#: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/massive/massive_edit_agents.php:553 +#: ../../godmode/massive/massive_edit_modules.php:682 +#: ../../godmode/modules/manage_network_components_form_common.php:154 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:397 +#: ../../godmode/wizards/HostDevices.class.php:694 +#: ../../include/class/CustomNetScan.class.php:518 +#: ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:611 +#: ../../include/functions_reporting_html.php:2665 +#: ../../mobile/operation/modules.php:630 +#: ../../mobile/operation/modules.php:632 +#: ../../mobile/operation/modules.php:821 +#: ../../operation/agentes/estado_agente.php:707 +#: ../../operation/agentes/estado_generalagente.php:293 +#: ../../operation/agentes/status_monitor.php:1133 +#: ../../operation/netflow/nf_live_view.php:262 +#: ../../operation/search_agents.php:43 ../../operation/search_agents.php:48 +#: ../../operation/search_modules.php:34 +#: ../../operation/servers/recon_view.php:97 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1204 +#: ../../enterprise/extensions/ipam/ipam_list.php:138 +#: ../../enterprise/godmode/agentes/inventory_manager.php:220 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:361 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:403 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:533 +#: ../../enterprise/godmode/modules/configure_local_component.php:283 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:255 +#: ../../enterprise/godmode/servers/manage_export.php:139 +#: ../../enterprise/godmode/servers/manage_export_form.php:89 +#: ../../enterprise/include/class/Aws.cloud.php:464 +#: ../../enterprise/include/class/Aws.cloud.php:1203 +#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/MySQL.app.php:556 +#: ../../enterprise/include/class/Oracle.app.php:537 +#: ../../enterprise/include/class/SAP.app.php:493 +#: ../../enterprise/include/class/VMware.app.php:560 +#: ../../enterprise/include/functions_ui.php:84 +#: ../../enterprise/meta/agentsearch.php:115 +#: ../../enterprise/meta/include/functions_wizard_meta.php:915 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1034 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1202 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1521 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1605 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1741 +#: ../../enterprise/operation/agentes/tag_view.php:576 +#: ../../enterprise/operation/agentes/tag_view.php:653 +msgid "Interval" +msgstr "間隔" + +#: ../../godmode/agentes/agent_manager.php:359 +#: ../../godmode/agentes/modificar_agente.php:489 +#: ../../godmode/agentes/planned_downtime.editor.php:1037 +#: ../../godmode/massive/massive_edit_agents.php:557 +#: ../../include/class/Diagnostics.class.php:739 +#: ../../include/functions_events.php:4067 +#: ../../include/functions_events.php.orig:3973 +#: ../../include/functions_reporting_html.php:2611 +#: ../../mobile/operation/agents.php:78 ../../mobile/operation/agents.php:392 +#: ../../operation/agentes/estado_agente.php:704 +#: ../../operation/agentes/estado_generalagente.php:188 +#: ../../operation/gis_maps/ajax.php:297 ../../operation/search_agents.php:42 +#: ../../operation/search_agents.php:47 ../../operation/tree.php:56 +#: ../../operation/tree.php:110 +#: ../../enterprise/dashboard/widgets/tree_view.php:43 +#: ../../enterprise/extensions/ipam/ipam_network.php:326 +#: ../../enterprise/godmode/modules/configure_local_component.php:171 +#: ../../enterprise/godmode/modules/local_components.php:499 +#: ../../enterprise/godmode/modules/local_components.php:524 +#: ../../enterprise/godmode/modules/local_components.php:559 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:371 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:209 +#: ../../enterprise/include/class/AgentRepository.class.php:336 +#: ../../enterprise/include/class/AgentRepository.class.php:613 +#: ../../enterprise/include/class/AgentRepository.class.php:656 +#: ../../enterprise/include/class/DeploymentCenter.class.php:715 +#: ../../enterprise/include/class/DeploymentCenter.class.php:773 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1244 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 +#: ../../enterprise/meta/agentsearch.php:114 +#: ../../enterprise/operation/agentes/tag_view.php:575 +msgid "OS" +msgstr "OS" + +#: ../../godmode/agentes/agent_manager.php:381 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../godmode/massive/massive_edit_agents.php:581 +#: ../../godmode/reporting/reporting_builder.item_editor.php:912 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:692 +#: ../../include/functions_events.php:5988 +#: ../../include/functions_events.php.orig:5892 +#: ../../operation/events/events.build_table.php:156 +#: ../../operation/events/events.php:1044 +#: ../../operation/events/events_list.php:807 +#: ../../operation/servers/recon_view.php:174 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1770 +#: ../../enterprise/include/class/CSVImportAgents.class.php:152 +#: ../../enterprise/include/class/SAPView.class.php:209 +#: ../../enterprise/include/functions_events.php:283 +#: ../../enterprise/meta/advanced/policymanager.queue.php:256 +#: ../../enterprise/meta/agentsearch.php:112 +#: ../../enterprise/meta/agentsearch.php:296 +#: ../../enterprise/meta/include/functions_wizard_meta.php:173 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1794 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:97 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:691 +msgid "Server" +msgstr "サーバ" + +#: ../../godmode/agentes/agent_manager.php:395 +#: ../../godmode/agentes/agent_manager.php:743 +#: ../../godmode/agentes/agent_manager.php:915 +#: ../../godmode/agentes/agent_manager.php:1190 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:719 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:842 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1075 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1091 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1107 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1123 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1139 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1154 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1160 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:456 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:579 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:103 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:152 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:197 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:430 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:534 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:790 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:806 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:822 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:838 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:853 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:859 +#: ../../godmode/agentes/module_manager_editor_common.php:803 +#: ../../godmode/agentes/module_manager_editor_common.php:1101 +#: ../../godmode/agentes/module_manager_editor_common.php:1303 +#: ../../godmode/agentes/module_manager_editor_common.php:1309 +#: ../../godmode/agentes/module_manager_editor_common.php:1318 +#: ../../godmode/agentes/module_manager_editor_common.php:1324 +#: ../../godmode/agentes/module_manager_editor_network.php:458 +#: ../../godmode/agentes/module_manager_editor_plugin.php:55 +#: ../../godmode/agentes/status_monitor_custom_fields.php:216 +#: ../../godmode/agentes/status_monitor_custom_fields.php:264 +#: ../../godmode/alerts/alert_list.list.php:705 +#: ../../godmode/alerts/configure_alert_action.php:164 +#: ../../godmode/alerts/configure_alert_template.php:689 +#: ../../godmode/alerts/configure_alert_template.php:709 +#: ../../godmode/events/custom_events.php:178 +#: ../../godmode/events/custom_events.php:226 +#: ../../godmode/events/event_edit_filter.php:643 +#: ../../godmode/gis_maps/configure_gis_map.php:511 +#: ../../godmode/groups/configure_group.php:211 +#: ../../godmode/massive/massive_add_action_alerts.php:319 +#: ../../godmode/massive/massive_add_alerts.php:275 +#: ../../godmode/massive/massive_copy_modules.php:363 +#: ../../godmode/massive/massive_copy_modules.php:496 +#: ../../godmode/massive/massive_delete_alerts.php:324 +#: ../../godmode/massive/massive_delete_modules.php:478 +#: ../../godmode/massive/massive_delete_modules.php:571 +#: ../../godmode/massive/massive_delete_modules.php:618 +#: ../../godmode/massive/massive_delete_modules.php:665 +#: ../../godmode/massive/massive_delete_modules.php:673 +#: ../../godmode/massive/massive_delete_modules.php:674 +#: ../../godmode/massive/massive_delete_modules.php:675 +#: ../../godmode/massive/massive_delete_modules.php:676 +#: ../../godmode/massive/massive_delete_modules.php:742 +#: ../../godmode/massive/massive_delete_modules.php:772 +#: ../../godmode/massive/massive_edit_agents.php:578 +#: ../../godmode/massive/massive_edit_modules.php:430 +#: ../../godmode/massive/massive_edit_modules.php:847 +#: ../../godmode/massive/massive_edit_modules.php:981 +#: ../../godmode/massive/massive_edit_modules.php:1097 +#: ../../godmode/massive/massive_edit_modules.php:1132 +#: ../../godmode/massive/massive_edit_modules.php:1181 +#: ../../godmode/massive/massive_edit_modules.php:1243 +#: ../../godmode/massive/massive_edit_modules.php:1314 +#: ../../godmode/massive/massive_edit_modules.php:1423 +#: ../../godmode/massive/massive_edit_modules.php:1424 +#: ../../godmode/massive/massive_edit_modules.php:1425 +#: ../../godmode/massive/massive_edit_modules.php:1426 +#: ../../godmode/massive/massive_edit_modules.php:1659 +#: ../../godmode/massive/massive_edit_modules.php:1719 +#: ../../godmode/massive/massive_edit_plugins.php:316 +#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../godmode/modules/manage_network_components_form.php:572 +#: ../../godmode/modules/manage_network_components_form.php:578 +#: ../../godmode/modules/manage_network_components_form.php:587 +#: ../../godmode/modules/manage_network_components_form.php:593 +#: ../../godmode/modules/manage_network_components_form_common.php:330 +#: ../../godmode/modules/manage_network_components_form_network.php:235 +#: ../../godmode/modules/manage_network_components_form_plugin.php:41 +#: ../../godmode/reporting/create_container.php:450 +#: ../../godmode/reporting/graph_builder.graph_editor.php:315 +#: ../../godmode/reporting/graph_builder.graph_editor.php:408 +#: ../../godmode/reporting/graph_builder.graph_editor.php:428 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1596 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1659 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1753 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1785 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2556 +#: ../../godmode/reporting/visual_console_builder.elements.php:390 +#: ../../godmode/reporting/visual_console_builder.elements.php:537 +#: ../../godmode/reporting/visual_console_builder.elements.php:547 +#: ../../godmode/reporting/visual_console_builder.wizard.php:286 +#: ../../godmode/reporting/visual_console_builder.wizard.php:458 +#: ../../godmode/reporting/visual_console_builder.wizard.php:471 +#: ../../godmode/reporting/visual_console_builder.wizard.php:505 +#: ../../godmode/reporting/visual_console_builder.wizard.php:518 +#: ../../godmode/reporting/visual_console_builder.wizard.php:557 +#: ../../godmode/reporting/visual_console_builder.wizard.php:752 +#: ../../godmode/reporting/visual_console_builder.wizard.php:762 +#: ../../godmode/reporting/visual_console_builder.wizard.php:794 +#: ../../godmode/setup/os.builder.php:38 +#: ../../godmode/setup/setup_visuals.php:398 +#: ../../godmode/setup/setup_visuals.php:418 +#: ../../godmode/setup/setup_visuals.php:871 +#: ../../godmode/snmpconsole/snmp_alert.php:25 +#: ../../godmode/snmpconsole/snmp_alert.php:1117 +#: ../../godmode/users/configure_user.php:808 +#: ../../godmode/users/configure_user.php:821 +#: ../../godmode/users/configure_user.php:927 +#: ../../godmode/users/configure_user.php:933 +#: ../../godmode/wizards/HostDevices.class.php:895 +#: ../../include/ajax/alert_list.ajax.php:227 +#: ../../include/ajax/custom_fields.php:658 ../../include/ajax/events.php:393 +#: ../../include/ajax/planned_downtime.ajax.php:82 +#: ../../include/class/NetworkMap.class.php:2805 +#: ../../include/class/NetworkMap.class.php:3049 +#: ../../include/class/NetworkMap.class.php:3058 +#: ../../include/class/NetworkMap.class.php:3116 +#: ../../include/class/NetworkMap.class.php:3126 +#: ../../include/class/NetworkMap.class.php:3211 +#: ../../include/class/NetworkMap.class.php:3217 +#: ../../include/functions.php:1071 ../../include/functions_networkmap.php:1483 +#: ../../include/functions_events.php:3371 +#: ../../include/functions_events.php:3387 +#: ../../include/functions_events.php.orig:3277 +#: ../../include/functions_events.php.orig:3293 +#: ../../include/functions_html.php:366 ../../include/functions_html.php:610 +#: ../../include/functions_html.php:3179 +#: ../../include/functions_integriaims.php:146 +#: ../../include/functions_visual_map_editor.php:370 +#: ../../include/functions_visual_map_editor.php:372 +#: ../../include/functions_visual_map_editor.php:554 +#: ../../include/functions_visual_map_editor.php:867 +#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:982 +#: ../../include/functions_profile.php:275 +#: ../../include/functions_profile.php:292 +#: ../../include/functions_profile.php:307 +#: ../../mobile/operation/events.php:638 +#: ../../operation/agentes/pandora_networkmap.editor.php:319 +#: ../../operation/agentes/ver_agente.php:986 +#: ../../operation/agentes/ver_agente.php:1029 +#: ../../operation/agentes/ver_agente.php:1039 +#: ../../operation/events/events.php:1588 +#: ../../operation/events/events_list.php:518 +#: ../../operation/events/events_list.php:1269 +#: ../../operation/gis_maps/render_view.php:150 +#: ../../operation/incidents/list_integriaims_incidents.php:271 +#: ../../operation/incidents/list_integriaims_incidents.php:275 +#: ../../operation/snmpconsole/snmp_view.php:605 +#: ../../operation/snmpconsole/snmp_view.php:1030 +#: ../../operation/snmpconsole/snmp_view.php:1041 +#: ../../operation/users/user_edit.php:387 +#: ../../operation/users/user_edit.php:423 +#: ../../operation/users/user_edit.php:480 +#: ../../operation/users/user_edit.php:494 +#: ../../operation/users/user_edit.php:838 +#: ../../operation/users/user_edit.php:845 +#: ../../operation/users/user_edit.php:854 +#: ../../operation/users/user_edit.php:861 +#: ../../enterprise/dashboard/widgets/wux_transaction.php:72 +#: ../../enterprise/dashboard/widgets/wux_transaction.php:75 +#: ../../enterprise/dashboard/widgets/service_map.php:40 +#: ../../enterprise/dashboard/widgets/top_n.php:466 +#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:79 +#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:82 +#: ../../enterprise/extensions/ipam/ipam_network.php:518 +#: ../../enterprise/extensions/visual_console_manager.php:372 +#: ../../enterprise/extensions/visual_console_manager.php:394 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:834 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:433 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:564 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:660 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:163 +#: ../../enterprise/godmode/alerts/alert_events.php:562 +#: ../../enterprise/godmode/alerts/alert_events_list.php:686 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:93 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:105 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:126 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:188 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:227 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:367 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:519 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:520 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:521 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:522 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:571 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:357 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:705 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:820 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:934 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:969 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1015 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:107 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:191 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:250 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:103 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:181 +#: ../../enterprise/godmode/modules/configure_local_component.php:515 +#: ../../enterprise/godmode/modules/configure_local_component.php:672 +#: ../../enterprise/godmode/modules/configure_local_component.php:678 +#: ../../enterprise/godmode/modules/configure_local_component.php:686 +#: ../../enterprise/godmode/modules/configure_local_component.php:692 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:714 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:820 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1050 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1066 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1082 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1098 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1114 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1129 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1135 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:425 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:531 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:115 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:173 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:231 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:467 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:580 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:847 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:863 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:879 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:895 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:910 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:916 +#: ../../enterprise/godmode/policies/policy_agents.php:406 +#: ../../enterprise/godmode/policies/policy_agents.php:1362 +#: ../../enterprise/godmode/policies/policy_alerts.php:518 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:39 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1520 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1591 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1606 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1616 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1625 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1640 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1650 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:145 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:350 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:369 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:380 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:513 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:530 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:546 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:562 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:586 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:602 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:644 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:677 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:686 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:705 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:931 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1003 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1018 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1028 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1043 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1065 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2699 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2895 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:255 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:738 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:759 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:784 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:78 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:461 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:484 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:890 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:906 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:927 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:936 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1249 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1277 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1296 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1323 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:90 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:337 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:483 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:493 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:515 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:568 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:601 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:621 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:631 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:652 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:672 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:697 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:720 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:741 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:187 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:219 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:225 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:237 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:162 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:546 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:565 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:579 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:589 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:599 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:603 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:629 +#: ../../enterprise/godmode/servers/manage_export_form.php:79 +#: ../../enterprise/godmode/setup/setup.php:699 +#: ../../enterprise/godmode/setup/setup.php:716 +#: ../../enterprise/godmode/setup/setup.php:725 +#: ../../enterprise/godmode/setup/setup.php:742 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:809 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:817 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:965 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2172 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2217 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3175 +#: ../../enterprise/include/class/Omnishell.class.php:835 +#: ../../enterprise/include/class/Omnishell.class.php:836 +#: ../../enterprise/include/class/SAP.app.php:591 +#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../enterprise/include/class/SAP.app.php:761 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:699 +#: ../../enterprise/meta/advanced/metasetup.setup.php:310 +#: ../../enterprise/meta/advanced/metasetup.setup.php:316 +#: ../../enterprise/meta/advanced/metasetup.setup.php:326 +#: ../../enterprise/meta/advanced/metasetup.setup.php:332 +#: ../../enterprise/meta/advanced/metasetup.visual.php:149 +#: ../../enterprise/meta/event/custom_events.php:225 +#: ../../enterprise/meta/event/custom_events.php:271 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:176 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:248 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:345 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:402 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:512 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:583 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:100 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:142 +#: ../../enterprise/operation/agentes/ver_agente.php:35 +#: ../../enterprise/operation/log/log_viewer.php:588 +msgid "None" +msgstr "なし" + +#: ../../godmode/agentes/agent_manager.php:426 +#: ../../include/functions_events.php:4603 +#: ../../operation/agentes/estado_generalagente.php:344 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:511 +msgid "Secondary groups" +msgstr "セカンダリグループ" + +#: ../../godmode/agentes/agent_manager.php:476 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:557 +msgid "Add secondary groups" +msgstr "セカンダリグループの追加" + +#: ../../godmode/agentes/agent_manager.php:487 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:561 +msgid "Remove secondary groups" +msgstr "セカンダリグループの削除" + +#: ../../godmode/agentes/agent_manager.php:533 +#: ../../godmode/massive/massive_edit_agents.php:707 msgid "Safe operation mode" msgstr "セーフオペレーションモード" -#: ../../godmode/agentes/agent_manager.php:338 +#: ../../godmode/agentes/agent_manager.php:535 +#, php-format msgid "" -"This mode allow Pandora FMS to disable all modules \n" +"This mode allow %s to disable all modules \n" "\t\tof this agent while the selected module is on CRITICAL status" msgstr "" -"このモードは、選択したモジュールが障害状態の間、このエージェントの\n" -"\t\t全モジュールを Pandora FMS が無効化することができます。" +"このモードでは、選択したモジュールが障害状態の間は %s は\n" +"\t\tエージェントのすべてのモジュールを無効化できます。" -#: ../../godmode/agentes/agent_manager.php:346 -#: ../../godmode/massive/massive_edit_agents.php:411 -msgid "Module definition" -msgstr "モジュール定義" - -#: ../../godmode/agentes/agent_manager.php:348 -#: ../../godmode/massive/massive_edit_agents.php:413 -msgid "Learning mode" -msgstr "学習モード" - -#: ../../godmode/agentes/agent_manager.php:351 -#: ../../godmode/massive/massive_edit_agents.php:414 -msgid "Normal mode" -msgstr "通常モード" - -#: ../../godmode/agentes/agent_manager.php:354 -#: ../../godmode/massive/massive_edit_agents.php:415 -msgid "Autodisable mode" -msgstr "自動無効化モード" - -#: ../../godmode/agentes/agent_manager.php:360 -#: ../../godmode/agentes/modificar_agente.php:547 -#: ../../godmode/agentes/module_manager_editor_common.php:172 -#: ../../godmode/agentes/module_manager_editor_common.php:474 -#: ../../godmode/alerts/alert_list.list.php:136 -#: ../../godmode/alerts/alert_view.php:516 -#: ../../godmode/alerts/configure_alert_template.php:666 -#: ../../godmode/massive/massive_edit_agents.php:420 -#: ../../godmode/massive/massive_edit_modules.php:487 -#: ../../include/functions_reporting.php:3721 -#: ../../include/functions_treeview.php:74 -#: ../../include/functions_treeview.php:557 -#: ../../include/functions_groups.php:2152 -#: ../../include/functions_reporting_html.php:2098 -#: ../../mobile/operation/agent.php:151 ../../mobile/operation/alerts.php:40 -#: ../../operation/agentes/alerts_status.functions.php:76 -#: ../../operation/agentes/estado_generalagente.php:86 -#: ../../operation/agentes/estado_generalagente.php:89 -#: ../../operation/agentes/estado_generalagente.php:323 -#: ../../operation/search_agents.php:91 -#: ../../enterprise/extensions/vmware/functions.php:20 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:86 -#: ../../enterprise/godmode/modules/configure_local_component.php:287 -#: ../../enterprise/godmode/policies/policy_agents.php:479 -#: ../../enterprise/godmode/policies/policy_agents.php:498 -#: ../../enterprise/godmode/policies/policy_agents.php:1085 -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/setup/edit_skin.php:248 -#: ../../enterprise/include/functions_reporting_pdf.php:2428 -#: ../../enterprise/meta/agentsearch.php:211 -#: ../../enterprise/meta/agentsearch.php:219 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:408 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:680 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:890 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1073 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1364 -#: ../../enterprise/meta/include/functions_wizard_meta.php:179 -#: ../../enterprise/meta/include/functions_wizard_meta.php:411 -#: ../../enterprise/meta/include/functions_wizard_meta.php:480 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1009 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1460 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1645 -msgid "Disabled" -msgstr "無効" - -#: ../../godmode/agentes/agent_manager.php:362 -#: ../../godmode/massive/massive_edit_agents.php:421 -msgid "Active" -msgstr "有効" - -#: ../../godmode/agentes/agent_manager.php:366 -#: ../../godmode/agentes/configurar_agente.php:464 -#: ../../godmode/agentes/configurar_agente.php:580 -#: ../../godmode/massive/massive_edit_agents.php:424 -#: ../../godmode/servers/servers.build_table.php:173 -#: ../../operation/agentes/estado_generalagente.php:321 -#: ../../enterprise/godmode/policies/policy_agents.php:573 +#: ../../godmode/agentes/agent_manager.php:546 +#: ../../godmode/agentes/configurar_agente.php:512 +#: ../../godmode/agentes/configurar_agente.php:653 +#: ../../godmode/massive/massive_edit_agents.php:646 +#: ../../godmode/servers/servers.build_table.php:202 +#: ../../enterprise/godmode/policies/policy_agents.php:709 msgid "Remote configuration" msgstr "リモート設定" -#: ../../godmode/agentes/agent_manager.php:369 -#: ../../godmode/agentes/agent_manager.php:391 -#: ../../godmode/massive/massive_edit_agents.php:431 -msgid "Not available" -msgstr "利用できません" - -#: ../../godmode/agentes/agent_manager.php:382 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:207 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:163 +#: ../../godmode/agentes/agent_manager.php:556 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 msgid "Delete remote configuration file" msgstr "リモート設定ファイル削除" -#: ../../godmode/agentes/agent_manager.php:385 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:208 +#: ../../godmode/agentes/agent_manager.php:561 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:242 msgid "" "Delete this conf file implies that for restore you must reactive remote " "config in the local agent." msgstr "この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効化する必要があります。" -#: ../../godmode/agentes/agent_manager.php:400 -#: ../../godmode/massive/massive_edit_agents.php:457 -msgid "Agent icon" -msgstr "エージェントアイコン" +#: ../../godmode/agentes/agent_manager.php:565 +#: ../../godmode/massive/massive_edit_agents.php:653 +msgid "Not available" +msgstr "利用できません" -#: ../../godmode/agentes/agent_manager.php:400 -msgid "Agent icon for GIS Maps." -msgstr "GISマップのエージェントアイコン" +#: ../../godmode/agentes/agent_manager.php:583 +msgid "Cascade protection services" +msgstr "サービス関連障害検知抑制" -#: ../../godmode/agentes/agent_manager.php:438 -#: ../../include/functions_treeview.php:674 -#: ../../operation/agentes/estado_generalagente.php:358 -#: ../../operation/agentes/ver_agente.php:1129 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1144 +#: ../../godmode/agentes/agent_manager.php:585 +msgid "" +"Alerts and events will be managed by the service joined by this agent." +msgstr "アラートとイベントは、このエージェントを含むサービスによって管理されます。" + +#: ../../godmode/agentes/agent_manager.php:594 +#: ../../godmode/groups/configure_group.php:138 +#: ../../godmode/groups/group_list.php:584 +#: ../../godmode/massive/massive_edit_agents.php:522 +#: ../../godmode/modules/manage_nc_groups_form.php:71 +#: ../../godmode/reporting/visual_console_builder.elements.php:108 +#: ../../include/functions_visual_map_editor.php:866 +#: ../../operation/agentes/estado_generalagente.php:361 +#: ../../operation/agentes/ver_agente.php:1027 +msgid "Parent" +msgstr "親" + +#: ../../godmode/agentes/agent_manager.php:614 +#: ../../godmode/massive/massive_edit_agents.php:535 +msgid "Cascade protection" +msgstr "関連障害検知抑制" + +#: ../../godmode/agentes/agent_manager.php:630 +#: ../../godmode/massive/massive_edit_agents.php:633 +msgid "Module definition" +msgstr "モジュール定義" + +#: ../../godmode/agentes/agent_manager.php:635 +#: ../../godmode/massive/massive_edit_agents.php:635 +msgid "Learning mode" +msgstr "学習モード" + +#: ../../godmode/agentes/agent_manager.php:645 +#: ../../godmode/massive/massive_edit_agents.php:636 +msgid "Normal mode" +msgstr "通常モード" + +#: ../../godmode/agentes/agent_manager.php:655 +#: ../../godmode/massive/massive_edit_agents.php:637 +msgid "Autodisable mode" +msgstr "自動無効化モード" + +#: ../../godmode/agentes/agent_manager.php:672 +msgid "Disabled mode" +msgstr "無効化モード" + +#: ../../godmode/agentes/agent_manager.php:672 +#: ../../godmode/massive/massive_edit_agents.php:642 +msgid "" +"If the remote configuration is enabled, it will also go into standby mode " +"when disabling it." +msgstr "リモート設定が有効になっている場合、無効にするとスタンバイモードになります。" + +#: ../../godmode/agentes/agent_manager.php:677 +#: ../../godmode/agentes/agent_manager.php:694 +#: ../../include/functions_treeview.php:713 +#: ../../operation/agentes/estado_generalagente.php:423 +#: ../../operation/agentes/ver_agente.php:1246 msgid "Url address" msgstr "URLアドレス" -#: ../../godmode/agentes/agent_manager.php:442 -#: ../../godmode/agentes/modificar_agente.php:556 -#: ../../godmode/agentes/module_manager.php:646 -#: ../../godmode/agentes/module_manager_editor_common.php:568 -#: ../../godmode/agentes/planned_downtime.editor.php:503 -#: ../../godmode/agentes/planned_downtime.list.php:427 -#: ../../godmode/massive/massive_edit_agents.php:472 -#: ../../godmode/massive/massive_edit_modules.php:633 -#: ../../include/ajax/module.php:916 ../../include/class/Tree.class.php:1837 -#: ../../mobile/operation/agent.php:156 -#: ../../operation/agentes/estado_agente.php:631 -#: ../../operation/agentes/estado_generalagente.php:94 -#: ../../operation/agentes/estado_generalagente.php:97 -#: ../../operation/search_agents.php:100 +#: ../../godmode/agentes/agent_manager.php:677 +msgid "URL address must be complete, for example: https://pandorafms.com/" +msgstr "URLアドレスは完全である必要があります。例:https://pandorafms.com/" + +#: ../../godmode/agentes/agent_manager.php:707 +#: ../../godmode/agentes/modificar_agente.php:582 +#: ../../godmode/agentes/module_manager.php:742 +#: ../../godmode/agentes/module_manager_editor_common.php:1021 +#: ../../godmode/agentes/planned_downtime.editor.php:679 +#: ../../godmode/agentes/planned_downtime.list.php:437 +#: ../../godmode/massive/massive_edit_agents.php:691 +#: ../../godmode/massive/massive_edit_modules.php:1032 +#: ../../include/ajax/module.php:984 ../../include/class/Tree.class.php:809 +#: ../../mobile/operation/agent.php:179 +#: ../../operation/agentes/estado_agente.php:782 +#: ../../operation/agentes/estado_generalagente.php:115 +#: ../../operation/agentes/estado_generalagente.php:117 +#: ../../operation/search_agents.php:84 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:871 +#: ../../enterprise/godmode/services/services.service.php:439 msgid "Quiet" msgstr "静観" -#: ../../godmode/agentes/agent_manager.php:444 -#: ../../godmode/massive/massive_edit_agents.php:473 +#: ../../godmode/agentes/agent_manager.php:708 +#: ../../godmode/massive/massive_edit_agents.php:692 msgid "The agent still runs but the alerts and events will be stop" msgstr "エージェントは実行しますが、アラートとイベントは停止します" -#: ../../godmode/agentes/agent_manager.php:447 -#: ../../godmode/agentes/module_manager_editor.php:522 -#: ../../godmode/massive/massive_add_action_alerts.php:181 -#: ../../godmode/massive/massive_edit_agents.php:478 -#: ../../include/functions_visual_map_editor.php:644 -#: ../../operation/events/events_list.php:656 -#: ../../enterprise/godmode/alerts/alert_events_list.php:597 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:276 -#: ../../enterprise/godmode/policies/policy_modules.php:341 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:147 -msgid "Advanced options" -msgstr "拡張オプション" +#: ../../godmode/agentes/agent_manager.php:720 +#: ../../godmode/massive/massive_edit_agents.php:681 +msgid "Agent icon" +msgstr "エージェントアイコン" -#: ../../godmode/agentes/agent_manager.php:467 -#: ../../godmode/massive/massive_edit_agents.php:502 +#: ../../godmode/agentes/agent_manager.php:720 +msgid "Agent icon for GIS Maps." +msgstr "GISマップのエージェントアイコン" + +#: ../../godmode/agentes/agent_manager.php:770 +msgid "Update new GIS data:" +msgstr "新たな GIS データ更新:" + +#: ../../godmode/agentes/agent_manager.php:832 +msgid "Click to display" +msgstr "クリックして表示" + +#: ../../godmode/agentes/agent_manager.php:833 +#: ../../godmode/massive/massive_edit_agents.php:753 msgid "This field allows url insertion using the BBCode's url tag" msgstr "このフィールドには、BBコードの url タグを使うことにより URL を挿入することができます" -#: ../../godmode/agentes/agent_manager.php:469 -#: ../../godmode/massive/massive_edit_agents.php:504 -msgid "The format is: [url='url to navigate']'text to show'[/url]" -msgstr "フォーマット: [url='url to navigate']'表示するテキスト'[/url]" +#: ../../godmode/agentes/agent_manager.php:833 +#: ../../godmode/massive/massive_edit_agents.php:753 +msgid "" +"The format is: [url='url to navigate']'text to show'[/url] or [url]'url to " +"navigate'[/url] " +msgstr "フォーマット: [url='参照URL']'表示するテキスト'[/url] または [url]'参照URL'[/url] " -#: ../../godmode/agentes/agent_manager.php:471 -#: ../../godmode/massive/massive_edit_agents.php:506 -msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" -msgstr "例: [url=pandorafms.org]Pandora FMS コミュニティ[/url]" +#: ../../godmode/agentes/agent_manager.php:833 +#: ../../godmode/massive/massive_edit_agents.php:753 +msgid "" +"e.g.: [url=google.com]Google web search[/url] or [url]www.goole.com[/url]" +msgstr "例: [url=google.com]Google web 検索[/url] または [url]www.goole.com[/url]" -#: ../../godmode/agentes/agent_manager.php:495 -#: ../../godmode/events/events.php:53 ../../godmode/events/events.php:58 -#: ../../godmode/events/events.php:69 -#: ../../godmode/massive/massive_edit_agents.php:527 ../../godmode/menu.php:36 -#: ../../include/functions_events.php:2149 -#: ../../operation/agentes/ver_agente.php:1140 -#: ../../enterprise/meta/event/custom_events.php:53 -#: ../../enterprise/meta/event/custom_events.php:58 -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:83 +#: ../../godmode/agentes/agent_manager.php:944 +#: ../../godmode/agentes/agent_manager.php:969 +#: ../../godmode/events/events.php:55 ../../godmode/events/events.php:67 +#: ../../godmode/massive/massive_edit_agents.php:814 ../../godmode/menu.php:77 +#: ../../include/functions_events.php:4086 +#: ../../include/functions_events.php.orig:3992 +#: ../../operation/agentes/status_monitor.php:44 +#: ../../operation/agentes/status_monitor.php:57 +#: ../../operation/agentes/ver_agente.php:1257 +#: ../../enterprise/meta/event/custom_events.php:56 +#: ../../enterprise/meta/event/custom_events.php:61 +#: ../../enterprise/meta/event/custom_events.php:74 +#: ../../enterprise/meta/event/custom_events.php:92 msgid "Custom fields" msgstr "カスタムフィールド" -#: ../../godmode/agentes/agent_manager.php:520 -#: ../../godmode/agentes/configure_field.php:70 -#: ../../godmode/agentes/module_manager.php:139 -#: ../../godmode/agentes/module_manager_editor.php:549 -#: ../../godmode/agentes/planned_downtime.list.php:366 -#: ../../godmode/agentes/planned_downtime.list.php:516 -#: ../../godmode/alerts/alert_actions.php:403 -#: ../../godmode/alerts/alert_commands.php:395 -#: ../../godmode/alerts/alert_list.list.php:743 -#: ../../godmode/alerts/alert_list.php:329 -#: ../../godmode/alerts/alert_special_days.php:464 -#: ../../godmode/alerts/alert_special_days.php:482 -#: ../../godmode/alerts/alert_templates.php:364 -#: ../../godmode/alerts/configure_alert_action.php:227 -#: ../../godmode/alerts/configure_alert_command.php:202 -#: ../../godmode/alerts/configure_alert_special_days.php:106 -#: ../../godmode/category/edit_category.php:174 -#: ../../godmode/events/event_edit_filter.php:405 -#: ../../godmode/events/event_responses.editor.php:156 -#: ../../godmode/groups/configure_group.php:225 -#: ../../godmode/groups/configure_modu_group.php:87 -#: ../../godmode/massive/massive_add_profiles.php:117 -#: ../../godmode/modules/manage_nc_groups.php:245 -#: ../../godmode/modules/manage_nc_groups_form.php:84 -#: ../../godmode/modules/manage_network_components.php:645 -#: ../../godmode/modules/manage_network_components_form.php:279 -#: ../../godmode/modules/manage_network_templates.php:237 -#: ../../godmode/modules/manage_network_templates_form.php:159 -#: ../../godmode/netflow/nf_edit_form.php:244 -#: ../../godmode/reporting/create_container.php:280 -#: ../../godmode/reporting/graph_builder.main.php:207 -#: ../../godmode/reporting/map_builder.php:408 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1242 -#: ../../godmode/servers/manage_recontask.php:397 -#: ../../godmode/servers/plugin.php:542 -#: ../../godmode/servers/recon_script.php:220 ../../godmode/setup/gis.php:93 -#: ../../godmode/setup/links.php:117 ../../godmode/setup/news.php:204 -#: ../../godmode/setup/os.php:52 ../../godmode/setup/os.php:76 -#: ../../godmode/snmpconsole/snmp_alert.php:980 -#: ../../godmode/snmpconsole/snmp_alert.php:1339 -#: ../../godmode/snmpconsole/snmp_filters.php:200 -#: ../../godmode/snmpconsole/snmp_filters.php:276 -#: ../../godmode/tag/edit_tag.php:232 -#: ../../godmode/users/configure_user.php:702 -#: ../../godmode/users/profile_list.php:404 -#: ../../include/functions_visual_map_editor.php:631 -#: ../../include/functions_filemanager.php:617 -#: ../../include/functions_filemanager.php:654 -#: ../../operation/gis_maps/gis_map.php:182 -#: ../../operation/incidents/incident_detail.php:379 -#: ../../enterprise/extensions/backup/main.php:227 -#: ../../enterprise/extensions/cron/main.php:500 -#: ../../enterprise/extensions/ipam/ipam_editor.php:121 -#: ../../enterprise/extensions/ipam/ipam_list.php:257 -#: ../../enterprise/extensions/vmware/vmware_admin.php:412 +#: ../../godmode/agentes/agent_manager.php:1009 +#: ../../godmode/agentes/configure_field.php:138 +#: ../../godmode/agentes/module_manager.php:164 +#: ../../godmode/agentes/module_manager_editor.php:742 +#: ../../godmode/agentes/planned_downtime.list.php:373 +#: ../../godmode/agentes/planned_downtime.list.php:536 +#: ../../godmode/alerts/alert_actions.php:265 +#: ../../godmode/alerts/alert_commands.php:460 +#: ../../godmode/alerts/alert_list.list.php:874 +#: ../../godmode/alerts/alert_list.php:508 +#: ../../godmode/alerts/alert_special_days.php:521 +#: ../../godmode/alerts/alert_special_days.php:539 +#: ../../godmode/alerts/alert_templates.php:427 +#: ../../godmode/alerts/configure_alert_action.php:290 +#: ../../godmode/alerts/configure_alert_command.php:240 +#: ../../godmode/alerts/configure_alert_special_days.php:107 +#: ../../godmode/category/edit_category.php:176 +#: ../../godmode/events/event_edit_filter.php:625 +#: ../../godmode/events/event_responses.editor.php:193 +#: ../../godmode/groups/configure_group.php:237 +#: ../../godmode/groups/configure_modu_group.php:83 +#: ../../godmode/massive/massive_add_profiles.php:171 +#: ../../godmode/modules/manage_nc_groups.php:283 +#: ../../godmode/modules/manage_nc_groups_form.php:93 +#: ../../godmode/modules/manage_network_components.php:795 +#: ../../godmode/modules/manage_network_components_form.php:311 +#: ../../godmode/modules/manage_network_templates.php:284 +#: ../../godmode/modules/manage_network_templates_form.php:168 +#: ../../godmode/netflow/nf_edit_form.php:261 +#: ../../godmode/reporting/create_container.php:294 +#: ../../godmode/reporting/graph_builder.main.php:192 +#: ../../godmode/reporting/map_builder.php:492 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1797 +#: ../../godmode/servers/plugin.php:562 ../../godmode/setup/gis.php:103 +#: ../../godmode/setup/links.php:124 ../../godmode/setup/news.php:221 +#: ../../godmode/setup/os.php:50 ../../godmode/setup/os.php:77 +#: ../../godmode/snmpconsole/snmp_alert.php:1090 +#: ../../godmode/snmpconsole/snmp_alert.php:1446 +#: ../../godmode/snmpconsole/snmp_filters.php:232 +#: ../../godmode/snmpconsole/snmp_filters.php:305 +#: ../../godmode/tag/edit_tag.php:238 +#: ../../godmode/users/configure_user.php:999 +#: ../../godmode/users/profile_list.php:381 +#: ../../include/class/ManageNetScanScripts.class.php:760 +#: ../../include/functions_filemanager.php:797 +#: ../../include/functions_filemanager.php:803 +#: ../../include/functions_visual_map_editor.php:794 +#: ../../operation/gis_maps/gis_map.php:202 +#: ../../operation/incidents/configure_integriaims_incident.php:322 +#: ../../operation/incidents/incident_detail.php:402 +#: ../../operation/incidents/list_integriaims_incidents.php:319 +#: ../../enterprise/extensions/backup/main.php:275 +#: ../../enterprise/extensions/ipam/ipam_editor.php:229 +#: ../../enterprise/extensions/ipam/ipam_list.php:210 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:454 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:697 #: ../../enterprise/godmode/agentes/collections.agents.php:40 -#: ../../enterprise/godmode/agentes/collections.data.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:127 -#: ../../enterprise/godmode/agentes/collections.data.php:146 -#: ../../enterprise/godmode/agentes/collections.data.php:161 +#: ../../enterprise/godmode/agentes/collections.data.php:58 +#: ../../enterprise/godmode/agentes/collections.data.php:142 +#: ../../enterprise/godmode/agentes/collections.data.php:166 #: ../../enterprise/godmode/agentes/collections.data.php:183 -#: ../../enterprise/godmode/agentes/collections.data.php:225 -#: ../../enterprise/godmode/agentes/collections.editor.php:111 -#: ../../enterprise/godmode/agentes/collections.php:287 -#: ../../enterprise/godmode/alerts/alert_events_list.php:671 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:511 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:220 -#: ../../enterprise/godmode/modules/configure_local_component.php:490 -#: ../../enterprise/godmode/modules/local_components.php:551 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:245 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -#: ../../enterprise/godmode/policies/configure_policy.php:90 -#: ../../enterprise/godmode/policies/policies.php:478 -#: ../../enterprise/godmode/policies/policy_modules.php:369 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:232 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:293 -#: ../../enterprise/godmode/servers/manage_export.php:125 -#: ../../enterprise/godmode/servers/manage_export.php:157 -#: ../../enterprise/godmode/services/services.elements.php:423 -#: ../../enterprise/godmode/services/services.service.php:417 -#: ../../enterprise/godmode/setup/edit_skin.php:270 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:365 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:90 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1215 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1430 -#: ../../enterprise/meta/include/functions_autoprovision.php:492 -#: ../../enterprise/meta/include/functions_autoprovision.php:677 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:309 +#: ../../enterprise/godmode/agentes/collections.data.php:207 +#: ../../enterprise/godmode/agentes/collections.data.php:254 +#: ../../enterprise/godmode/agentes/collections.editor.php:143 +#: ../../enterprise/godmode/agentes/collections.php:388 +#: ../../enterprise/godmode/alerts/alert_events_list.php:753 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:517 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:267 +#: ../../enterprise/godmode/modules/configure_local_component.php:654 +#: ../../enterprise/godmode/modules/local_components.php:631 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:454 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:145 +#: ../../enterprise/godmode/policies/configure_policy.php:110 +#: ../../enterprise/godmode/policies/policies.php:647 +#: ../../enterprise/godmode/policies/policy_modules.php:423 +#: ../../enterprise/godmode/reporting/aws_view.php:167 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:333 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:237 +#: ../../enterprise/godmode/servers/manage_export.php:130 +#: ../../enterprise/godmode/servers/manage_export.php:169 +#: ../../enterprise/godmode/services/services.elements.php:768 +#: ../../enterprise/godmode/services/services.service.php:562 +#: ../../enterprise/godmode/setup/edit_skin.php:296 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:87 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:565 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2800 +#: ../../enterprise/meta/advanced/collections.data.php:44 +#: ../../enterprise/meta/advanced/collections.data.php:73 +#: ../../enterprise/meta/advanced/collections.data.php:95 +#: ../../enterprise/meta/advanced/collections.data.php:112 +#: ../../enterprise/meta/advanced/collections.data.php:134 +#: ../../enterprise/meta/advanced/collections.data.php:174 +#: ../../enterprise/meta/advanced/collections.editor.php:110 +#: ../../enterprise/meta/advanced/collections.php:396 +#: ../../enterprise/meta/advanced/collections.php:414 +#: ../../enterprise/meta/advanced/cron_main.php:439 +#: ../../enterprise/meta/advanced/links.php:133 +#: ../../enterprise/meta/include/functions_autoprovision.php:562 +#: ../../enterprise/meta/include/functions_autoprovision.php:761 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:277 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:348 msgid "Create" msgstr "作成" -#: ../../godmode/agentes/agent_template.php:69 +#: ../../godmode/agentes/agent_manager.php:1088 +msgid "Primary group cannot be secondary too." +msgstr "プライマリグループはセカンダリにできません。" + +#: ../../godmode/agentes/agent_manager.php:1218 +msgid "Secondary group cannot be primary too." +msgstr "セカンダリグループはプライマリにできません。" + +#: ../../godmode/agentes/agent_template.php:67 +#: ../../include/functions_api.php:14049 msgid "Created by template " msgstr "テンプレートにより作成 " -#: ../../godmode/agentes/agent_template.php:157 +#: ../../godmode/agentes/agent_template.php:154 +#: ../../include/functions_api.php:14136 msgid "Error adding modules" msgstr "モジュールを追加できませんでした。" -#: ../../godmode/agentes/agent_template.php:159 +#: ../../godmode/agentes/agent_template.php:156 +#: ../../include/functions_api.php:14138 msgid "Error adding modules. The following errors already exists: " msgstr "モジュールを追加できませんでした。次のモジュールは存在します: " -#: ../../godmode/agentes/agent_template.php:162 +#: ../../godmode/agentes/agent_template.php:161 +#: ../../include/functions_api.php:14143 msgid "Modules successfully added" msgstr "モジュールを追加しました。" -#: ../../godmode/agentes/agent_template.php:189 +#: ../../godmode/agentes/agent_template.php:186 msgid "Assign" msgstr "割当" -#: ../../godmode/agentes/agent_template.php:228 -#: ../../godmode/alerts/alert_list.list.php:86 -#: ../../godmode/modules/manage_network_components.php:565 -#: ../../godmode/modules/manage_network_templates_form.php:198 -#: ../../include/ajax/module.php:777 ../../mobile/operation/modules.php:489 -#: ../../mobile/operation/modules.php:752 -#: ../../operation/agentes/status_monitor.php:330 -#: ../../operation/agentes/status_monitor.php:966 -#: ../../enterprise/include/ajax/clustermap.php:64 -#: ../../enterprise/include/ajax/clustermap.php:274 -#: ../../enterprise/include/functions_reporting_pdf.php:2442 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1361 -#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../godmode/agentes/agent_template.php:233 +#: ../../godmode/agentes/status_monitor_custom_fields.php:85 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/alerts/alert_list.list.php:83 +#: ../../godmode/modules/manage_network_components.php:670 +#: ../../godmode/modules/manage_network_templates_form.php:219 +#: ../../include/ajax/custom_fields.php:401 ../../include/ajax/module.php:836 +#: ../../mobile/operation/modules.php:567 +#: ../../mobile/operation/modules.php:818 +#: ../../operation/agentes/status_monitor.php:433 +#: ../../operation/agentes/status_monitor.php:1123 +#: ../../enterprise/include/ajax/clustermap.php:70 +#: ../../enterprise/include/ajax/clustermap.php:289 +#: ../../enterprise/meta/include/functions_events_meta.php:90 +#: ../../enterprise/operation/agentes/tag_view.php:177 msgid "Module name" msgstr "モジュール名" -#: ../../godmode/agentes/agent_template.php:229 -#: ../../godmode/agentes/modificar_agente.php:472 -#: ../../godmode/agentes/module_manager.php:134 -#: ../../godmode/agentes/module_manager.php:560 -#: ../../godmode/agentes/module_manager_editor_common.php:186 -#: ../../godmode/agentes/planned_downtime.editor.php:500 -#: ../../godmode/agentes/planned_downtime.list.php:394 -#: ../../godmode/alerts/alert_templates.php:38 -#: ../../godmode/alerts/alert_templates.php:254 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/events/event_responses.editor.php:116 -#: ../../godmode/modules/manage_network_components.php:566 -#: ../../godmode/modules/manage_network_components_form_common.php:69 -#: ../../godmode/modules/manage_network_templates_form.php:199 -#: ../../godmode/reporting/reporting_builder.item_editor.php:637 -#: ../../godmode/reporting/reporting_builder.list_items.php:169 -#: ../../godmode/reporting/reporting_builder.list_items.php:196 -#: ../../godmode/reporting/reporting_builder.list_items.php:289 -#: ../../godmode/reporting/visual_console_builder.wizard.php:111 -#: ../../godmode/reporting/visual_console_builder.wizard.php:216 -#: ../../godmode/servers/modificar_server.php:60 -#: ../../godmode/servers/plugin.php:736 -#: ../../godmode/servers/servers.build_table.php:66 -#: ../../godmode/setup/gis_step_2.php:171 ../../godmode/setup/news.php:221 -#: ../../include/ajax/module.php:774 ../../include/functions_events.php:901 -#: ../../include/functions_events.php:2479 -#: ../../include/functions_visual_map_editor.php:521 -#: ../../include/functions_visual_map_editor.php:537 -#: ../../include/functions_visual_map_editor.php:609 -#: ../../include/functions_snmp_browser.php:456 -#: ../../include/functions_reporting_html.php:812 -#: ../../include/functions_reporting_html.php:821 -#: ../../include/functions_reporting_html.php:1026 -#: ../../include/functions_reporting_html.php:1036 -#: ../../include/functions_reporting_html.php:1650 -#: ../../include/functions_reporting_html.php:2114 -#: ../../include/functions_reporting_html.php:3218 -#: ../../mobile/operation/events.php:352 ../../mobile/operation/events.php:353 -#: ../../mobile/operation/events.php:481 ../../mobile/operation/events.php:622 -#: ../../mobile/operation/events.php:623 -#: ../../mobile/operation/networkmaps.php:77 -#: ../../mobile/operation/networkmaps.php:78 -#: ../../mobile/operation/networkmaps.php:140 -#: ../../mobile/operation/networkmaps.php:141 -#: ../../mobile/operation/networkmaps.php:196 -#: ../../mobile/operation/visualmaps.php:61 -#: ../../mobile/operation/visualmaps.php:62 -#: ../../operation/agentes/estado_agente.php:567 -#: ../../operation/agentes/ver_agente.php:881 -#: ../../operation/events/events.php:72 -#: ../../operation/events/sound_events.php:82 -#: ../../operation/netflow/nf_live_view.php:254 -#: ../../operation/search_modules.php:49 -#: ../../enterprise/godmode/modules/configure_local_component.php:184 -#: ../../enterprise/godmode/policies/policy_modules.php:1235 +#: ../../godmode/agentes/agent_template.php:234 +#: ../../godmode/agentes/modificar_agente.php:490 +#: ../../godmode/agentes/module_manager.php:647 +#: ../../godmode/agentes/module_manager_editor_common.php:299 +#: ../../godmode/agentes/module_manager_editor_common.php:412 +#: ../../godmode/agentes/module_manager_editor_common.php:1224 +#: ../../godmode/agentes/planned_downtime.editor.php:673 +#: ../../godmode/agentes/planned_downtime.list.php:401 +#: ../../godmode/alerts/alert_templates.php:37 +#: ../../godmode/alerts/alert_templates.php:285 +#: ../../godmode/alerts/alert_templates.php:368 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../godmode/modules/manage_network_components.php:671 +#: ../../godmode/modules/manage_network_components_form_common.php:75 +#: ../../godmode/modules/manage_network_templates_form.php:220 +#: ../../godmode/reporting/reporting_builder.item_editor.php:798 +#: ../../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/visual_console_builder.wizard.php:135 +#: ../../godmode/reporting/visual_console_builder.wizard.php:303 +#: ../../godmode/servers/modificar_server.php:70 +#: ../../godmode/servers/plugin.php:970 +#: ../../godmode/servers/servers.build_table.php:67 +#: ../../godmode/setup/gis_step_2.php:219 ../../godmode/setup/news.php:237 +#: ../../godmode/setup/setup_integria.php:336 +#: ../../godmode/setup/setup_integria.php:459 ../../include/ajax/module.php:835 +#: ../../include/functions_snmp_browser.php:509 +#: ../../include/functions_events.php:2384 +#: ../../include/functions_events.php:4524 +#: ../../include/functions_events.php.orig:2290 +#: ../../include/functions_events.php.orig:4418 +#: ../../include/functions_visual_map_editor.php:634 +#: ../../include/functions_visual_map_editor.php:652 +#: ../../include/functions_visual_map_editor.php:780 +#: ../../include/functions_reporting_html.php:964 +#: ../../include/functions_reporting_html.php:972 +#: ../../include/functions_reporting_html.php:1184 +#: ../../include/functions_reporting_html.php:1192 +#: ../../include/functions_reporting_html.php:1963 +#: ../../include/functions_reporting_html.php:2660 +#: ../../include/functions_reporting_html.php:4137 +#: ../../mobile/operation/events.php:377 ../../mobile/operation/events.php:378 +#: ../../mobile/operation/events.php:524 ../../mobile/operation/events.php:680 +#: ../../mobile/operation/events.php:681 +#: ../../mobile/operation/visualmaps.php:67 +#: ../../mobile/operation/visualmaps.php:68 +#: ../../operation/agentes/estado_agente.php:713 +#: ../../operation/agentes/ver_agente.php:979 +#: ../../operation/events/sound_events.php:74 +#: ../../operation/incidents/configure_integriaims_incident.php:210 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:377 +#: ../../operation/netflow/nf_live_view.php:311 +#: ../../operation/search_modules.php:33 +#: ../../enterprise/godmode/modules/configure_local_component.php:206 +#: ../../enterprise/godmode/policies/policy_modules.php:1492 +#: ../../enterprise/godmode/reporting/cluster_list.php:190 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1264 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:98 -#: ../../enterprise/godmode/reporting/cluster_list.php:166 -#: ../../enterprise/godmode/services/services.elements.php:349 -#: ../../enterprise/include/functions_reporting_csv.php:1142 -#: ../../enterprise/include/functions_reporting_csv.php:1255 -#: ../../enterprise/include/functions_reporting_csv.php:1402 -#: ../../enterprise/include/functions_reporting_csv.php:1467 -#: ../../enterprise/include/functions_reporting_pdf.php:2443 -#: ../../enterprise/include/functions_services.php:1501 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:93 -#: ../../enterprise/operation/agentes/policy_view.php:306 -#: ../../enterprise/operation/agentes/tag_view.php:468 -#: ../../enterprise/operation/agentes/ver_agente.php:30 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1496 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:274 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 +#: ../../enterprise/godmode/services/services.elements.php:637 +#: ../../enterprise/godmode/services/services.elements.php:660 +#: ../../enterprise/include/functions_services.php:2466 +#: ../../enterprise/include/functions_reporting_csv.php:1398 +#: ../../enterprise/include/functions_reporting_csv.php:1514 +#: ../../enterprise/include/functions_reporting_csv.php:1714 +#: ../../enterprise/include/functions_reporting_csv.php:1782 +#: ../../enterprise/meta/advanced/servers.build_table.php:60 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:68 +#: ../../enterprise/operation/agentes/policy_view.php:325 +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/agentes/ver_agente.php:29 msgid "Type" msgstr "種類" -#: ../../godmode/agentes/agent_template.php:263 -#: ../../mobile/operation/modules.php:668 +#: ../../godmode/agentes/agent_template.php:267 +#: ../../mobile/operation/modules.php:736 msgid "No modules" msgstr "モジュールがありません" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:66 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 #: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 msgid "The SNMP remote plugin doesnt seem to be installed" msgstr "SNMP リモートプラグインがインストールされていません" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:66 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 #: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 msgid "It is necessary to use some features" msgstr "いくつかの機能を利用するために必要です" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:66 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:64 #: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:61 msgid "" "Please, install the SNMP remote plugin (The name of the plugin must be " "snmp_remote.pl)" msgstr "SNMP リモートプラグインをインストールしてください (プラグインの名前は snmp_remote.pl である必要があります)" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:258 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:253 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:286 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:283 msgid "Remote system doesnt support host SNMP information" msgstr "リモートシステムは、ホスト SNMP 情報をサポートしていません。" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:303 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:183 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:334 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:229 msgid "No agent selected or the agent does not exist" msgstr "エージェントが選択されてないか、存在しません。" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:343 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:335 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:371 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:369 msgid "The number of bytes read from this device since boot" msgstr "起動以降このデバイスから読み込んだバイト数" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:345 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:337 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:372 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:370 msgid "The number of bytes written to this device since boot" msgstr "起動以降このデバイスへ書き込んだバイト数" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:347 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:339 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:373 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:371 msgid "The number of read accesses from this device since boot" msgstr "起動以降このデバイスからの読み込みアクセス数" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:349 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:341 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:374 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:372 msgid "The number of write accesses from this device since boot" msgstr "起動以降このデバイスへの書き込みアクセス数" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:524 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:516 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:548 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:544 #, php-format msgid "Check if the process %s is running or not" msgstr "プロセス %s が動作しているかどうか確認してください" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:595 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:587 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:615 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:611 msgid "Disk use information" msgstr "ディスク利用情報" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:666 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:656 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:685 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:676 #, php-format msgid "%s modules created succesfully" msgstr "%s 個のモジュールを作成しました" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:671 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:676 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:661 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:666 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:691 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:697 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:682 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:688 #, php-format msgid "Error creating %s modules" msgstr "%s 個のモジュール作成エラー" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:681 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:277 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:671 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:276 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:703 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:415 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:694 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:445 #, php-format msgid "%s modules already exist" msgstr "%s 個のモジュールはすでに存在します" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:690 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:680 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:711 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:702 msgid "Modules created succesfully" msgstr "モジュールを作成しました" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:708 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:426 -#: ../../godmode/agentes/module_manager_editor_network.php:106 -#: ../../godmode/massive/massive_edit_modules.php:653 -#: ../../godmode/modules/manage_network_components_form_network.php:38 -#: ../../include/functions_config.php:755 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:697 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:415 -#: ../../enterprise/godmode/servers/manage_export_form.php:105 -#: ../../enterprise/godmode/setup/setup_history.php:56 -msgid "Port" -msgstr "ポート番号" - -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:711 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:429 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:733 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:470 msgid "Use agent ip" msgstr "エージェントのIPを使う" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:715 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:433 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:314 -#: ../../godmode/events/event_responses.editor.php:126 -#: ../../include/functions_snmp_browser.php:568 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:715 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:433 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:313 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:737 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:474 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:485 +#: ../../godmode/events/event_responses.editor.php:157 +#: ../../include/functions_snmp_browser.php:663 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:743 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:454 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:526 msgid "Local console" msgstr "ローカルコンソール" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:731 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:449 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:330 -#: ../../godmode/events/event_responses.editor.php:144 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:731 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:449 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:329 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:758 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:495 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:501 +#: ../../godmode/events/event_responses.editor.php:174 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:759 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:470 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:542 msgid "Server to execute command" msgstr "コマンドを実行するサーバ" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:739 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:457 -#: ../../godmode/agentes/module_manager_editor_network.php:119 -#: ../../godmode/modules/manage_network_components_form_network.php:50 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:705 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:423 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:774 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:512 +#: ../../godmode/agentes/module_manager_editor_network.php:149 +#: ../../godmode/modules/manage_network_components_form_network.php:82 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:262 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:733 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:444 msgid "SNMP community" msgstr "SNMPコミュニティ" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:742 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:460 -#: ../../godmode/agentes/module_manager_editor_network.php:132 -#: ../../godmode/massive/massive_edit_modules.php:520 -#: ../../godmode/modules/manage_network_components_form_network.php:40 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:708 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:426 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:777 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:515 +#: ../../godmode/agentes/module_manager_editor_network.php:180 +#: ../../godmode/massive/massive_edit_modules.php:767 +#: ../../godmode/modules/manage_network_components_form_network.php:55 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:271 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:736 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:447 +#: ../../enterprise/include/functions_hostdevices.php:61 msgid "SNMP version" msgstr "SNMPバージョン" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:756 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:473 -#: ../../godmode/agentes/module_manager_editor_network.php:216 -#: ../../godmode/massive/massive_edit_modules.php:523 -#: ../../godmode/modules/manage_network_components_form_network.php:57 -#: ../../include/functions_snmp_browser.php:597 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:741 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:459 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:791 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:528 +#: ../../godmode/agentes/module_manager_editor_network.php:336 +#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../godmode/modules/manage_network_components_form_network.php:96 +#: ../../include/functions_snmp_browser.php:694 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:298 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:638 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:769 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:480 +#: ../../enterprise/include/functions_hostdevices.php:119 msgid "Auth user" msgstr "認証ユーザ" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:758 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:475 -#: ../../godmode/agentes/module_manager_editor_network.php:219 -#: ../../godmode/massive/massive_edit_modules.php:526 -#: ../../godmode/modules/manage_network_components_form_network.php:59 -#: ../../include/functions_snmp_browser.php:599 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:743 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:461 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:793 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:530 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../godmode/modules/manage_network_components_form_network.php:105 +#: ../../include/functions_snmp_browser.php:696 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:771 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:482 +#: ../../enterprise/include/functions_hostdevices.php:130 msgid "Auth password" msgstr "認証パスワード" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:762 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:479 -#: ../../godmode/agentes/module_manager_editor_network.php:227 -#: ../../godmode/massive/massive_edit_modules.php:529 -#: ../../godmode/modules/manage_network_components_form_network.php:65 -#: ../../include/functions_snmp_browser.php:603 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:747 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:465 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:797 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:534 +#: ../../godmode/agentes/module_manager_editor_network.php:369 +#: ../../godmode/massive/massive_edit_modules.php:791 +#: ../../godmode/modules/manage_network_components_form_network.php:123 +#: ../../include/functions_snmp_browser.php:700 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:323 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:649 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:775 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:486 +#: ../../enterprise/include/functions_hostdevices.php:146 msgid "Privacy method" msgstr "暗号化方式" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:480 -#: ../../godmode/agentes/module_manager_editor_network.php:228 -#: ../../godmode/massive/massive_edit_modules.php:530 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -#: ../../include/functions_snmp_browser.php:604 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:748 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:466 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:535 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../godmode/modules/manage_network_components_form_network.php:126 +#: ../../include/functions_snmp_browser.php:701 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:326 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../enterprise/include/functions_hostdevices.php:151 msgid "DES" msgstr "DES" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:763 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:480 -#: ../../godmode/agentes/module_manager_editor_network.php:228 -#: ../../godmode/massive/massive_edit_modules.php:530 -#: ../../godmode/modules/manage_network_components_form_network.php:66 -#: ../../include/functions_snmp_browser.php:604 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:748 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:466 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:798 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:535 +#: ../../godmode/agentes/module_manager_editor_network.php:370 +#: ../../godmode/massive/massive_edit_modules.php:792 +#: ../../godmode/modules/manage_network_components_form_network.php:127 +#: ../../include/functions_snmp_browser.php:701 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:327 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:776 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../enterprise/include/functions_hostdevices.php:152 msgid "AES" msgstr "AES" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:764 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:481 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:749 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:467 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:799 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:536 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:336 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:777 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:488 msgid "privacy pass" msgstr "暗号化パスワード" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:767 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:484 -#: ../../godmode/agentes/module_manager_editor_network.php:237 -#: ../../godmode/massive/massive_edit_modules.php:533 -#: ../../godmode/modules/manage_network_components_form_network.php:72 -#: ../../include/functions_snmp_browser.php:608 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:752 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:470 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:802 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:539 +#: ../../godmode/agentes/module_manager_editor_network.php:391 +#: ../../godmode/massive/massive_edit_modules.php:795 +#: ../../godmode/modules/manage_network_components_form_network.php:148 +#: ../../include/functions_snmp_browser.php:705 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:346 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:653 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:780 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:491 +#: ../../enterprise/include/functions_hostdevices.php:177 msgid "Auth method" msgstr "認証方式" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:768 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:485 -#: ../../godmode/agentes/module_manager_editor_network.php:238 -#: ../../godmode/massive/massive_edit_modules.php:534 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -#: ../../include/functions_snmp_browser.php:609 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:753 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:471 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 +#: ../../godmode/agentes/module_manager_editor_network.php:394 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../godmode/modules/manage_network_components_form_network.php:151 +#: ../../include/class/Diagnostics.class.php:2166 +#: ../../include/functions_snmp_browser.php:706 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:349 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 +#: ../../enterprise/include/functions_hostdevices.php:182 msgid "MD5" msgstr "MD5" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:768 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:485 -#: ../../godmode/agentes/module_manager_editor_network.php:238 -#: ../../godmode/massive/massive_edit_modules.php:534 -#: ../../godmode/modules/manage_network_components_form_network.php:73 -#: ../../include/functions_snmp_browser.php:609 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:753 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:471 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:803 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 +#: ../../godmode/agentes/module_manager_editor_network.php:395 +#: ../../godmode/massive/massive_edit_modules.php:796 +#: ../../godmode/modules/manage_network_components_form_network.php:152 +#: ../../include/functions_snmp_browser.php:706 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:350 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:781 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:492 +#: ../../enterprise/include/functions_hostdevices.php:183 msgid "SHA" msgstr "SHA" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:769 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:486 -#: ../../godmode/agentes/module_manager_editor_network.php:239 -#: ../../godmode/massive/massive_edit_modules.php:535 -#: ../../godmode/modules/manage_network_components_form_network.php:74 -#: ../../include/functions_snmp_browser.php:610 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:754 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:472 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:804 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:541 +#: ../../godmode/agentes/module_manager_editor_network.php:408 +#: ../../godmode/massive/massive_edit_modules.php:797 +#: ../../godmode/modules/manage_network_components_form_network.php:161 +#: ../../include/functions_snmp_browser.php:707 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:359 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:655 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:782 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:493 +#: ../../enterprise/include/functions_hostdevices.php:192 msgid "Security level" msgstr "セキュリティレベル" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:770 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:487 -#: ../../godmode/agentes/module_manager_editor_network.php:240 -#: ../../godmode/massive/massive_edit_modules.php:536 -#: ../../godmode/modules/manage_network_components_form_network.php:75 -#: ../../include/functions_snmp_browser.php:611 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:755 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:473 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:807 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:544 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:800 +#: ../../godmode/modules/manage_network_components_form_network.php:164 +#: ../../include/functions_snmp_browser.php:710 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:362 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:658 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:785 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:496 +#: ../../enterprise/include/functions_hostdevices.php:197 msgid "Not auth and not privacy method" msgstr "認証なし、暗号化なし" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:771 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:488 -#: ../../godmode/agentes/module_manager_editor_network.php:241 -#: ../../godmode/massive/massive_edit_modules.php:537 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../include/functions_snmp_browser.php:612 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:756 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:474 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:808 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:545 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:801 +#: ../../godmode/modules/manage_network_components_form_network.php:165 +#: ../../include/functions_snmp_browser.php:711 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:363 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:786 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:497 +#: ../../enterprise/include/functions_hostdevices.php:198 msgid "Auth and not privacy method" msgstr "認証あり、暗号化なし" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:771 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:488 -#: ../../godmode/agentes/module_manager_editor_network.php:241 -#: ../../godmode/massive/massive_edit_modules.php:537 -#: ../../godmode/modules/manage_network_components_form_network.php:76 -#: ../../include/functions_snmp_browser.php:612 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:756 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:474 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:809 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:546 +#: ../../godmode/agentes/module_manager_editor_network.php:413 +#: ../../godmode/massive/massive_edit_modules.php:802 +#: ../../godmode/modules/manage_network_components_form_network.php:166 +#: ../../include/functions_snmp_browser.php:712 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:364 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:660 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:787 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:498 +#: ../../enterprise/include/functions_hostdevices.php:199 msgid "Auth and privacy method" msgstr "認証あり、暗号化あり" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:784 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:501 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:769 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:487 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:830 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:567 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:808 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:519 msgid "SNMP Walk" msgstr "snmpwalk" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:788 -#: ../../operation/tree.php:285 -#: ../../enterprise/dashboard/widgets/tree_view.php:197 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:773 -#: ../../enterprise/include/functions_inventory.php:166 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 +#: ../../godmode/groups/group_list.php:737 +#: ../../operation/network/network_report.php:333 ../../operation/tree.php:347 +#: ../../enterprise/dashboard/widgets/tree_view.php:232 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 +#: ../../enterprise/include/functions_inventory.php:179 +#: ../../enterprise/operation/services/services.treeview_services.php:171 msgid "No data found" msgstr "データがありません" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:788 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:773 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:834 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:812 msgid "" "If the device is a network device, try with the SNMP Interfaces wizard" msgstr "ネットワークデバイスの場合は、SNMP インタフェースウィザードを試してください" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:817 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:801 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:863 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:840 msgid "Devices" msgstr "デバイス" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:818 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:365 -#: ../../operation/agentes/ver_agente.php:1200 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:802 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:364 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:864 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:556 +#: ../../operation/agentes/ver_agente.php:1314 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:841 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:619 msgid "Processes" msgstr "プロセス" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:819 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:366 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:803 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:365 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:865 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:557 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:842 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:620 msgid "Free space on disk" msgstr "ディスク空き容量" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:820 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:804 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:866 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:843 msgid "Temperature sensors" msgstr "温度センサー" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:821 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:805 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:867 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:844 msgid "Other SNMP data" msgstr "他の SNMP データ" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:823 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:807 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:368 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:869 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:560 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:846 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:623 msgid "Wizard mode" msgstr "ウィザードモード" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:842 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:847 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:826 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:831 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:909 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:914 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:886 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:891 msgid "SNMP remote plugin is necessary for this feature" msgstr "この機能には、SNMP リモートプラグインが必要です" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:879 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:881 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:883 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:885 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:888 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:412 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:414 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:416 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:418 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:863 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:865 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:867 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:869 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:872 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:411 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:413 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:415 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:417 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:993 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:995 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:997 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:999 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1002 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:677 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:685 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:693 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:701 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:970 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:972 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:974 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:976 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:979 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:738 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:745 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:752 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:759 msgid "Add to modules list" msgstr "モジュール一覧に追加" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:890 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:422 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:874 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:421 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1005 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:710 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:982 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:767 msgid "Remove from modules list" msgstr "モジュール一覧から削除" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:900 -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:552 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:433 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:884 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:537 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:432 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1015 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:635 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:739 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:992 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:569 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:796 msgid "Create modules" msgstr "モジュール作成" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:957 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:941 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1074 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1049 msgid "Device" msgstr "デバイス" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:963 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:979 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:995 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1011 -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1027 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:485 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:501 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:517 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:533 -#: ../../godmode/events/event_edit_filter.php:301 -#: ../../include/functions_events.php:2484 -#: ../../mobile/operation/events.php:485 -#: ../../operation/events/events_list.php:646 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:947 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:963 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:979 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:995 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1011 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:484 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:500 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:516 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:532 -#: ../../enterprise/include/functions_events.php:149 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1080 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1096 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1112 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1128 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1144 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:795 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:811 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:827 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:843 +#: ../../godmode/events/event_edit_filter.php:404 +#: ../../include/functions_events.php:4534 +#: ../../include/functions_events.php.orig:4428 +#: ../../mobile/operation/events.php:528 ../../operation/events/events.php:938 +#: ../../operation/events/events_list.php:968 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1055 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1071 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1087 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1103 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1119 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:852 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:868 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:884 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:900 +#: ../../enterprise/include/functions_events.php:198 msgid "Repeated" msgstr "複数回発生イベント" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:973 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:495 -#: ../../godmode/reporting/visual_console_builder.wizard.php:193 -#: ../../include/functions_visual_map_editor.php:462 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:957 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:494 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1090 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:805 +#: ../../godmode/reporting/visual_console_builder.wizard.php:276 +#: ../../include/functions_visual_map_editor.php:544 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1065 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:862 msgid "Process" msgstr "処理" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1005 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:989 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1122 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1097 msgid "Temperature" msgstr "温度" -#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1052 -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:555 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1036 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:554 +#: ../../godmode/agentes/agent_wizard.snmp_explorer.php:1169 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:865 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_explorer.php:1144 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:922 msgid "Modules list is empty" msgstr "モジュール一覧が空です" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:178 -#: ../../godmode/massive/massive_add_action_alerts.php:116 -#: ../../godmode/massive/massive_add_tags.php:38 -#: ../../godmode/massive/massive_delete_action_alerts.php:119 -#: ../../godmode/massive/massive_delete_tags.php:102 -#: ../../godmode/massive/massive_edit_modules.php:1361 -#: ../../godmode/reporting/visual_console_builder.php:488 -#: ../../include/functions_visual_map.php:2644 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:573 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:224 +#: ../../godmode/massive/massive_add_action_alerts.php:122 +#: ../../godmode/massive/massive_delete_action_alerts.php:129 +#: ../../godmode/massive/massive_edit_modules.php:1865 +#: ../../godmode/reporting/visual_console_builder.php:579 +#: ../../include/functions_visual_map.php:2763 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:872 #: ../../enterprise/include/functions_massive.php:15 msgid "No modules selected" msgstr "モジュールが選択されていません。" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:370 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:359 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:411 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 msgid "Successfully modules created" msgstr "モジュールを作成しました。" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:374 -#: ../../godmode/agentes/configurar_agente.php:289 -#: ../../godmode/agentes/configurar_agente.php:644 -#: ../../godmode/agentes/planned_downtime.editor.php:371 -#: ../../godmode/alerts/alert_actions.php:185 -#: ../../godmode/alerts/alert_commands.php:312 -#: ../../godmode/alerts/alert_list.php:104 -#: ../../godmode/alerts/alert_special_days.php:149 -#: ../../godmode/alerts/configure_alert_template.php:122 -#: ../../godmode/alerts/configure_alert_template.php:435 -#: ../../godmode/modules/manage_nc_groups.php:74 -#: ../../godmode/modules/manage_network_components.php:162 -#: ../../godmode/modules/manage_network_components.php:256 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2646 -#: ../../godmode/setup/gis.php:47 ../../godmode/setup/news.php:57 -#: ../../godmode/users/configure_user.php:256 -#: ../../include/functions_planned_downtimes.php:110 -#: ../../include/functions_planned_downtimes.php:727 -#: ../../operation/agentes/pandora_networkmap.php:112 -#: ../../operation/agentes/pandora_networkmap.php:305 -#: ../../enterprise/extensions/ipam/ipam_action.php:92 -#: ../../enterprise/extensions/ipam/ipam_action.php:100 -#: ../../enterprise/godmode/alerts/alert_events.php:350 -#: ../../enterprise/godmode/modules/local_components.php:107 -#: ../../enterprise/godmode/modules/local_components.php:247 -#: ../../enterprise/godmode/policies/policies.php:128 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:363 -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:74 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:36 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:87 -#: ../../enterprise/godmode/servers/manage_export.php:105 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:108 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:216 -#: ../../enterprise/operation/agentes/transactional_map.php:87 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:416 +#: ../../godmode/agentes/configurar_agente.php:351 +#: ../../godmode/agentes/configurar_agente.php:774 +#: ../../godmode/agentes/planned_downtime.editor.php:510 +#: ../../godmode/alerts/alert_commands.php:326 +#: ../../godmode/alerts/alert_list.php:163 +#: ../../godmode/alerts/alert_special_days.php:159 +#: ../../godmode/alerts/configure_alert_template.php:150 +#: ../../godmode/alerts/configure_alert_template.php:477 +#: ../../godmode/modules/manage_nc_groups.php:83 +#: ../../godmode/modules/manage_network_components.php:201 +#: ../../godmode/modules/manage_network_components.php:306 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4489 +#: ../../godmode/setup/gis.php:55 ../../godmode/setup/news.php:63 +#: ../../godmode/users/configure_user.php:338 +#: ../../include/functions_alerts.php:2825 +#: ../../include/functions_planned_downtimes.php:112 +#: ../../include/functions_planned_downtimes.php:829 +#: ../../operation/agentes/pandora_networkmap.php:126 +#: ../../operation/agentes/pandora_networkmap.php:367 +#: ../../enterprise/extensions/ipam/ipam_action.php:129 +#: ../../enterprise/extensions/ipam/ipam_action.php:138 +#: ../../enterprise/godmode/alerts/alert_events.php:398 +#: ../../enterprise/godmode/modules/local_components.php:123 +#: ../../enterprise/godmode/modules/local_components.php:270 +#: ../../enterprise/godmode/policies/policies.php:209 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:385 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:38 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:78 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:255 +#: ../../enterprise/operation/agentes/transactional_map.php:109 msgid "Could not be created" msgstr "作成に失敗しました。" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:380 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:369 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1855 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1955 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2428 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2544 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2633 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2844 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:422 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:391 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2055 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2155 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2644 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2763 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2854 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3049 msgid "Another module already exists with the same name" msgstr "同じ名前のモジュールが既に存在します" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:383 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:372 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:426 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 msgid "Some required fields are missed" msgstr "必須フィールドが設定されていません" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:383 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:372 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:426 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:395 msgid "name" msgstr "名前" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:388 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:377 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:432 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:401 msgid "Processing error" msgstr "処理エラー" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:505 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:491 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:496 +msgid "" +"In order to use remote executions you need to enable remote execution in " +"satellite server" +msgstr "リモート実行を使用するには、サテライトサーバーでリモート実行を有効にする必要があります" + +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:571 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:523 msgid "Unable to do SNMP walk" msgstr "snmpwalk を実行できません。" -#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:540 -#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:525 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:606 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:409 +#: ../../enterprise/godmode/policies/policy_agent_wizard.snmp_interfaces_explorer.php:557 msgid "Interfaces" msgstr "インタフェース" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:145 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:144 +#: ../../godmode/agentes/agent_wizard.snmp_interfaces_explorer.php:612 +msgid "When selecting interfaces" +msgstr "インタフェース選択時" + +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:200 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:234 #, php-format msgid "Free space on %s" msgstr "%s の空き容量" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:247 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:246 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:353 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:383 #, php-format msgid "%s service modules created succesfully" msgstr "%s 個のサービスモジュールを作成しました" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:250 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:249 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:360 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:390 #, php-format msgid "Error creating %s service modules" msgstr "%s 個のサービスモジュール作成エラー" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:255 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:254 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:369 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:399 #, php-format msgid "%s process modules created succesfully" msgstr "%s 個のプロセスモジュールを作成しました" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:258 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:257 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:376 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:406 #, php-format msgid "Error creating %s process modules" msgstr "%s 個のプロセスモジュール作成エラー" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:263 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:262 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:385 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:415 #, php-format msgid "%s disk space modules created succesfully" msgstr "%s 個のディスクスペースモジュールを作成しました" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:266 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:265 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:392 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:422 #, php-format msgid "Error creating %s disk space modules" msgstr "%s 個のディスクスペースモジュール作成エラー" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:271 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:270 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:401 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:431 #, php-format msgid "%s modules created from components succesfully" msgstr "コンポーネントから %s 個のモジュールを作成しました" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:274 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:273 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:408 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:438 #, php-format msgid "Error creating %s modules from components" msgstr "コンポーネントから %s 個のモジュールの作成エラー" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:300 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:450 #: ../../godmode/agentes/module_manager_editor_wmi.php:47 -#: ../../godmode/modules/manage_network_components_form_wmi.php:42 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:299 +#: ../../godmode/modules/manage_network_components_form_wmi.php:41 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:485 msgid "Namespace" msgstr "名前空間" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:304 -#: ../../godmode/agentes/module_manager_editor_wmi.php:54 -#: ../../godmode/massive/massive_edit_modules.php:552 -#: ../../godmode/modules/manage_network_components_form_wmi.php:48 -#: ../../enterprise/godmode/agentes/inventory_manager.php:188 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:303 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:201 -msgid "Username" -msgstr "ユーザ名" - -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:337 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:336 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:518 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:562 msgid "WMI Explore" msgstr "WMIエクスプローラ" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:341 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:340 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:526 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:571 msgid "Unable to do WMI explorer" msgstr "WMIエクスプローラを実行できません" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:367 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:366 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:558 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:621 msgid "WMI components" msgstr "WMIコンポーネント" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:380 -#: ../../godmode/agentes/planned_downtime.editor.php:721 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:379 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:580 +#: ../../godmode/agentes/planned_downtime.editor.php:938 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:643 msgid "Filter by group" msgstr "グループでフィルタする" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:400 -#: ../../godmode/agentes/module_manager_editor_common.php:81 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:399 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:648 +#: ../../godmode/agentes/module_manager_editor_common.php:108 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:84 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:710 msgid "No component was found" msgstr "コンポーネントが見つかりません。" -#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:479 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1713 -#: ../../enterprise/dashboard/widgets/service_map.php:46 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:22 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 -#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:478 -#: ../../enterprise/godmode/services/services.elements.php:347 -#: ../../enterprise/godmode/services/services.elements.php:380 -#: ../../enterprise/include/functions_visual_map_editor.php:17 -#: ../../enterprise/include/functions_visual_map_editor.php:24 -#: ../../enterprise/include/functions_visual_map_editor.php:47 -#: ../../enterprise/include/functions_visual_map.php:496 -#: ../../enterprise/include/functions_reporting.php:4843 -#: ../../enterprise/include/functions_reporting.php:5144 -#: ../../enterprise/include/functions_reporting_pdf.php:2120 -#: ../../enterprise/include/functions_services.php:1547 +#: ../../godmode/agentes/agent_wizard.wmi_explorer.php:789 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 +#: ../../enterprise/dashboard/widgets/service_map.php:54 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:164 +#: ../../enterprise/godmode/policies/policy_agent_wizard.wmi_explorer.php:846 +#: ../../enterprise/godmode/services/services.elements.php:620 +#: ../../enterprise/godmode/services/services.elements.php:649 +#: ../../enterprise/godmode/services/services.elements.php:657 +#: ../../enterprise/godmode/services/services.elements.php:726 +#: ../../enterprise/include/functions_visual_map.php:538 +#: ../../enterprise/include/functions_visual_map_editor.php:20 +#: ../../enterprise/include/functions_visual_map_editor.php:33 +#: ../../enterprise/include/functions_visual_map_editor.php:64 +#: ../../enterprise/include/functions_services.php:2523 +#: ../../enterprise/include/functions_reporting.php:5704 msgid "Service" msgstr "サービス" -#: ../../godmode/agentes/configurar_agente.php:200 -#: ../../godmode/agentes/configurar_agente.php:780 +#: ../../godmode/agentes/configurar_agente.php:230 +#: ../../godmode/agentes/configurar_agente.php:938 msgid "No agent alias specified" msgstr "エージェントの別名が定義されていません" -#: ../../godmode/agentes/configurar_agente.php:291 +#: ../../godmode/agentes/configurar_agente.php:353 +#: ../../include/functions_api.php:1639 msgid "Could not be created, because name already exists" msgstr "名前がすでに存在するため、作成できませんでした。" -#: ../../godmode/agentes/configurar_agente.php:304 -#: ../../godmode/agentes/modificar_agente.php:53 -#: ../../godmode/agentes/modificar_agente.php:582 -#: ../../godmode/reporting/visual_console_builder.php:689 -#: ../../godmode/servers/manage_recontask.php:32 -#: ../../godmode/setup/setup_visuals.php:166 -#: ../../godmode/setup/setup_visuals.php:186 -#: ../../godmode/setup/setup_visuals.php:205 -#: ../../godmode/setup/setup_visuals.php:221 -#: ../../godmode/setup/setup_visuals.php:232 -#: ../../godmode/setup/setup_visuals.php:339 -#: ../../operation/agentes/estado_agente.php:640 -#: ../../operation/visual_console/pure_ajax.php:130 -#: ../../operation/visual_console/render_view.php:133 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:79 -#: ../../enterprise/meta/screens/screens.visualmap.php:89 -#: ../../enterprise/meta/screens/screens.visualmap.php:105 -#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../godmode/agentes/configurar_agente.php:355 +#: ../../include/functions_api.php:1641 +msgid "Could not be created, because IP already exists" +msgstr "IP はすでに存在するため作成できません" + +#: ../../godmode/agentes/configurar_agente.php:369 +#: ../../godmode/agentes/modificar_agente.php:54 +#: ../../godmode/agentes/modificar_agente.php:618 +#: ../../godmode/agentes/modificar_agente.php:622 +#: ../../godmode/reporting/visual_console_builder.php:792 +#: ../../godmode/setup/setup_visuals.php:159 +#: ../../godmode/setup/setup_visuals.php:224 +#: ../../godmode/setup/setup_visuals.php:278 +#: ../../godmode/setup/setup_visuals.php:283 +#: ../../godmode/setup/setup_visuals.php:322 +#: ../../godmode/setup/setup_visuals.php:359 +#: ../../godmode/setup/setup_visuals.php:381 +#: ../../godmode/setup/setup_visuals.php:407 +#: ../../godmode/setup/setup_visuals.php:427 +#: ../../godmode/setup/setup_visuals.php:447 +#: ../../godmode/setup/setup_visuals.php:467 +#: ../../godmode/setup/setup_visuals.php:617 +#: ../../operation/agentes/estado_agente.php:793 +#: ../../operation/agentes/estado_agente.php:795 +#: ../../operation/agentes/status_monitor.php:50 +#: ../../operation/agentes/ver_agente.php:1550 +#: ../../operation/visual_console/legacy_view.php:167 +#: ../../operation/visual_console/pure_ajax.php:164 +#: ../../operation/visual_console/view.php:132 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:90 +#: ../../enterprise/meta/screens/screens.visualmap.php:100 +#: ../../enterprise/meta/screens/screens.visualmap.php:119 +#: ../../enterprise/operation/agentes/policy_view.php:53 msgid "View" msgstr "表示" -#: ../../godmode/agentes/configurar_agente.php:316 -#: ../../godmode/agentes/configurar_agente.php:543 ../../godmode/menu.php:231 -#: ../../godmode/menu.php:238 ../../operation/agentes/estado_agente.php:163 -#: ../../operation/gis_maps/render_view.php:119 -#: ../../enterprise/godmode/policies/configure_policy.php:38 -#: ../../enterprise/include/functions_policies.php:3382 +#: ../../godmode/agentes/configurar_agente.php:380 +#: ../../godmode/agentes/configurar_agente.php:600 ../../godmode/menu.php:272 +#: ../../godmode/menu.php:279 ../../operation/agentes/estado_agente.php:179 +#: ../../operation/gis_maps/render_view.php:160 +#: ../../enterprise/godmode/policies/configure_policy.php:37 +#: ../../enterprise/godmode/servers/HA_cluster.php:52 +#: ../../enterprise/include/functions_policies.php:3711 msgid "Setup" -msgstr "設定" +msgstr "セットアップ" -#: ../../godmode/agentes/configurar_agente.php:345 ../../godmode/menu.php:101 +#: ../../godmode/agentes/configurar_agente.php:406 ../../godmode/menu.php:143 msgid "Module templates" msgstr "モジュールテンプレート" -#: ../../godmode/agentes/configurar_agente.php:397 -#: ../../operation/agentes/ver_agente.php:1102 +#: ../../godmode/agentes/configurar_agente.php:457 +#: ../../operation/agentes/ver_agente.php:1221 msgid "GIS data" msgstr "GIS データ" -#: ../../godmode/agentes/configurar_agente.php:408 -#: ../../enterprise/godmode/policies/policy.php:58 -#: ../../enterprise/include/functions_policies.php:3400 +#: ../../godmode/agentes/configurar_agente.php:467 +#: ../../enterprise/godmode/policies/policy.php:82 +#: ../../enterprise/include/functions_policies.php:3729 msgid "Agent wizard" msgstr "エージェントウィザード" -#: ../../godmode/agentes/configurar_agente.php:415 -#: ../../godmode/agentes/configurar_agente.php:585 -#: ../../godmode/setup/snmp_wizard.php:30 -#: ../../enterprise/include/functions_policies.php:3407 +#: ../../godmode/agentes/configurar_agente.php:472 +#: ../../godmode/agentes/configurar_agente.php:659 +#: ../../godmode/setup/snmp_wizard.php:31 +#: ../../enterprise/include/functions_policies.php:3734 msgid "SNMP Wizard" msgstr "SNMPウィザード" -#: ../../godmode/agentes/configurar_agente.php:420 -#: ../../godmode/agentes/configurar_agente.php:588 -#: ../../enterprise/include/functions_policies.php:3412 +#: ../../godmode/agentes/configurar_agente.php:475 +#: ../../godmode/agentes/configurar_agente.php:665 +#: ../../enterprise/include/functions_policies.php:3737 msgid "SNMP Interfaces wizard" msgstr "SNMP インタフェースウィザード" -#: ../../godmode/agentes/configurar_agente.php:425 -#: ../../godmode/agentes/configurar_agente.php:591 -#: ../../enterprise/include/functions_policies.php:3417 +#: ../../godmode/agentes/configurar_agente.php:478 +#: ../../godmode/agentes/configurar_agente.php:671 +#: ../../enterprise/include/functions_policies.php:3740 msgid "WMI Wizard" msgstr "WMIウィザード" -#: ../../godmode/agentes/configurar_agente.php:546 -#: ../../enterprise/godmode/agentes/collections.php:229 -#: ../../enterprise/include/functions_groups.php:75 -#: ../../enterprise/operation/agentes/ver_agente.php:190 +#: ../../godmode/agentes/configurar_agente.php:606 +#: ../../enterprise/godmode/agentes/collections.php:321 +#: ../../enterprise/include/functions_groups.php:81 +#: ../../enterprise/meta/advanced/collections.php:319 +#: ../../enterprise/operation/agentes/ver_agente.php:201 msgid "Collection" msgstr "コレクション" -#: ../../godmode/agentes/configurar_agente.php:550 -#: ../../include/functions_reporting.php:1679 -#: ../../include/functions_reports.php:629 -#: ../../include/functions_reports.php:630 -#: ../../include/functions_reports.php:632 +#: ../../godmode/agentes/configurar_agente.php:611 +#: ../../include/functions_reports.php:841 +#: ../../include/functions_reports.php:842 +#: ../../include/functions_reports.php:846 +#: ../../include/functions_reporting.php:2213 #: ../../enterprise/godmode/agentes/configurar_agente.php:33 -#: ../../enterprise/include/functions_reporting_csv.php:314 -#: ../../enterprise/operation/agentes/ver_agente.php:174 -#: ../../enterprise/operation/inventory/inventory.php:112 +#: ../../enterprise/godmode/policies/policies.php:555 +#: ../../enterprise/include/functions_reporting_csv.php:661 +#: ../../enterprise/operation/agentes/ver_agente.php:184 +#: ../../enterprise/operation/inventory/inventory.php:126 #: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:24 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:23 msgid "Inventory" msgstr "インベントリ" -#: ../../godmode/agentes/configurar_agente.php:554 -#: ../../enterprise/godmode/agentes/configurar_agente.php:49 -#: ../../enterprise/godmode/policies/policy.php:54 -#: ../../enterprise/include/functions_policies.php:3495 +#: ../../godmode/agentes/configurar_agente.php:617 +#: ../../enterprise/godmode/agentes/configurar_agente.php:50 +#: ../../enterprise/godmode/policies/policy.php:71 +#: ../../enterprise/include/functions_policies.php:3808 msgid "Agent plugins" msgstr "エージェントプラグイン" -#: ../../godmode/agentes/configurar_agente.php:565 -#: ../../godmode/events/custom_events.php:95 -#: ../../godmode/events/custom_events.php:161 -#: ../../include/functions_events.php:43 -#: ../../include/functions_events.php:991 -#: ../../include/functions_events.php:3672 -#: ../../include/functions_snmp.php:296 -#: ../../operation/agentes/estado_monitores.php:462 -#: ../../operation/events/events.build_table.php:204 -#: ../../operation/events/events_rss.php:185 -#: ../../operation/snmpconsole/snmp_view.php:439 -#: ../../operation/snmpconsole/snmp_view.php:735 -#: ../../operation/snmpconsole/snmp_view.php:1033 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:169 -#: ../../enterprise/meta/include/functions_events_meta.php:82 +#: ../../godmode/agentes/configurar_agente.php:633 +#: ../../godmode/events/custom_events.php:104 ../../include/functions.php:3788 +#: ../../include/functions_snmp.php:324 ../../include/functions_events.php:198 +#: ../../include/functions_events.php:259 +#: ../../include/functions_events.php:2471 +#: ../../include/functions_events.php:6057 +#: ../../include/functions_events.php.orig:196 +#: ../../include/functions_events.php.orig:257 +#: ../../include/functions_events.php.orig:2377 +#: ../../include/functions_events.php.orig:5961 +#: ../../operation/agentes/estado_monitores.php:513 +#: ../../operation/events/events.build_table.php:253 +#: ../../operation/snmpconsole/snmp_view.php:519 +#: ../../operation/snmpconsole/snmp_view.php:831 +#: ../../operation/snmpconsole/snmp_view.php:1165 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +#: ../../enterprise/meta/include/functions_events_meta.php:94 msgid "Alert" msgstr "アラート" -#: ../../godmode/agentes/configurar_agente.php:569 ../../godmode/menu.php:151 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:140 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:252 -#: ../../enterprise/include/functions_reporting.php:82 -#: ../../enterprise/include/functions_reporting.php:6717 -#: ../../enterprise/include/functions_reporting.php:6741 -#: ../../enterprise/include/functions_reporting.php:6795 -#: ../../enterprise/meta/include/functions_alerts_meta.php:107 -#: ../../enterprise/meta/include/functions_alerts_meta.php:125 +#: ../../godmode/agentes/configurar_agente.php:639 ../../godmode/menu.php:197 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:254 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:159 +#: ../../enterprise/include/functions_reporting.php:96 +#: ../../enterprise/include/functions_reporting.php:7307 +#: ../../enterprise/include/functions_reporting.php:7335 +#: ../../enterprise/include/functions_reporting.php:7396 +#: ../../enterprise/meta/include/functions_alerts_meta.php:121 +#: ../../enterprise/meta/include/functions_alerts_meta.php:140 msgid "Templates" msgstr "テンプレート" -#: ../../godmode/agentes/configurar_agente.php:573 +#: ../../godmode/agentes/configurar_agente.php:644 msgid "Gis" msgstr "GIS" -#: ../../godmode/agentes/configurar_agente.php:599 +#: ../../godmode/agentes/configurar_agente.php:686 msgid "SNMP explorer" msgstr "SNMPエクスプローラ" -#: ../../godmode/agentes/configurar_agente.php:614 +#: ../../godmode/agentes/configurar_agente.php:716 +#: ../../godmode/agentes/configurar_agente.php:738 ../../godmode/menu.php:103 +msgid "Resources" +msgstr "リソース" + +#: ../../godmode/agentes/configurar_agente.php:717 +#: ../../godmode/agentes/configurar_agente.php:739 ../../godmode/menu.php:71 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:216 +msgid "Manage agents" +msgstr "エージェント管理" + +#: ../../godmode/agentes/configurar_agente.php:726 msgid "Agent manager" msgstr "エージェントマネージャ" -#: ../../godmode/agentes/configurar_agente.php:637 -#: ../../godmode/servers/modificar_server.php:155 +#: ../../godmode/agentes/configurar_agente.php:740 +#: ../../godmode/agentes/modificar_agente.php:726 +#: ../../operation/agentes/estado_agente.php:877 +#: ../../operation/agentes/estado_agente.php:888 +#: ../../operation/snmpconsole/snmp_statistics.php:155 +#: ../../operation/snmpconsole/snmp_view.php:901 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:211 +msgid "Create agent" +msgstr "エージェント作成" + +#: ../../godmode/agentes/configurar_agente.php:766 +#: ../../godmode/servers/modificar_server.php:180 msgid "Conf file deleted successfully" msgstr "conf ファイルを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:638 -#: ../../godmode/servers/modificar_server.php:156 +#: ../../godmode/agentes/configurar_agente.php:767 +#: ../../godmode/servers/modificar_server.php:181 msgid "Could not delete conf file" msgstr "conf ファイルの削除に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:648 -#: ../../godmode/agentes/planned_downtime.editor.php:380 -#: ../../godmode/alerts/alert_actions.php:184 -#: ../../godmode/alerts/alert_commands.php:311 -#: ../../godmode/alerts/alert_list.php:104 -#: ../../godmode/alerts/alert_special_days.php:148 -#: ../../godmode/alerts/configure_alert_template.php:434 -#: ../../godmode/modules/manage_nc_groups.php:73 -#: ../../godmode/setup/gis.php:45 ../../godmode/setup/links.php:41 -#: ../../godmode/setup/news.php:56 -#: ../../godmode/snmpconsole/snmp_alert.php:247 -#: ../../godmode/snmpconsole/snmp_filters.php:110 -#: ../../godmode/users/configure_user.php:255 -#: ../../godmode/users/profile_list.php:241 -#: ../../include/functions_planned_downtimes.php:113 -#: ../../include/functions_planned_downtimes.php:731 -#: ../../enterprise/extensions/cron/main.php:91 -#: ../../enterprise/extensions/cron/main.php:123 -#: ../../enterprise/extensions/cron/main.php:183 -#: ../../enterprise/extensions/ipam/ipam_action.php:96 -#: ../../enterprise/godmode/alerts/alert_events.php:350 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:35 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:86 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:129 -#: ../../enterprise/godmode/servers/manage_export.php:105 -#: ../../enterprise/godmode/servers/manage_export.php:114 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:107 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:215 -#: ../../enterprise/operation/agentes/transactional_map.php:86 +#: ../../godmode/agentes/configurar_agente.php:779 +#: ../../godmode/agentes/planned_downtime.editor.php:517 +#: ../../godmode/alerts/alert_commands.php:339 +#: ../../godmode/alerts/alert_list.php:176 +#: ../../godmode/alerts/alert_special_days.php:164 +#: ../../godmode/alerts/configure_alert_template.php:486 +#: ../../godmode/modules/manage_nc_groups.php:82 ../../godmode/setup/gis.php:53 +#: ../../godmode/setup/links.php:41 ../../godmode/setup/news.php:62 +#: ../../godmode/snmpconsole/snmp_alert.php:258 +#: ../../godmode/snmpconsole/snmp_filters.php:143 +#: ../../godmode/users/configure_user.php:337 +#: ../../godmode/users/profile_list.php:222 +#: ../../include/functions_alerts.php:2824 +#: ../../include/functions_planned_downtimes.php:114 +#: ../../include/functions_planned_downtimes.php:834 +#: ../../enterprise/extensions/ipam/ipam_action.php:135 +#: ../../enterprise/godmode/alerts/alert_events.php:398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:37 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:77 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:108 +#: ../../enterprise/godmode/servers/manage_export.php:112 +#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:122 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:207 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:220 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:268 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:281 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:361 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:378 +#: ../../enterprise/meta/advanced/cron_main.php:143 +#: ../../enterprise/meta/advanced/cron_main.php:187 +#: ../../enterprise/meta/advanced/cron_main.php:275 +#: ../../enterprise/meta/advanced/links.php:46 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:254 +#: ../../enterprise/operation/agentes/transactional_map.php:108 msgid "Successfully created" msgstr "作成しました。" -#: ../../godmode/agentes/configurar_agente.php:678 -#: ../../godmode/agentes/configurar_agente.php:683 +#: ../../godmode/agentes/configurar_agente.php:811 +#: ../../godmode/agentes/configurar_agente.php:815 msgid "No data to normalize" msgstr "正規化するデータがありません。" -#: ../../godmode/agentes/configurar_agente.php:687 +#: ../../godmode/agentes/configurar_agente.php:820 #, php-format msgid "Deleted data above %f" msgstr "%f を超えるデータを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:688 +#: ../../godmode/agentes/configurar_agente.php:821 #, php-format msgid "Error normalizing module %s" msgstr "モジュール %s において正規化に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:836 +#: ../../godmode/agentes/configurar_agente.php:948 +#, php-format +msgid "The group id %d is incorrect." +msgstr "グループ ID %d は不正です。" + +#: ../../godmode/agentes/configurar_agente.php:950 +msgid "Duplicate main IP address" +msgstr "メイン IP が重複しています" + +#: ../../godmode/agentes/configurar_agente.php:1006 msgid "There was a problem updating the agent" msgstr "エージェントの更新に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:899 -#: ../../godmode/agentes/planned_downtime.editor.php:383 -#: ../../godmode/alerts/alert_actions.php:262 -#: ../../godmode/alerts/alert_list.php:196 -#: ../../godmode/alerts/alert_special_days.php:206 -#: ../../godmode/alerts/alert_templates.php:152 -#: ../../godmode/alerts/configure_alert_command.php:93 -#: ../../godmode/alerts/configure_alert_template.php:447 -#: ../../godmode/events/event_edit_filter.php:173 -#: ../../godmode/massive/massive_edit_modules.php:162 -#: ../../godmode/modules/manage_nc_groups.php:98 -#: ../../godmode/netflow/nf_edit_form.php:131 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:58 ../../godmode/setup/news.php:87 -#: ../../godmode/snmpconsole/snmp_alert.php:318 -#: ../../godmode/snmpconsole/snmp_filters.php:80 -#: ../../godmode/users/profile_list.php:223 -#: ../../include/functions_planned_downtimes.php:125 -#: ../../operation/incidents/incident.php:110 -#: ../../operation/snmpconsole/snmp_view.php:134 -#: ../../enterprise/extensions/ipam/ipam_action.php:131 -#: ../../enterprise/extensions/ipam/ipam_massive.php:41 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:98 -#: ../../enterprise/godmode/alerts/alert_events.php:374 -#: ../../enterprise/godmode/alerts/alert_events_list.php:94 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:158 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:104 -#: ../../enterprise/godmode/policies/policy_modules.php:1069 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:66 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:52 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:120 -#: ../../enterprise/operation/agentes/transactional_map.php:117 +#: ../../godmode/agentes/configurar_agente.php:1114 +#: ../../godmode/agentes/planned_downtime.editor.php:519 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/alerts/alert_list.php:92 +#: ../../godmode/alerts/alert_list.php:304 +#: ../../godmode/alerts/alert_special_days.php:232 +#: ../../godmode/alerts/alert_templates.php:162 +#: ../../godmode/alerts/configure_alert_command.php:112 +#: ../../godmode/alerts/configure_alert_template.php:504 +#: ../../godmode/events/event_edit_filter.php:191 +#: ../../godmode/massive/massive_edit_modules.php:166 +#: ../../godmode/modules/manage_nc_groups.php:111 +#: ../../godmode/netflow/nf_edit_form.php:139 ../../godmode/setup/gis.php:45 +#: ../../godmode/setup/links.php:60 ../../godmode/setup/news.php:99 +#: ../../godmode/snmpconsole/snmp_alert.php:380 +#: ../../godmode/snmpconsole/snmp_filters.php:89 +#: ../../godmode/users/profile_list.php:205 +#: ../../include/functions_alerts.php:2824 +#: ../../include/functions_planned_downtimes.php:124 +#: ../../operation/incidents/incident.php:157 +#: ../../operation/snmpconsole/snmp_view.php:137 +#: ../../enterprise/extensions/ipam/ipam_action.php:188 +#: ../../enterprise/extensions/ipam/ipam_massive.php:47 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:104 +#: ../../enterprise/godmode/alerts/alert_events.php:426 +#: ../../enterprise/godmode/alerts/alert_events_list.php:99 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:175 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:105 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:288 +#: ../../enterprise/godmode/policies/policy_modules.php:1264 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:59 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:126 +#: ../../enterprise/meta/advanced/links.php:67 +#: ../../enterprise/operation/agentes/transactional_map.php:140 msgid "Successfully updated" msgstr "更新しました。" -#: ../../godmode/agentes/configurar_agente.php:921 +#: ../../godmode/agentes/configurar_agente.php:1140 msgid "There was a problem loading the agent" msgstr "エージェントのロードに失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:1380 +#: ../../godmode/agentes/configurar_agente.php:1625 msgid "" "There was a problem updating module. Another module already exists with the " "same name." msgstr "モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。" -#: ../../godmode/agentes/configurar_agente.php:1383 +#: ../../godmode/agentes/configurar_agente.php:1629 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名前)" -#: ../../godmode/agentes/configurar_agente.php:1386 +#: ../../godmode/agentes/configurar_agente.php:1633 msgid "There was a problem updating module. \"No change\"" msgstr "モジュールの更新で問題が発生しました。\"変更点がありません\"" -#: ../../godmode/agentes/configurar_agente.php:1391 +#: ../../godmode/agentes/configurar_agente.php:1639 msgid "There was a problem updating module. Processing error" msgstr "モジュールの更新で問題が発生しました。処理エラー" -#: ../../godmode/agentes/configurar_agente.php:1411 +#: ../../godmode/agentes/configurar_agente.php:1668 msgid "Module successfully updated" msgstr "モジュールの更新が完了しました。" -#: ../../godmode/agentes/configurar_agente.php:1542 +#: ../../godmode/agentes/configurar_agente.php:1813 msgid "" "There was a problem adding module. Another module already exists with the " "same name." msgstr "モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。" -#: ../../godmode/agentes/configurar_agente.php:1545 +#: ../../godmode/agentes/configurar_agente.php:1817 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名前)" -#: ../../godmode/agentes/configurar_agente.php:1550 +#: ../../godmode/agentes/configurar_agente.php:1823 msgid "There was a problem adding module. Processing error" msgstr "モジュールの追加で問題が発生しました。処理エラー" -#: ../../godmode/agentes/configurar_agente.php:1568 -#: ../../godmode/reporting/graph_builder.php:277 +#: ../../godmode/agentes/configurar_agente.php:1852 +#: ../../godmode/reporting/graph_builder.php:311 msgid "Module added successfully" msgstr "モジュールを追加しました。" -#: ../../godmode/agentes/configurar_agente.php:1687 +#: ../../godmode/agentes/configurar_agente.php:1907 +#: ../../godmode/agentes/configurar_agente.php:2188 +#: ../../godmode/agentes/modificar_agente.php:129 +#: ../../godmode/alerts/alert_list.php:356 +#: ../../godmode/massive/massive_enable_disable_alerts.php:87 +#: ../../godmode/users/user_list.php:242 +#: ../../include/ajax/alert_list.ajax.php:91 +#: ../../enterprise/godmode/alerts/alert_events_list.php:252 +#: ../../enterprise/godmode/policies/policy_alerts.php:94 +#: ../../enterprise/godmode/policies/policy_modules.php:491 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:620 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1104 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:288 +msgid "Successfully enabled" +msgstr "有効にしました。" + +#: ../../godmode/agentes/configurar_agente.php:1908 +#: ../../godmode/agentes/configurar_agente.php:2189 +#: ../../godmode/agentes/modificar_agente.php:130 +#: ../../godmode/alerts/alert_list.php:357 +#: ../../godmode/massive/massive_enable_disable_alerts.php:87 +#: ../../include/ajax/alert_list.ajax.php:93 +#: ../../enterprise/godmode/alerts/alert_events_list.php:253 +#: ../../enterprise/godmode/policies/policy_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_modules.php:492 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:621 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1105 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:145 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:289 +msgid "Could not be enabled" +msgstr "有効にできませんでした。" + +#: ../../godmode/agentes/configurar_agente.php:1948 +#: ../../godmode/agentes/configurar_agente.php:2207 +#: ../../godmode/agentes/modificar_agente.php:152 +#: ../../godmode/alerts/alert_list.php:387 +#: ../../godmode/massive/massive_enable_disable_alerts.php:105 +#: ../../godmode/users/user_list.php:236 +#: ../../include/ajax/alert_list.ajax.php:112 +#: ../../enterprise/godmode/alerts/alert_events_list.php:272 +#: ../../enterprise/godmode/policies/policy_alerts.php:115 +#: ../../enterprise/godmode/policies/policy_modules.php:507 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:612 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1096 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:153 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:305 +msgid "Successfully disabled" +msgstr "無効にしました。" + +#: ../../godmode/agentes/configurar_agente.php:1949 +#: ../../godmode/agentes/configurar_agente.php:2208 +#: ../../godmode/agentes/modificar_agente.php:153 +#: ../../godmode/alerts/alert_list.php:388 +#: ../../godmode/massive/massive_enable_disable_alerts.php:105 +#: ../../include/ajax/alert_list.ajax.php:114 +#: ../../enterprise/godmode/alerts/alert_events_list.php:273 +#: ../../enterprise/godmode/policies/policy_alerts.php:116 +#: ../../enterprise/godmode/policies/policy_modules.php:508 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:613 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1097 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:154 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:306 +msgid "Could not be disabled" +msgstr "無効にできませんでした。" + +#: ../../godmode/agentes/configurar_agente.php:2112 msgid "There was a problem deleting the module" msgstr "モジュールの削除に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:1690 +#: ../../godmode/agentes/configurar_agente.php:2116 msgid "Module deleted succesfully" msgstr "モジュールを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:1704 -#: ../../enterprise/godmode/policies/policy_modules.php:1174 +#: ../../godmode/agentes/configurar_agente.php:2133 +#: ../../enterprise/godmode/policies/policy_modules.php:1389 #, php-format msgid "copy of %s" msgstr "%s のコピー" -#: ../../godmode/agentes/configurar_agente.php:1714 -#: ../../enterprise/godmode/policies/policy_modules.php:1186 +#: ../../godmode/agentes/configurar_agente.php:2147 +#: ../../enterprise/godmode/policies/policy_modules.php:1407 #, php-format msgid "copy of %s (%d)" msgstr "%s のコピー (%d)" -#: ../../godmode/agentes/configurar_agente.php:1747 -#: ../../godmode/agentes/modificar_agente.php:126 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -#: ../../godmode/users/user_list.php:208 -#: ../../include/ajax/alert_list.ajax.php:86 -#: ../../enterprise/godmode/alerts/alert_events_list.php:221 -#: ../../enterprise/godmode/policies/policy_alerts.php:88 -#: ../../enterprise/godmode/policies/policy_modules.php:422 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:123 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:237 -msgid "Successfully enabled" -msgstr "有効にしました。" +#: ../../godmode/agentes/configurar_agente.php:2243 +#: ../../include/functions_api.php:10117 +#, php-format +msgid "Save by %s Console" +msgstr "%s コンソールでの保存" -#: ../../godmode/agentes/configurar_agente.php:1747 -#: ../../godmode/agentes/modificar_agente.php:126 -#: ../../godmode/alerts/alert_list.php:230 -#: ../../godmode/massive/massive_enable_disable_alerts.php:78 -#: ../../include/ajax/alert_list.ajax.php:88 -#: ../../enterprise/godmode/alerts/alert_events_list.php:222 -#: ../../enterprise/godmode/policies/policy_alerts.php:88 -#: ../../enterprise/godmode/policies/policy_modules.php:422 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:124 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:238 -msgid "Could not be enabled" -msgstr "有効にできませんでした。" +#: ../../godmode/agentes/configurar_agente.php:2261 +#: ../../include/functions_api.php:10118 +#, php-format +msgid "Update by %s Console" +msgstr "%s コンソールでの更新" -#: ../../godmode/agentes/configurar_agente.php:1762 -#: ../../godmode/agentes/modificar_agente.php:146 -#: ../../godmode/alerts/alert_list.php:247 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -#: ../../godmode/users/user_list.php:203 -#: ../../include/ajax/alert_list.ajax.php:102 -#: ../../enterprise/godmode/alerts/alert_events_list.php:238 -#: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:436 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:129 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:248 -msgid "Successfully disabled" -msgstr "無効にしました。" +#: ../../godmode/agentes/configurar_agente.php:2277 +#: ../../include/functions_api.php:10119 +#, php-format +msgid "Insert by %s Console" +msgstr "%s コンソールによる挿入" -#: ../../godmode/agentes/configurar_agente.php:1762 -#: ../../godmode/agentes/modificar_agente.php:146 -#: ../../godmode/alerts/alert_list.php:247 -#: ../../godmode/massive/massive_enable_disable_alerts.php:96 -#: ../../include/ajax/alert_list.ajax.php:104 -#: ../../enterprise/godmode/alerts/alert_events_list.php:239 -#: ../../enterprise/godmode/policies/policy_alerts.php:105 -#: ../../enterprise/godmode/policies/policy_modules.php:436 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:130 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:249 -msgid "Could not be disabled" -msgstr "無効にできませんでした。" - -#: ../../godmode/agentes/configurar_agente.php:1790 -#: ../../include/functions_api.php:7721 -msgid "Save by Pandora Console" -msgstr "Pandora コンソールによる保存" - -#: ../../godmode/agentes/configurar_agente.php:1805 -#: ../../include/functions_api.php:7722 -msgid "Update by Pandora Console" -msgstr "Pandora コンソールによる更新" - -#: ../../godmode/agentes/configurar_agente.php:1818 -#: ../../include/functions_api.php:7723 -msgid "Insert by Pandora Console" -msgstr "Pandora コンソールによる挿入" - -#: ../../godmode/agentes/configurar_agente.php:1872 -#: ../../godmode/agentes/configurar_agente.php:1882 +#: ../../godmode/agentes/configurar_agente.php:2346 +#: ../../godmode/agentes/configurar_agente.php:2358 msgid "Invalid tab specified" msgstr "不正なタブが指定されました" @@ -8156,39 +9082,79 @@ msgstr "不正なタブが指定されました" msgid "Update agent custom field" msgstr "エージェントカスタムフィールドの更新" -#: ../../godmode/agentes/configure_field.php:41 +#: ../../godmode/agentes/configure_field.php:40 msgid "Create agent custom field" msgstr "エージェントカスタムフィールドの作成" +#: ../../godmode/agentes/configure_field.php:52 +#: ../../godmode/agentes/configure_field.php:56 +#: ../../godmode/agentes/configure_field.php:60 +#: ../../godmode/agentes/configure_field.php:64 +msgid "Agent Custom Fields Information" +msgstr "エージェントカスタムフィールド情報" + #: ../../godmode/agentes/configure_field.php:53 +msgid "" +"You cannot set the Password type until you clear the combo values and click " +"on update button." +msgstr "選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定することはできません。" + +#: ../../godmode/agentes/configure_field.php:57 +msgid "" +"You cannot unset the enable combo until you clear the combo values and click " +"on update." +msgstr "選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできません。" + +#: ../../godmode/agentes/configure_field.php:61 +msgid "If you select Enabled combo the Password type will be disabled." +msgstr "有効な設定を選択すると、パスワードタイプは無効になります。" + +#: ../../godmode/agentes/configure_field.php:65 +msgid "If you select Passord type the Enabled combo will be disabled." +msgstr "パスワードを選択すると、有効な設定が無効化されます。" + +#: ../../godmode/agentes/configure_field.php:81 msgid "Pass type" msgstr "パスタイプ" -#: ../../godmode/agentes/configure_field.php:53 +#: ../../godmode/agentes/configure_field.php:82 msgid "" "The fields with pass type enabled will be displayed like html input type " "pass in html" msgstr "パスタイプを有効化すると、html 内の入力パスタイプのように表示されます。" -#: ../../godmode/agentes/configure_field.php:56 -#: ../../godmode/agentes/fields_manager.php:98 -#: ../../operation/agentes/custom_fields.php:61 +#: ../../godmode/agentes/configure_field.php:92 +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../operation/agentes/custom_fields.php:67 msgid "Display on front" msgstr "前面に表示" -#: ../../godmode/agentes/configure_field.php:56 -#: ../../godmode/agentes/fields_manager.php:98 -#: ../../operation/agentes/custom_fields.php:62 +#: ../../godmode/agentes/configure_field.php:93 +#: ../../godmode/agentes/fields_manager.php:120 +#: ../../operation/agentes/custom_fields.php:67 msgid "" "The fields with display on front enabled will be displayed into the agent " "details" msgstr "前面表示が有効になっていると、エージェント詳細に表示されます。" -#: ../../godmode/agentes/fields_manager.php:31 +#: ../../godmode/agentes/configure_field.php:103 +msgid "Enabled combo" +msgstr "有効な設定" + +#: ../../godmode/agentes/configure_field.php:115 +msgid "Combo values" +msgstr "選択肢" + +#: ../../godmode/agentes/configure_field.php:116 +msgid "Set values separated by comma" +msgstr "カンマ区切りで値を設定" + +#: ../../godmode/agentes/fields_manager.php:30 msgid "Agents custom fields manager" msgstr "エージェントカスタムフィールド管理" -#: ../../godmode/agentes/fields_manager.php:45 +#: ../../godmode/agentes/fields_manager.php:46 +#: ../../include/ajax/custom_fields.php:727 msgid "The name must not be empty" msgstr "名前は空ではいけません" @@ -8196,1471 +9162,1673 @@ msgstr "名前は空ではいけません" msgid "The name must be unique" msgstr "名前はユニークである必要があります" -#: ../../godmode/agentes/fields_manager.php:54 +#: ../../godmode/agentes/fields_manager.php:59 msgid "Field successfully created" msgstr "フィールドを作成しました。" -#: ../../godmode/agentes/fields_manager.php:71 +#: ../../godmode/agentes/fields_manager.php:80 msgid "Field successfully updated" msgstr "フィールドを更新しました。" -#: ../../godmode/agentes/fields_manager.php:74 +#: ../../godmode/agentes/fields_manager.php:82 msgid "There was a problem modifying field" msgstr "フィールドの修正で問題が発生しました。" -#: ../../godmode/agentes/fields_manager.php:84 +#: ../../godmode/agentes/fields_manager.php:94 msgid "There was a problem deleting field" msgstr "フィールドの削除で問題が発生しました。" -#: ../../godmode/agentes/fields_manager.php:86 +#: ../../godmode/agentes/fields_manager.php:96 msgid "Field successfully deleted" msgstr "フィールドを削除しました。" -#: ../../godmode/agentes/fields_manager.php:97 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:531 -#: ../../operation/agentes/custom_fields.php:59 +#: ../../godmode/agentes/fields_manager.php:119 +#: ../../godmode/alerts/alert_view.php:438 +#: ../../godmode/alerts/alert_view.php:526 +#: ../../operation/agentes/custom_fields.php:65 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2360 msgid "Field" msgstr "フィールド" -#: ../../godmode/agentes/fields_manager.php:140 +#: ../../godmode/agentes/fields_manager.php:164 msgid "Create field" msgstr "フィールド作成" #: ../../godmode/agentes/modificar_agente.php:63 -msgid "Agents defined in Pandora" -msgstr "Pandora 内エージェント" +#, php-format +msgid "Agents defined in %s" +msgstr "%s で定義されたエージェント" -#: ../../godmode/agentes/modificar_agente.php:96 +#: ../../godmode/agentes/modificar_agente.php:99 msgid "Success deleted agent." msgstr "エージェントを削除しました" -#: ../../godmode/agentes/modificar_agente.php:96 +#: ../../godmode/agentes/modificar_agente.php:99 msgid "Could not be deleted." msgstr "削除できませんでした。" -#: ../../godmode/agentes/modificar_agente.php:103 +#: ../../godmode/agentes/modificar_agente.php:106 msgid "Maybe the files conf or md5 could not be deleted" msgstr "confまたはmd5ファイルを削除できませんでした" -#: ../../godmode/agentes/modificar_agente.php:165 +#: ../../godmode/agentes/modificar_agente.php:175 msgid "Show Agents" msgstr "エージェント表示" -#: ../../godmode/agentes/modificar_agente.php:167 +#: ../../godmode/agentes/modificar_agente.php:177 msgid "Everyone" msgstr "全て" -#: ../../godmode/agentes/modificar_agente.php:168 -#: ../../operation/agentes/status_monitor.php:402 -#: ../../enterprise/operation/agentes/tag_view.php:201 +#: ../../godmode/agentes/modificar_agente.php:178 +#: ../../operation/agentes/status_monitor.php:543 +#: ../../enterprise/operation/agentes/tag_view.php:280 msgid "Only disabled" msgstr "無効のもののみ" -#: ../../godmode/agentes/modificar_agente.php:169 -#: ../../operation/agentes/status_monitor.php:402 -#: ../../enterprise/operation/agentes/tag_view.php:201 +#: ../../godmode/agentes/modificar_agente.php:179 +#: ../../operation/agentes/status_monitor.php:542 +#: ../../enterprise/operation/agentes/tag_view.php:279 msgid "Only enabled" msgstr "有効のもののみ" -#: ../../godmode/agentes/modificar_agente.php:176 +#: ../../godmode/agentes/modificar_agente.php:186 msgid "Operative System" msgstr "オペレーションシステム" -#: ../../godmode/agentes/modificar_agente.php:197 +#: ../../godmode/agentes/modificar_agente.php:207 msgid "" "Search filter by alias, name, description, IP address or custom fields " "content" msgstr "別名、名前、説明、IPドレス、カスタムフィールドの内容による検索フィルタ" -#: ../../godmode/agentes/modificar_agente.php:464 +#: ../../godmode/agentes/modificar_agente.php:488 msgid "Remote agent configuration" msgstr "リモートエージェント設定" -#: ../../godmode/agentes/modificar_agente.php:464 +#: ../../godmode/agentes/modificar_agente.php:488 msgid "R" msgstr "R" -#: ../../godmode/agentes/modificar_agente.php:560 -#: ../../operation/agentes/estado_agente.php:635 -#: ../../operation/agentes/estado_generalagente.php:105 -#: ../../operation/agentes/estado_generalagente.php:108 -#: ../../operation/search_agents.php:110 +#: ../../godmode/agentes/modificar_agente.php:573 +#: ../../godmode/agentes/module_manager_editor_common.php:238 +#: ../../godmode/agentes/module_manager_editor_common.php:876 +#: ../../godmode/agentes/module_manager_editor_common.php:1025 +#: ../../godmode/alerts/alert_list.list.php:129 +#: ../../godmode/alerts/alert_view.php:512 +#: ../../godmode/alerts/configure_alert_template.php:819 +#: ../../godmode/groups/group_list.php:625 +#: ../../godmode/massive/massive_edit_agents.php:642 +#: ../../godmode/massive/massive_edit_agents.php:718 +#: ../../godmode/massive/massive_edit_modules.php:693 +#: ../../include/functions_treeview.php:72 +#: ../../include/functions_treeview.php:581 +#: ../../include/functions_visual_map_editor.php:758 +#: ../../include/functions_reporting_html.php:2626 +#: ../../include/functions_reporting.php:4724 +#: ../../mobile/operation/agent.php:172 ../../mobile/operation/alerts.php:50 +#: ../../operation/agentes/alerts_status.functions.php:81 +#: ../../operation/agentes/estado_generalagente.php:109 +#: ../../operation/agentes/estado_generalagente.php:111 +#: ../../operation/search_agents.php:77 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:114 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:544 +#: ../../enterprise/godmode/modules/configure_local_component.php:431 +#: ../../enterprise/godmode/policies/policy_agents.php:1399 +#: ../../enterprise/godmode/policies/policy_agents.php:1416 +#: ../../enterprise/godmode/setup/edit_skin.php:273 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2915 +#: ../../enterprise/include/class/DatabaseHA.class.php:207 +#: ../../enterprise/include/class/VMware.app.php:777 +#: ../../enterprise/include/functions_policies.php:4909 +#: ../../enterprise/meta/agentsearch.php:223 +#: ../../enterprise/meta/agentsearch.php:230 +#: ../../enterprise/meta/include/functions_wizard_meta.php:242 +#: ../../enterprise/meta/include/functions_wizard_meta.php:525 +#: ../../enterprise/meta/include/functions_wizard_meta.php:596 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1146 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1531 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1623 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1815 +msgid "Disabled" +msgstr "無効" + +#: ../../godmode/agentes/modificar_agente.php:586 +#: ../../operation/agentes/estado_agente.php:786 +#: ../../operation/agentes/estado_generalagente.php:125 +#: ../../operation/agentes/estado_generalagente.php:133 +#: ../../operation/search_agents.php:95 msgid "Agent in planned downtime" msgstr "計画停止内のエージェント" -#: ../../godmode/agentes/modificar_agente.php:597 +#: ../../godmode/agentes/modificar_agente.php:634 msgid "Edit remote config" msgstr "リモート設定" -#: ../../godmode/agentes/modificar_agente.php:632 +#: ../../godmode/agentes/modificar_agente.php:681 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "クラスタエージェントを有効化します。よろしいですか?" + +#: ../../godmode/agentes/modificar_agente.php:684 msgid "Enable agent" msgstr "エージェントの有効化" -#: ../../godmode/agentes/modificar_agente.php:637 +#: ../../godmode/agentes/modificar_agente.php:691 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "クラスタエージェントを無効化します。よろしいですか?" + +#: ../../godmode/agentes/modificar_agente.php:694 msgid "Disable agent" msgstr "エージェントの無効化" -#: ../../godmode/agentes/modificar_agente.php:654 -#: ../../operation/agentes/estado_agente.php:708 -#: ../../operation/agentes/group_view.php:436 +#: ../../godmode/agentes/modificar_agente.php:704 +msgid "WARNING! - You are going to delete a cluster agent. Are you sure?" +msgstr "警告! - クラスタエージェントを削除します。よろしいですか?" + +#: ../../godmode/agentes/modificar_agente.php:717 +#: ../../operation/agentes/estado_agente.php:884 +#: ../../operation/agentes/group_view.php:533 +#: ../../enterprise/meta/monitoring/group_view.php:168 msgid "There are no defined agents" msgstr "定義されたエージェントがありません" -#: ../../godmode/agentes/modificar_agente.php:662 -#: ../../operation/agentes/estado_agente.php:692 -#: ../../operation/agentes/estado_agente.php:712 -#: ../../operation/snmpconsole/snmp_statistics.php:151 -#: ../../operation/snmpconsole/snmp_view.php:782 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:75 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:199 -msgid "Create agent" -msgstr "エージェント作成" - -#: ../../godmode/agentes/module_manager.php:78 +#: ../../godmode/agentes/module_manager.php:89 msgid "Create a new data server module" msgstr "データサーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:80 +#: ../../godmode/agentes/module_manager.php:91 msgid "Create a new network server module" msgstr "ネットワークサーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:82 +#: ../../godmode/agentes/module_manager.php:95 msgid "Create a new plugin server module" msgstr "プラグインサーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:84 +#: ../../godmode/agentes/module_manager.php:99 msgid "Create a new WMI server module" msgstr "WMI サーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:86 +#: ../../godmode/agentes/module_manager.php:103 msgid "Create a new prediction server module" msgstr "予測サーバモジュールの新規作成" -#: ../../godmode/agentes/module_manager.php:123 -#: ../../operation/agentes/estado_monitores.php:485 +#: ../../godmode/agentes/module_manager.php:147 +#: ../../operation/agentes/estado_monitores.php:573 msgid "Show in hierachy mode" msgstr "階層モードで表示" -#: ../../godmode/agentes/module_manager.php:151 -msgid "Get more modules in Pandora FMS Library" -msgstr "Pandora FMS モジュールライブラリから新しいモジュールを手に入れる" +#: ../../godmode/agentes/module_manager.php:159 +msgid "

    Type

    " +msgstr "

    タイプ

    " -#: ../../godmode/agentes/module_manager.php:178 +#: ../../godmode/agentes/module_manager.php:176 +msgid "Get more modules on Monitoring Library" +msgstr "ライブラリからモジュールを取得" + +#: ../../godmode/agentes/module_manager.php:210 msgid "Nice try buddy" msgstr "問題が発生しました" -#: ../../godmode/agentes/module_manager.php:275 +#: ../../godmode/agentes/module_manager.php:337 #, php-format msgid "There was a problem deleting %s modules, none deleted." msgstr "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていません。" -#: ../../godmode/agentes/module_manager.php:280 +#: ../../godmode/agentes/module_manager.php:343 msgid "All Modules deleted succesfully" msgstr "すべてのモジュールを削除しました" -#: ../../godmode/agentes/module_manager.php:284 +#: ../../godmode/agentes/module_manager.php:347 #, php-format msgid "There was a problem only deleted %s modules of %s total." msgstr "%s 個(全 %s 個中)のモジュール削除に失敗しました。" -#: ../../godmode/agentes/module_manager.php:526 -#: ../../godmode/reporting/map_builder.php:327 -#: ../../godmode/reporting/map_builder.php:341 -#: ../../include/ajax/module.php:370 -#: ../../operation/agentes/datos_agente.php:286 +#: ../../godmode/agentes/module_manager.php:618 +#: ../../godmode/reporting/map_builder.php:403 +#: ../../godmode/reporting/map_builder.php:420 +#: ../../include/ajax/module.php:442 +#: ../../operation/agentes/datos_agente.php:296 msgid "No available data to show" msgstr "表示するデータがありません。" -#: ../../godmode/agentes/module_manager.php:554 -#: ../../godmode/alerts/alert_view.php:123 ../../include/ajax/module.php:771 -#: ../../operation/agentes/alerts_status.php:445 -#: ../../operation/agentes/alerts_status.php:492 -#: ../../operation/agentes/status_monitor.php:954 -#: ../../enterprise/extensions/resource_exportation/functions.php:17 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../enterprise/godmode/agentes/inventory_manager.php:231 -#: ../../enterprise/godmode/agentes/plugins_manager.php:144 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:91 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:161 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:90 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:83 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:82 -#: ../../enterprise/godmode/policies/policy_queue.php:351 -#: ../../enterprise/godmode/policies/policy_queue.php:394 -#: ../../enterprise/include/functions_policies.php:3968 -#: ../../enterprise/meta/advanced/policymanager.queue.php:212 -#: ../../enterprise/meta/advanced/policymanager.queue.php:256 -#: ../../enterprise/meta/advanced/policymanager.sync.php:302 -#: ../../enterprise/operation/agentes/collection_view.php:62 -#: ../../enterprise/operation/agentes/policy_view.php:48 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:201 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/agentes/status_monitor_custom_fields.php:73 +#: ../../godmode/agentes/status_monitor_custom_fields.php:142 +#: ../../godmode/alerts/alert_view.php:115 ../../include/ajax/module.php:832 +#: ../../operation/agentes/alerts_status.php:502 +#: ../../operation/agentes/alerts_status.php:538 +#: ../../operation/agentes/status_monitor.php:1107 +#: ../../enterprise/extensions/resource_exportation/functions.php:18 +#: ../../enterprise/godmode/agentes/collection_manager.php:200 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/godmode/agentes/plugins_manager.php:121 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:84 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:191 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:96 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:348 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:98 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:94 +#: ../../enterprise/godmode/policies/policy_queue.php:404 +#: ../../enterprise/godmode/policies/policy_queue.php:458 +#: ../../enterprise/include/functions_policies.php:4046 +#: ../../enterprise/meta/advanced/policymanager.queue.php:210 +#: ../../enterprise/meta/advanced/policymanager.queue.php:257 +#: ../../enterprise/meta/advanced/policymanager.sync.php:319 +#: ../../enterprise/operation/agentes/collection_view.php:61 +#: ../../enterprise/operation/agentes/policy_view.php:50 msgid "Policy" msgstr "ポリシー" -#: ../../godmode/agentes/module_manager.php:554 -#: ../../godmode/reporting/graph_builder.graph_editor.php:203 -#: ../../godmode/reporting/reporting_builder.list_items.php:288 -#: ../../godmode/snmpconsole/snmp_alert.php:1148 -#: ../../include/ajax/module.php:771 -#: ../../operation/agentes/alerts_status.php:446 -#: ../../operation/agentes/alerts_status.php:492 -#: ../../operation/agentes/status_monitor.php:954 -#: ../../enterprise/godmode/agentes/collection_manager.php:162 -#: ../../enterprise/godmode/agentes/inventory_manager.php:232 -#: ../../enterprise/operation/agentes/collection_view.php:62 +#: ../../godmode/agentes/module_manager.php:643 +#: ../../godmode/reporting/graph_builder.graph_editor.php:197 +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/snmpconsole/snmp_alert.php:1253 +#: ../../include/ajax/module.php:832 +#: ../../operation/agentes/alerts_status.php:502 +#: ../../operation/agentes/alerts_status.php:538 +#: ../../operation/agentes/status_monitor.php:1107 +#: ../../enterprise/godmode/agentes/collection_manager.php:200 +#: ../../enterprise/godmode/agentes/inventory_manager.php:216 +#: ../../enterprise/operation/agentes/collection_view.php:61 msgid "P." msgstr "P." -#: ../../godmode/agentes/module_manager.php:557 -#: ../../include/functions_events.php:898 -#: ../../mobile/operation/agents.php:345 -#: ../../operation/agentes/alerts_status.php:450 -#: ../../operation/agentes/alerts_status.php:495 -#: ../../operation/agentes/alerts_status.php:530 -#: ../../operation/agentes/alerts_status.php:565 -#: ../../enterprise/godmode/admin_access_logs.php:22 -#: ../../enterprise/godmode/policies/policy_agents.php:574 -#: ../../enterprise/godmode/policies/policy_agents.php:819 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:217 -#: ../../enterprise/operation/agentes/policy_view.php:47 -#: ../../enterprise/operation/agentes/policy_view.php:134 -#: ../../enterprise/operation/agentes/policy_view.php:193 -#: ../../enterprise/operation/agentes/policy_view.php:198 +#: ../../godmode/agentes/module_manager.php:646 +#: ../../include/functions_events.php:2380 +#: ../../include/functions_events.php.orig:2286 +#: ../../mobile/operation/agents.php:396 +#: ../../operation/agentes/alerts_status.php:504 +#: ../../operation/agentes/alerts_status.php:540 +#: ../../operation/agentes/alerts_status.php:575 +#: ../../operation/agentes/alerts_status.php:608 +#: ../../enterprise/godmode/admin_access_logs.php:24 +#: ../../enterprise/godmode/policies/policy_agents.php:711 +#: ../../enterprise/godmode/policies/policy_agents.php:1075 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 +#: ../../enterprise/operation/agentes/policy_view.php:49 +#: ../../enterprise/operation/agentes/policy_view.php:142 +#: ../../enterprise/operation/agentes/policy_view.php:206 +#: ../../enterprise/operation/agentes/policy_view.php:211 msgid "S." msgstr "S." -#: ../../godmode/agentes/module_manager.php:568 -#: ../../operation/agentes/status_monitor.php:988 -#: ../../enterprise/operation/agentes/tag_view.php:536 +#: ../../godmode/agentes/module_manager.php:651 +#: ../../godmode/agentes/status_monitor_custom_fields.php:105 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../operation/agentes/status_monitor.php:1150 +#: ../../enterprise/operation/agentes/tag_view.php:655 msgid "Warn" msgstr "警告" -#: ../../godmode/agentes/module_manager.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:579 -#: ../../enterprise/godmode/policies/policy_agents.php:823 -msgid "D." +#: ../../godmode/agentes/module_manager.php:655 +msgid "Del." msgstr "削除" -#: ../../godmode/agentes/module_manager.php:682 -#: ../../godmode/agentes/module_manager.php:692 -#: ../../include/ajax/module.php:873 ../../include/ajax/module.php:883 +#: ../../godmode/agentes/module_manager.php:778 +#: ../../godmode/agentes/module_manager.php:786 +#: ../../include/ajax/module.php:942 ../../include/ajax/module.php:950 msgid "Adopted" msgstr "適用" -#: ../../godmode/agentes/module_manager.php:692 -#: ../../godmode/agentes/module_manager.php:696 -#: ../../godmode/massive/massive_edit_modules.php:604 -#: ../../include/ajax/module.php:883 ../../include/ajax/module.php:887 +#: ../../godmode/agentes/module_manager.php:786 +#: ../../godmode/agentes/module_manager.php:789 +#: ../../godmode/massive/massive_edit_modules.php:995 +#: ../../include/ajax/module.php:950 ../../include/ajax/module.php:953 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834 msgid "Unlinked" msgstr "未リンク" -#: ../../godmode/agentes/module_manager.php:719 -#: ../../enterprise/operation/agentes/policy_view.php:355 +#: ../../godmode/agentes/module_manager.php:812 +#: ../../enterprise/operation/agentes/policy_view.php:371 msgid "Non initialized module" msgstr "未初期化モジュール" -#: ../../godmode/agentes/module_manager.php:736 -#: ../../godmode/agentes/module_manager_editor_common.php:401 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:190 +#: ../../godmode/agentes/module_manager.php:830 +#: ../../godmode/agentes/module_manager_editor_common.php:765 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:394 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." msgstr "データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔でのみ更新されます。" -#: ../../godmode/agentes/module_manager.php:757 -#: ../../enterprise/godmode/policies/policy_modules.php:1272 -#: ../../enterprise/godmode/policies/policy_modules.php:1273 +#: ../../godmode/agentes/module_manager.php:858 +#: ../../godmode/agentes/module_manager.php:859 +#: ../../enterprise/godmode/policies/policy_modules.php:1551 +#: ../../enterprise/godmode/policies/policy_modules.php:1552 msgid "Enable module" msgstr "モジュールを有効化" -#: ../../godmode/agentes/module_manager.php:762 -#: ../../enterprise/godmode/policies/policy_modules.php:1278 -#: ../../enterprise/godmode/policies/policy_modules.php:1279 +#: ../../godmode/agentes/module_manager.php:867 +#: ../../godmode/agentes/module_manager.php:868 +#: ../../enterprise/godmode/policies/policy_modules.php:1560 +#: ../../enterprise/godmode/policies/policy_modules.php:1561 msgid "Disable module" msgstr "モジュールを無効化" -#: ../../godmode/agentes/module_manager.php:769 -#: ../../godmode/alerts/alert_templates.php:339 -#: ../../godmode/modules/manage_network_components.php:613 -#: ../../godmode/snmpconsole/snmp_alert.php:1226 -#: ../../enterprise/godmode/modules/local_components.php:525 -#: ../../enterprise/godmode/policies/policy_modules.php:1286 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:365 +#: ../../godmode/agentes/module_manager.php:879 +#: ../../godmode/alerts/alert_templates.php:402 +#: ../../godmode/modules/manage_network_components.php:740 +#: ../../godmode/snmpconsole/snmp_alert.php:1319 +#: ../../enterprise/godmode/modules/local_components.php:609 +#: ../../enterprise/godmode/policies/policy_modules.php:1575 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:453 msgid "Duplicate" msgstr "複製" -#: ../../godmode/agentes/module_manager.php:777 +#: ../../godmode/agentes/module_manager.php:890 msgid "Normalize" msgstr "正規化" -#: ../../godmode/agentes/module_manager.php:783 +#: ../../godmode/agentes/module_manager.php:898 msgid "Normalize (Disabled)" msgstr "正規化 (無効)" -#: ../../godmode/agentes/module_manager.php:792 -#: ../../include/functions_snmp_browser.php:521 +#: ../../godmode/agentes/module_manager.php:912 +#: ../../include/functions_snmp_browser.php:580 msgid "Create network component" msgstr "ネットワークコンポーネントの作成" -#: ../../godmode/agentes/module_manager.php:797 +#: ../../godmode/agentes/module_manager.php:919 msgid "Create network component (Disabled)" msgstr "ネットワークコンポーネントの作成 (無効)" -#: ../../godmode/agentes/module_manager_editor.php:396 -#: ../../enterprise/godmode/policies/policies.php:191 -#: ../../enterprise/godmode/policies/policy_agents.php:85 -#: ../../enterprise/godmode/policies/policy_alerts.php:60 -#: ../../enterprise/godmode/policies/policy_collections.php:37 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:52 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:53 -#: ../../enterprise/godmode/policies/policy_linking.php:32 -#: ../../enterprise/godmode/policies/policy_modules.php:486 +#: ../../godmode/agentes/module_manager_editor.php:515 +#: ../../enterprise/godmode/policies/policies.php:283 +#: ../../enterprise/godmode/policies/policy_agents.php:105 +#: ../../enterprise/godmode/policies/policy_alerts.php:67 +#: ../../enterprise/godmode/policies/policy_collections.php:46 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:61 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:79 +#: ../../enterprise/godmode/policies/policy_linking.php:41 +#: ../../enterprise/godmode/policies/policy_modules.php:572 msgid "This policy is applying and cannot be modified" msgstr "このポリシーを摘要すると変更できません。" -#: ../../godmode/agentes/module_manager_editor.php:400 -#: ../../enterprise/include/functions_policies.php:3229 +#: ../../godmode/agentes/module_manager_editor.php:521 +#: ../../enterprise/include/functions_policies.php:3536 msgid "Module will be linked in the next application" msgstr "モジュールは次回適用時にリンクされます。" -#: ../../godmode/agentes/module_manager_editor.php:408 -#: ../../enterprise/include/functions_policies.php:3234 +#: ../../godmode/agentes/module_manager_editor.php:535 +#: ../../enterprise/include/functions_policies.php:3542 msgid "Module will be unlinked in the next application" msgstr "モジュールは次回適用時にリンク解除されます。" -#: ../../godmode/agentes/module_manager_editor.php:496 -#, php-format -msgid "DEBUG: Invalid module type specified in %s:%s" -msgstr "DEBUG: %s:%s に不正なモジュールタイプが指定されています" +#: ../../godmode/agentes/module_manager_editor.php:672 +msgid "Invalid module type" +msgstr "不正なモジュールタイプ" -#: ../../godmode/agentes/module_manager_editor.php:497 -msgid "" -"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\t3) found a new bug - please report a way to duplicate this error" -msgstr "" -"Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれかが考えられます。
    \n" -"\t\t\t\t1) データベース変換の実行し忘れ
    \n" -"\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレポート #2124706 を参照)
    \n" -"\t\t\t\t3) 新たなバグ - このエラーを再現する方法をレポートしてください" +#: ../../godmode/agentes/module_manager_editor.php:692 +msgid "Base options" +msgstr "ベースオプション" -#: ../../godmode/agentes/module_manager_editor.php:524 -#: ../../godmode/agentes/module_manager_editor_common.php:667 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:231 +#: ../../godmode/agentes/module_manager_editor.php:704 +#: ../../godmode/agentes/module_manager_editor_common.php:1145 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:514 +#: ../../enterprise/godmode/policies/policy_modules.php:408 msgid "Custom macros" msgstr "カスタムマクロ" -#: ../../godmode/agentes/module_manager_editor.php:528 +#: ../../godmode/agentes/module_manager_editor.php:716 msgid "Module relations" msgstr "モジュール関係" -#: ../../godmode/agentes/module_manager_editor.php:574 -#: ../../enterprise/godmode/policies/policy_modules.php:1388 +#: ../../godmode/agentes/module_manager_editor.php:776 +#: ../../enterprise/godmode/policies/policy_modules.php:1718 msgid "No module name provided" msgstr "モジュール名がありません。" -#: ../../godmode/agentes/module_manager_editor.php:575 -#: ../../enterprise/godmode/policies/policy_modules.php:1389 +#: ../../godmode/agentes/module_manager_editor.php:786 +#: ../../enterprise/godmode/policies/policy_modules.php:1719 msgid "No target IP provided" msgstr "対象 IP がありません。" -#: ../../godmode/agentes/module_manager_editor.php:576 -#: ../../enterprise/godmode/policies/policy_modules.php:1390 +#: ../../godmode/agentes/module_manager_editor.php:796 +#: ../../enterprise/godmode/policies/policy_modules.php:1720 msgid "No SNMP OID provided" msgstr "SNMP OID がありません。" -#: ../../godmode/agentes/module_manager_editor.php:577 +#: ../../godmode/agentes/module_manager_editor.php:806 msgid "No module to predict" msgstr "予測モジュールがありません。" -#: ../../godmode/agentes/module_manager_editor.php:578 +#: ../../godmode/agentes/module_manager_editor.php:816 msgid "No plug-in provided" msgstr "プラグインがありません" -#: ../../godmode/agentes/module_manager_editor.php:579 +#: ../../godmode/agentes/module_manager_editor.php:826 msgid "No server provided" msgstr "サーバがありません" -#: ../../godmode/agentes/module_manager_editor.php:605 +#: ../../godmode/agentes/module_manager_editor.php:857 msgid "" "Error, The field name and name in module_name in data configuration are " "different." msgstr "エラー、データ設定におけるフィールド名と module_name 内の名前が異なります。" -#: ../../godmode/agentes/module_manager_editor.php:644 +#: ../../godmode/agentes/module_manager_editor.php:895 msgid "The File APIs are not fully supported in this browser." msgstr "このブラウザでは、ファイル API は完全にはサポートされていません。" -#: ../../godmode/agentes/module_manager_editor.php:645 +#: ../../godmode/agentes/module_manager_editor.php:896 msgid "Couldn`t find the fileinput element." msgstr "ファイル入力要素がみつかりません。" -#: ../../godmode/agentes/module_manager_editor.php:646 +#: ../../godmode/agentes/module_manager_editor.php:897 msgid "" "This browser doesn`t seem to support the files property of file inputs." msgstr "このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていません。" -#: ../../godmode/agentes/module_manager_editor.php:647 +#: ../../godmode/agentes/module_manager_editor.php:898 msgid "Please select a file before clicking Load" msgstr "読み込みをクリックする前にファイルを選択してください。" -#: ../../godmode/agentes/module_manager_editor_common.php:70 +#: ../../godmode/agentes/module_manager_editor_common.php:90 msgid "Using module component" msgstr "モジュールコンポーネント" -#: ../../godmode/agentes/module_manager_editor_common.php:76 -#: ../../godmode/agentes/module_manager_editor_common.php:85 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:71 +#: ../../godmode/agentes/module_manager_editor_common.php:99 +#: ../../godmode/agentes/module_manager_editor_common.php:116 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:72 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:92 msgid "Manual setup" msgstr "個別設定" -#: ../../godmode/agentes/module_manager_editor_common.php:161 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:75 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1423 +#: ../../godmode/agentes/module_manager_editor_common.php:221 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:96 msgid "Delete module" msgstr "モジュール削除" -#: ../../godmode/agentes/module_manager_editor_common.php:176 -#: ../../godmode/agentes/module_manager_editor_common.php:182 -#: ../../godmode/massive/massive_edit_modules.php:547 -#: ../../include/functions_treeview.php:118 -#: ../../include/functions_graph.php:6186 -#: ../../operation/agentes/status_monitor.php:310 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1382 -#: ../../enterprise/operation/agentes/tag_view.php:95 +#: ../../godmode/agentes/module_manager_editor_common.php:252 +#: ../../godmode/agentes/module_manager_editor_common.php:292 +#: ../../godmode/massive/massive_edit_modules.php:820 +#: ../../include/functions_treeview.php:116 +#: ../../include/functions_graph.php:5072 +#: ../../operation/agentes/status_monitor.php:406 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:678 +#: ../../enterprise/operation/agentes/tag_view.php:131 msgid "Not assigned" msgstr "未割当" -#: ../../godmode/agentes/module_manager_editor_common.php:180 +#: ../../godmode/agentes/module_manager_editor_common.php:270 msgid "Module parent" msgstr "モジュールの親" -#: ../../godmode/agentes/module_manager_editor_common.php:256 +#: ../../godmode/agentes/module_manager_editor_common.php:424 msgid "Dynamic Threshold Interval" msgstr "動的しきい値の間隔" -#: ../../godmode/agentes/module_manager_editor_common.php:258 -#: ../../godmode/modules/manage_network_components_form_common.php:109 -#: ../../enterprise/godmode/modules/configure_local_component.php:228 +#: ../../godmode/agentes/module_manager_editor_common.php:438 +#: ../../godmode/modules/manage_network_components_form_common.php:159 +#: ../../enterprise/godmode/modules/configure_local_component.php:288 msgid "Advanced options Dynamic Threshold" msgstr "拡張オプション 動的閾値" -#: ../../godmode/agentes/module_manager_editor_common.php:268 +#: ../../godmode/agentes/module_manager_editor_common.php:447 msgid "Dynamic Threshold Min. " msgstr "最小動的しきい値 " -#: ../../godmode/agentes/module_manager_editor_common.php:271 +#: ../../godmode/agentes/module_manager_editor_common.php:460 msgid "Dynamic Threshold Max. " msgstr "最大動的しきい値 " -#: ../../godmode/agentes/module_manager_editor_common.php:274 +#: ../../godmode/agentes/module_manager_editor_common.php:473 msgid "Dynamic Threshold Two Tailed: " msgstr "2つの動的しきい値を使う: " -#: ../../godmode/agentes/module_manager_editor_common.php:277 -#: ../../godmode/massive/massive_edit_modules.php:388 -#: ../../godmode/modules/manage_network_components_form_common.php:118 -#: ../../include/functions_alerts.php:573 -#: ../../include/functions_treeview.php:98 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:237 -#: ../../enterprise/godmode/modules/configure_local_component.php:237 +#: ../../godmode/agentes/module_manager_editor_common.php:476 +#: ../../godmode/massive/massive_edit_modules.php:533 +#: ../../godmode/modules/manage_network_components_form_common.php:168 +#: ../../include/functions_alerts.php:662 +#: ../../include/functions_treeview.php:96 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:384 +#: ../../enterprise/godmode/modules/configure_local_component.php:297 msgid "Warning status" msgstr "警告状態" -#: ../../godmode/agentes/module_manager_editor_common.php:279 -#: ../../godmode/agentes/module_manager_editor_common.php:300 +#: ../../godmode/agentes/module_manager_editor_common.php:478 +#: ../../godmode/agentes/module_manager_editor_common.php:531 msgid "Min. " msgstr "最小 " -#: ../../godmode/agentes/module_manager_editor_common.php:282 -#: ../../godmode/agentes/module_manager_editor_common.php:303 -#: ../../godmode/alerts/configure_alert_template.php:628 -#: ../../godmode/massive/massive_edit_modules.php:401 -#: ../../godmode/massive/massive_edit_modules.php:447 -#: ../../godmode/massive/massive_edit_modules.php:542 -#: ../../godmode/modules/manage_network_components_form_common.php:122 -#: ../../godmode/modules/manage_network_components_form_common.php:139 -#: ../../include/functions_alerts.php:569 -#: ../../include/functions_treeview.php:94 -#: ../../include/functions_treeview.php:107 -#: ../../include/functions_graph.php:5162 -#: ../../include/functions_reporting_html.php:3254 -#: ../../enterprise/dashboard/widgets/top_n.php:78 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:250 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:279 -#: ../../enterprise/godmode/modules/configure_local_component.php:241 -#: ../../enterprise/godmode/modules/configure_local_component.php:258 +#: ../../godmode/agentes/module_manager_editor_common.php:491 +#: ../../godmode/agentes/module_manager_editor_common.php:544 +#: ../../godmode/alerts/configure_alert_template.php:770 +#: ../../godmode/massive/massive_edit_modules.php:552 +#: ../../godmode/massive/massive_edit_modules.php:621 +#: ../../godmode/massive/massive_edit_modules.php:815 +#: ../../godmode/modules/manage_network_components_form_common.php:178 +#: ../../godmode/modules/manage_network_components_form_common.php:213 +#: ../../include/functions_alerts.php:658 +#: ../../include/functions_treeview.php:92 +#: ../../include/functions_treeview.php:104 +#: ../../include/functions_reporting_html.php:4176 +#: ../../enterprise/dashboard/widgets/top_n.php:98 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:277 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:326 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:403 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:472 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:673 +#: ../../enterprise/godmode/modules/configure_local_component.php:307 +#: ../../enterprise/godmode/modules/configure_local_component.php:342 msgid "Max." msgstr "最大" -#: ../../godmode/agentes/module_manager_editor_common.php:287 -#: ../../godmode/agentes/module_manager_editor_common.php:308 -#: ../../godmode/massive/massive_edit_modules.php:410 -#: ../../godmode/massive/massive_edit_modules.php:456 -#: ../../godmode/modules/manage_network_components_form_common.php:125 -#: ../../godmode/modules/manage_network_components_form_common.php:142 -#: ../../include/functions_treeview.php:91 -#: ../../include/functions_treeview.php:104 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:258 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:287 -#: ../../enterprise/godmode/modules/configure_local_component.php:244 -#: ../../enterprise/godmode/modules/configure_local_component.php:261 +#: ../../godmode/agentes/module_manager_editor_common.php:507 +#: ../../godmode/agentes/module_manager_editor_common.php:560 +#: ../../godmode/massive/massive_edit_modules.php:567 +#: ../../godmode/massive/massive_edit_modules.php:636 +#: ../../godmode/modules/manage_network_components_form_common.php:187 +#: ../../godmode/modules/manage_network_components_form_common.php:222 +#: ../../include/functions_treeview.php:90 +#: ../../include/functions_treeview.php:102 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:292 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:341 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:418 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:487 +#: ../../enterprise/godmode/modules/configure_local_component.php:316 +#: ../../enterprise/godmode/modules/configure_local_component.php:351 msgid "Str." msgstr "文字列" -#: ../../godmode/agentes/module_manager_editor_common.php:291 -#: ../../godmode/agentes/module_manager_editor_common.php:313 -#: ../../godmode/massive/massive_edit_modules.php:420 -#: ../../godmode/massive/massive_edit_modules.php:466 -#: ../../godmode/modules/manage_network_components_form_common.php:128 -#: ../../godmode/modules/manage_network_components_form_common.php:145 -#: ../../enterprise/godmode/modules/configure_local_component.php:247 -#: ../../enterprise/godmode/modules/configure_local_component.php:264 -#: ../../enterprise/meta/include/functions_wizard_meta.php:844 -#: ../../enterprise/meta/include/functions_wizard_meta.php:853 -#: ../../enterprise/meta/include/functions_wizard_meta.php:930 -#: ../../enterprise/meta/include/functions_wizard_meta.php:939 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1140 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1347 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1356 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1428 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1437 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1544 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1553 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1569 +#: ../../godmode/agentes/module_manager_editor_common.php:522 +#: ../../godmode/agentes/module_manager_editor_common.php:575 +#: ../../godmode/massive/massive_edit_modules.php:582 +#: ../../godmode/massive/massive_edit_modules.php:651 +#: ../../godmode/modules/manage_network_components_form_common.php:196 +#: ../../godmode/modules/manage_network_components_form_common.php:231 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:433 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:502 +#: ../../enterprise/godmode/modules/configure_local_component.php:325 +#: ../../enterprise/godmode/modules/configure_local_component.php:360 +#: ../../enterprise/meta/include/functions_wizard_meta.php:979 +#: ../../enterprise/meta/include/functions_wizard_meta.php:988 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1066 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1075 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1270 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1279 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1508 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1517 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1592 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1601 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1711 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1720 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1736 msgid "Inverse interval" msgstr "条件の反転" -#: ../../godmode/agentes/module_manager_editor_common.php:298 -#: ../../godmode/massive/massive_edit_modules.php:434 -#: ../../godmode/modules/manage_network_components_form_common.php:135 -#: ../../include/functions_alerts.php:574 -#: ../../include/functions_treeview.php:110 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../enterprise/godmode/modules/configure_local_component.php:254 +#: ../../godmode/agentes/module_manager_editor_common.php:529 +#: ../../godmode/massive/massive_edit_modules.php:602 +#: ../../godmode/modules/manage_network_components_form_common.php:203 +#: ../../include/functions_alerts.php:663 +#: ../../include/functions_treeview.php:108 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:307 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:453 +#: ../../enterprise/godmode/modules/configure_local_component.php:332 msgid "Critical status" msgstr "障害状態" -#: ../../godmode/agentes/module_manager_editor_common.php:317 -#: ../../godmode/massive/massive_edit_modules.php:575 -#: ../../godmode/modules/manage_network_components_form_common.php:148 -#: ../../enterprise/godmode/modules/configure_local_component.php:267 +#: ../../godmode/agentes/module_manager_editor_common.php:579 +#: ../../godmode/massive/massive_edit_modules.php:858 +#: ../../godmode/modules/manage_network_components_form_common.php:234 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:173 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:716 +#: ../../enterprise/godmode/modules/configure_local_component.php:363 msgid "FF threshold" msgstr "連続抑制回数" -#: ../../godmode/agentes/module_manager_editor_common.php:320 -#: ../../godmode/massive/massive_edit_modules.php:577 -#: ../../godmode/massive/massive_edit_modules.php:578 -#: ../../godmode/modules/manage_network_components_form_common.php:150 -#: ../../enterprise/godmode/modules/configure_local_component.php:269 +#: ../../godmode/agentes/module_manager_editor_common.php:581 +#: ../../godmode/massive/massive_edit_modules.php:922 +#: ../../godmode/modules/manage_network_components_form_common.php:237 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:176 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:784 +#: ../../enterprise/godmode/modules/configure_local_component.php:366 +msgid "Keep counters" +msgstr "カウンタの維持" + +#: ../../godmode/agentes/module_manager_editor_common.php:598 +#: ../../godmode/massive/massive_edit_modules.php:866 +#: ../../godmode/massive/massive_edit_modules.php:881 +#: ../../godmode/modules/manage_network_components_form_common.php:251 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:193 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:728 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:743 +#: ../../enterprise/godmode/modules/configure_local_component.php:374 msgid "All state changing" msgstr "全状態変化" -#: ../../godmode/agentes/module_manager_editor_common.php:323 -#: ../../godmode/massive/massive_edit_modules.php:577 -#: ../../godmode/massive/massive_edit_modules.php:579 -#: ../../godmode/modules/manage_network_components_form_common.php:153 -#: ../../enterprise/godmode/modules/configure_local_component.php:272 +#: ../../godmode/agentes/module_manager_editor_common.php:620 +#: ../../godmode/massive/massive_edit_modules.php:865 +#: ../../godmode/massive/massive_edit_modules.php:891 +#: ../../godmode/modules/manage_network_components_form_common.php:267 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:215 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:727 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:753 +#: ../../enterprise/godmode/modules/configure_local_component.php:389 msgid "Each state changing" msgstr "個別状態変化" -#: ../../godmode/agentes/module_manager_editor_common.php:324 -#: ../../godmode/massive/massive_edit_modules.php:580 -#: ../../godmode/modules/manage_network_components_form_common.php:154 -#: ../../enterprise/godmode/modules/configure_local_component.php:273 +#: ../../godmode/agentes/module_manager_editor_common.php:621 +#: ../../godmode/massive/massive_edit_modules.php:892 +#: ../../godmode/modules/manage_network_components_form_common.php:268 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:216 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:754 +#: ../../enterprise/godmode/modules/configure_local_component.php:390 msgid "To normal" msgstr "正常移行時" -#: ../../godmode/agentes/module_manager_editor_common.php:327 -#: ../../godmode/massive/massive_edit_modules.php:581 -#: ../../godmode/modules/manage_network_components_form_common.php:156 -#: ../../enterprise/godmode/modules/configure_local_component.php:275 +#: ../../godmode/agentes/module_manager_editor_common.php:635 +#: ../../godmode/massive/massive_edit_modules.php:902 +#: ../../godmode/modules/manage_network_components_form_common.php:277 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:230 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:764 +#: ../../enterprise/godmode/modules/configure_local_component.php:399 msgid "To warning" msgstr "警告移行時" -#: ../../godmode/agentes/module_manager_editor_common.php:330 -#: ../../godmode/massive/massive_edit_modules.php:582 -#: ../../godmode/modules/manage_network_components_form_common.php:158 -#: ../../enterprise/godmode/modules/configure_local_component.php:277 +#: ../../godmode/agentes/module_manager_editor_common.php:649 +#: ../../godmode/massive/massive_edit_modules.php:912 +#: ../../godmode/modules/manage_network_components_form_common.php:286 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:244 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:774 +#: ../../enterprise/godmode/modules/configure_local_component.php:408 msgid "To critical" msgstr "障害移行時" -#: ../../godmode/agentes/module_manager_editor_common.php:333 -#: ../../godmode/massive/massive_edit_modules.php:589 -#: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../include/functions_reporting.php:2435 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:110 -#: ../../enterprise/godmode/modules/configure_local_component.php:281 +#: ../../godmode/agentes/module_manager_editor_common.php:663 +#: ../../godmode/massive/massive_edit_modules.php:970 +#: ../../godmode/modules/manage_network_components_form_common.php:296 +#: ../../include/functions_reporting.php:3143 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:259 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:809 +#: ../../enterprise/godmode/modules/configure_local_component.php:419 +#: ../../enterprise/include/functions_reporting_csv.php:1958 msgid "Historical data" msgstr "データの保存" -#: ../../godmode/agentes/module_manager_editor_common.php:365 -#: ../../godmode/massive/massive_edit_modules.php:570 -#: ../../godmode/modules/manage_network_components_form_common.php:168 -#: ../../include/functions_netflow.php:1131 -#: ../../include/functions_netflow.php:1141 -#: ../../include/functions_netflow.php:1159 -#: ../../include/functions_netflow.php:1167 -#: ../../include/functions_netflow.php:1190 -#: ../../include/functions_netflow.php:1248 -#: ../../include/functions_netflow.php:1254 -#: ../../include/functions_netflow.php:1286 -#: ../../include/functions_reporting_html.php:2120 -#: ../../enterprise/godmode/modules/configure_local_component.php:296 -#: ../../enterprise/include/functions_reporting_pdf.php:2449 -#: ../../enterprise/meta/include/functions_wizard_meta.php:786 -#: ../../enterprise/meta/include/functions_wizard_meta.php:904 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1082 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1365 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1446 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../godmode/agentes/module_manager_editor_common.php:723 +#: ../../godmode/massive/massive_edit_modules.php:853 +#: ../../godmode/modules/manage_network_components_form_common.php:303 +#: ../../include/functions_reporting_html.php:2666 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:711 +#: ../../enterprise/godmode/modules/configure_local_component.php:440 +#: ../../enterprise/meta/include/functions_wizard_meta.php:921 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1040 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1222 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1526 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1610 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1746 msgid "Unit" msgstr "単位" -#: ../../godmode/agentes/module_manager_editor_common.php:388 -#: ../../godmode/agentes/module_manager_editor_common.php:391 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:180 +#: ../../godmode/agentes/module_manager_editor_common.php:754 +#: ../../godmode/agentes/module_manager_editor_common.php:756 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:370 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:373 #: ../../enterprise/meta/monitoring/wizard/wizard.php:113 #, php-format msgid "Agent interval x %s" msgstr "エージェント実行間隔 x %s" -#: ../../godmode/agentes/module_manager_editor_common.php:415 -#: ../../godmode/massive/massive_edit_modules.php:495 -#: ../../godmode/modules/manage_network_components_form_network.php:80 -#: ../../godmode/modules/manage_network_components_form_plugin.php:27 -#: ../../godmode/modules/manage_network_components_form_wmi.php:56 -#: ../../godmode/setup/snmp_wizard.php:42 -#: ../../enterprise/godmode/modules/configure_local_component.php:301 +#: ../../godmode/agentes/module_manager_editor_common.php:778 +#: ../../godmode/massive/massive_edit_modules.php:708 +#: ../../godmode/modules/manage_network_components_form_network.php:178 +#: ../../godmode/modules/manage_network_components_form_plugin.php:49 +#: ../../godmode/modules/manage_network_components_form_wmi.php:55 +#: ../../godmode/setup/snmp_wizard.php:43 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:559 +#: ../../enterprise/godmode/modules/configure_local_component.php:445 msgid "Post process" msgstr "データ保存倍率" -#: ../../godmode/agentes/module_manager_editor_common.php:422 -#: ../../godmode/modules/manage_network_components_form_common.php:164 -#: ../../include/functions_reporting.php:3822 -#: ../../include/functions_graph.php:806 -#: ../../include/functions_graph.php:4618 -#: ../../include/functions_reports.php:568 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 -#: ../../enterprise/include/functions_reporting_csv.php:772 -#: ../../enterprise/include/functions_reporting_csv.php:788 -#: ../../enterprise/include/functions_reporting_csv.php:795 +#: ../../godmode/agentes/module_manager_editor_common.php:793 +#: ../../godmode/modules/manage_network_components_form_common.php:299 +#: ../../include/functions_reports.php:727 +#: ../../include/functions_reporting.php:4823 +#: ../../enterprise/godmode/modules/configure_local_component.php:433 +#: ../../enterprise/include/functions_reporting_csv.php:994 msgid "Min. Value" msgstr "最小値" -#: ../../godmode/agentes/module_manager_editor_common.php:425 +#: ../../godmode/agentes/module_manager_editor_common.php:796 msgid "Any value below this number is discarted." msgstr "この値より小さい値は破棄されます。" -#: ../../godmode/agentes/module_manager_editor_common.php:426 -#: ../../godmode/modules/manage_network_components_form_common.php:166 -#: ../../include/functions_reporting.php:3819 -#: ../../include/functions_graph.php:804 -#: ../../include/functions_graph.php:4617 -#: ../../include/functions_reports.php:566 -#: ../../enterprise/godmode/modules/configure_local_component.php:294 -#: ../../enterprise/include/functions_reporting_csv.php:809 -#: ../../enterprise/include/functions_reporting_csv.php:825 -#: ../../enterprise/include/functions_reporting_csv.php:832 +#: ../../godmode/agentes/module_manager_editor_common.php:797 +#: ../../godmode/modules/manage_network_components_form_common.php:301 +#: ../../include/functions_reports.php:723 +#: ../../include/functions_reporting.php:4819 +#: ../../enterprise/godmode/modules/configure_local_component.php:438 +#: ../../enterprise/include/functions_reporting_csv.php:1049 msgid "Max. Value" msgstr "最大値" -#: ../../godmode/agentes/module_manager_editor_common.php:427 +#: ../../godmode/agentes/module_manager_editor_common.php:798 msgid "Any value over this number is discarted." msgstr "この値より大きい値は破棄されます。" -#: ../../godmode/agentes/module_manager_editor_common.php:430 -#: ../../godmode/massive/massive_edit_modules.php:558 +#: ../../godmode/agentes/module_manager_editor_common.php:801 +#: ../../godmode/massive/massive_edit_modules.php:840 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:698 msgid "Export target" msgstr "データのエクスポート" -#: ../../godmode/agentes/module_manager_editor_common.php:436 +#: ../../godmode/agentes/module_manager_editor_common.php:807 msgid "Not needed" msgstr "不要です。" -#: ../../godmode/agentes/module_manager_editor_common.php:440 +#: ../../godmode/agentes/module_manager_editor_common.php:822 msgid "" "In case you use an Export server you can link this module and export data to " "one these." msgstr "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポートできます。" -#: ../../godmode/agentes/module_manager_editor_common.php:454 -#: ../../godmode/massive/massive_edit_modules.php:613 -#: ../../godmode/modules/manage_network_components_form_common.php:171 +#: ../../godmode/agentes/module_manager_editor_common.php:834 +#: ../../godmode/massive/massive_edit_modules.php:1004 +#: ../../godmode/modules/manage_network_components_form_common.php:306 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:843 msgid "Discard unknown events" msgstr "不明イベントを削除" -#: ../../godmode/agentes/module_manager_editor_common.php:459 -#: ../../godmode/massive/massive_edit_modules.php:584 +#: ../../godmode/agentes/module_manager_editor_common.php:844 +#: ../../godmode/massive/massive_edit_modules.php:942 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:420 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:804 msgid "FF interval" msgstr "連続抑制時の間隔" -#: ../../godmode/agentes/module_manager_editor_common.php:462 -#: ../../godmode/massive/massive_edit_modules.php:585 +#: ../../godmode/agentes/module_manager_editor_common.php:856 +#: ../../godmode/massive/massive_edit_modules.php:952 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:436 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:805 msgid "Module execution flip flop time interval (in secs)." msgstr "連続抑制時のモジュールの実行間隔(秒単位)です。" -#: ../../godmode/agentes/module_manager_editor_common.php:465 -#: ../../godmode/massive/massive_edit_modules.php:586 -#: ../../enterprise/godmode/modules/configure_local_component.php:284 +#: ../../godmode/agentes/module_manager_editor_common.php:859 +#: ../../godmode/massive/massive_edit_modules.php:956 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 +#: ../../enterprise/godmode/modules/configure_local_component.php:422 msgid "FF timeout" msgstr "連続抑制タイムアウト" -#: ../../godmode/agentes/module_manager_editor_common.php:471 -#: ../../godmode/massive/massive_edit_modules.php:587 -#: ../../enterprise/godmode/modules/configure_local_component.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:872 +#: ../../godmode/massive/massive_edit_modules.php:966 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 +#: ../../enterprise/godmode/modules/configure_local_component.php:430 msgid "" "Timeout in secs from start of flip flop counting. If this value is exceeded, " "FF counter is reset. Set to 0 for no timeout." msgstr "連続抑制開始からのタイムアウト秒数です。この値を超えると連続抑制のカウンタがリセットされます。0に設定するとタイムアウトしません。" -#: ../../godmode/agentes/module_manager_editor_common.php:474 -#: ../../enterprise/godmode/modules/configure_local_component.php:287 +#: ../../godmode/agentes/module_manager_editor_common.php:876 +#: ../../enterprise/godmode/modules/configure_local_component.php:431 msgid "This value can be set only in the async modules." msgstr "この値は非同期モジュールでのみ設定可能です。" -#: ../../godmode/agentes/module_manager_editor_common.php:481 -#: ../../godmode/modules/manage_network_components_form_common.php:212 -#: ../../enterprise/godmode/modules/configure_local_component.php:387 +#: ../../godmode/agentes/module_manager_editor_common.php:885 +#: ../../godmode/modules/manage_network_components_form_common.php:349 +#: ../../enterprise/godmode/modules/configure_local_component.php:533 msgid "Tags available" msgstr "利用可能なタグ" -#: ../../godmode/agentes/module_manager_editor_common.php:543 -#: ../../godmode/modules/manage_network_components_form_common.php:219 -#: ../../enterprise/godmode/modules/configure_local_component.php:394 +#: ../../godmode/agentes/module_manager_editor_common.php:975 +#: ../../godmode/modules/manage_network_components_form_common.php:367 +#: ../../enterprise/godmode/modules/configure_local_component.php:551 msgid "Add tags to module" msgstr "モジュールへのタグ追加" -#: ../../godmode/agentes/module_manager_editor_common.php:544 -#: ../../godmode/modules/manage_network_components_form_common.php:220 -#: ../../enterprise/godmode/modules/configure_local_component.php:396 +#: ../../godmode/agentes/module_manager_editor_common.php:977 +#: ../../godmode/modules/manage_network_components_form_common.php:369 +#: ../../enterprise/godmode/modules/configure_local_component.php:553 msgid "Delete tags to module" msgstr "モジュールのタグ削除" -#: ../../godmode/agentes/module_manager_editor_common.php:546 -#: ../../godmode/modules/manage_network_components_form_common.php:222 -#: ../../enterprise/godmode/modules/configure_local_component.php:398 +#: ../../godmode/agentes/module_manager_editor_common.php:979 +#: ../../godmode/modules/manage_network_components_form_common.php:371 +#: ../../enterprise/godmode/modules/configure_local_component.php:555 +#: ../../enterprise/godmode/setup/setup_auth.php:169 +#: ../../enterprise/godmode/setup/setup_auth.php:927 msgid "Tags selected" msgstr "選択タグ" -#: ../../godmode/agentes/module_manager_editor_common.php:557 +#: ../../godmode/agentes/module_manager_editor_common.php:1000 msgid "Tags from policy" msgstr "ポリシーからのタグ" -#: ../../godmode/agentes/module_manager_editor_common.php:570 +#: ../../godmode/agentes/module_manager_editor_common.php:1022 msgid "The module still stores data but the alerts and events will be stop" msgstr "モジュールはデータの保存を行いますが、アラートとイベントは停止します" -#: ../../godmode/agentes/module_manager_editor_common.php:575 -#: ../../godmode/massive/massive_edit_modules.php:621 -#: ../../godmode/modules/manage_network_components_form_common.php:175 -#: ../../enterprise/godmode/modules/configure_local_component.php:344 +#: ../../godmode/agentes/module_manager_editor_common.php:1027 +#: ../../godmode/agentes/module_manager_editor_common.php:1037 +#: ../../godmode/alerts/alert_list.list.php:128 +#: ../../godmode/alerts/configure_alert_template.php:820 +#: ../../godmode/groups/group_list.php:625 +#: ../../godmode/massive/massive_edit_agents.php:717 +#: ../../include/functions_visual_map_editor.php:757 +#: ../../include/functions_reporting_html.php:2624 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../enterprise/extensions/ipam/ipam_network.php:330 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2921 +#: ../../enterprise/include/class/DatabaseHA.class.php:201 +msgid "Enabled" +msgstr "有効" + +#: ../../godmode/agentes/module_manager_editor_common.php:1040 +msgid "Cascade Protection Services" +msgstr "サービス関連障害検知抑制" + +#: ../../godmode/agentes/module_manager_editor_common.php:1041 +msgid "" +"Disable the alerts and events of the elements that belong to this service" +msgstr "このサービスに属する要素のアラートとイベントを無効にします" + +#: ../../godmode/agentes/module_manager_editor_common.php:1045 +#: ../../godmode/massive/massive_edit_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 +#: ../../enterprise/godmode/modules/configure_local_component.php:495 msgid "Critical instructions" msgstr "障害時手順" -#: ../../godmode/agentes/module_manager_editor_common.php:576 -#: ../../godmode/massive/massive_edit_modules.php:621 -#: ../../godmode/modules/manage_network_components_form_common.php:175 -#: ../../enterprise/godmode/modules/configure_local_component.php:345 +#: ../../godmode/agentes/module_manager_editor_common.php:1045 +#: ../../godmode/massive/massive_edit_modules.php:1020 +#: ../../godmode/modules/manage_network_components_form_common.php:314 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:859 +#: ../../enterprise/godmode/modules/configure_local_component.php:495 msgid "Instructions when the status is critical" msgstr "障害状態になった時の手順" -#: ../../godmode/agentes/module_manager_editor_common.php:581 -#: ../../godmode/massive/massive_edit_modules.php:625 -#: ../../godmode/modules/manage_network_components_form_common.php:179 -#: ../../enterprise/godmode/modules/configure_local_component.php:350 +#: ../../godmode/agentes/module_manager_editor_common.php:1050 +#: ../../godmode/massive/massive_edit_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../enterprise/godmode/modules/configure_local_component.php:500 msgid "Warning instructions" msgstr "警告時手順" -#: ../../godmode/agentes/module_manager_editor_common.php:582 -#: ../../godmode/massive/massive_edit_modules.php:625 -#: ../../godmode/modules/manage_network_components_form_common.php:179 -#: ../../enterprise/godmode/modules/configure_local_component.php:351 +#: ../../godmode/agentes/module_manager_editor_common.php:1050 +#: ../../godmode/massive/massive_edit_modules.php:1024 +#: ../../godmode/modules/manage_network_components_form_common.php:318 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:863 +#: ../../enterprise/godmode/modules/configure_local_component.php:500 msgid "Instructions when the status is warning" msgstr "警告状態になった時の手順" -#: ../../godmode/agentes/module_manager_editor_common.php:586 -#: ../../godmode/massive/massive_edit_modules.php:629 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../enterprise/godmode/modules/configure_local_component.php:356 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 +#: ../../godmode/massive/massive_edit_modules.php:1028 +#: ../../godmode/modules/manage_network_components_form_common.php:322 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../enterprise/godmode/modules/configure_local_component.php:505 msgid "Unknown instructions" msgstr "不明状態時手順" -#: ../../godmode/agentes/module_manager_editor_common.php:586 -#: ../../godmode/massive/massive_edit_modules.php:629 -#: ../../godmode/modules/manage_network_components_form_common.php:183 -#: ../../enterprise/godmode/modules/configure_local_component.php:357 +#: ../../godmode/agentes/module_manager_editor_common.php:1054 +#: ../../godmode/massive/massive_edit_modules.php:1028 +#: ../../godmode/modules/manage_network_components_form_common.php:322 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:867 +#: ../../enterprise/godmode/modules/configure_local_component.php:505 msgid "Instructions when the status is unknown" msgstr "不明状態になった時の手順" -#: ../../godmode/agentes/module_manager_editor_common.php:593 -#: ../../godmode/agentes/module_manager_editor_common.php:602 -#: ../../godmode/agentes/module_manager_editor_common.php:612 +#: ../../godmode/agentes/module_manager_editor_common.php:1061 +#: ../../godmode/agentes/module_manager_editor_common.php:1069 +#: ../../godmode/agentes/module_manager_editor_common.php:1078 msgid "Cron from" msgstr "Cron 開始" -#: ../../godmode/agentes/module_manager_editor_common.php:597 -#: ../../godmode/agentes/module_manager_editor_common.php:606 -#: ../../godmode/agentes/module_manager_editor_common.php:616 +#: ../../godmode/agentes/module_manager_editor_common.php:1065 +#: ../../godmode/agentes/module_manager_editor_common.php:1073 +#: ../../godmode/agentes/module_manager_editor_common.php:1082 msgid "Cron to" msgstr "Cron 終了" -#: ../../godmode/agentes/module_manager_editor_common.php:621 -#: ../../godmode/massive/massive_edit_modules.php:638 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:68 +#: ../../godmode/agentes/module_manager_editor_common.php:1087 +#: ../../godmode/massive/massive_edit_modules.php:1050 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:887 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:80 msgid "Timeout" msgstr "タイムアウト" -#: ../../godmode/agentes/module_manager_editor_common.php:622 -#: ../../godmode/massive/massive_edit_modules.php:642 +#: ../../godmode/agentes/module_manager_editor_common.php:1088 +#: ../../godmode/massive/massive_edit_modules.php:1059 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:896 msgid "Seconds that agent will wait for the execution of the module." msgstr "エージェントがモジュールの実行完了を待つ秒数。" -#: ../../godmode/agentes/module_manager_editor_common.php:624 -#: ../../godmode/massive/massive_edit_modules.php:644 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:65 +#: ../../godmode/agentes/module_manager_editor_common.php:1090 +#: ../../godmode/massive/massive_edit_modules.php:1063 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:440 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:900 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:77 msgid "Retries" msgstr "リトライ" -#: ../../godmode/agentes/module_manager_editor_common.php:625 -#: ../../godmode/massive/massive_edit_modules.php:647 +#: ../../godmode/agentes/module_manager_editor_common.php:1091 +#: ../../godmode/massive/massive_edit_modules.php:1065 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:455 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:902 msgid "Number of retries that the module will attempt to run." msgstr "モジュールを再実行する回数。" -#: ../../godmode/agentes/module_manager_editor_common.php:629 -#: ../../godmode/massive/massive_edit_modules.php:597 -#: ../../godmode/modules/manage_network_components_form_common.php:190 -#: ../../enterprise/godmode/modules/configure_local_component.php:366 +#: ../../godmode/agentes/module_manager_editor_common.php:1095 +#: ../../godmode/massive/massive_edit_modules.php:988 +#: ../../godmode/modules/manage_network_components_form_common.php:329 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 +#: ../../enterprise/godmode/modules/configure_local_component.php:514 msgid "Category" msgstr "操作" -#: ../../godmode/agentes/module_manager_editor_common.php:657 -#: ../../godmode/alerts/configure_alert_template.php:605 -#: ../../godmode/massive/massive_edit_modules.php:539 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1383 -#: ../../godmode/reporting/visual_console_builder.wizard.php:237 -#: ../../godmode/setup/setup_visuals.php:769 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:75 -#: ../../include/functions_visual_map_editor.php:516 -#: ../../include/functions_graph.php:6331 -#: ../../include/functions_snmp_browser.php:452 -#: ../../include/functions_reporting_html.php:735 -#: ../../include/functions_reporting_html.php:1491 -#: ../../include/functions_reporting_html.php:2661 -#: ../../include/functions_reporting_html.php:3220 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:285 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1717 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_pdf.php:822 -#: ../../enterprise/include/functions_reporting_pdf.php:886 -#: ../../enterprise/include/functions_reporting_pdf.php:1010 -#: ../../enterprise/meta/include/functions_autoprovision.php:541 -#: ../../enterprise/operation/services/services.list.php:341 -#: ../../enterprise/operation/services/services.service.php:137 +#: ../../godmode/agentes/module_manager_editor_common.php:1133 +#: ../../godmode/alerts/configure_alert_template.php:725 +#: ../../godmode/massive/massive_edit_modules.php:812 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2086 +#: ../../godmode/reporting/visual_console_builder.wizard.php:339 +#: ../../godmode/setup/setup_visuals.php:1245 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:102 +#: ../../include/ajax/events.php:1686 +#: ../../include/functions_snmp_browser.php:505 +#: ../../include/functions_graph.php:5209 +#: ../../include/functions_visual_map_editor.php:625 +#: ../../include/functions_netflow.php:212 +#: ../../include/functions_reporting_html.php:856 +#: ../../include/functions_reporting_html.php:1785 +#: ../../include/functions_reporting_html.php:3621 +#: ../../include/functions_reporting_html.php:4139 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:359 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:488 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:670 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2266 +#: ../../enterprise/include/functions_reporting_csv.php:951 +#: ../../enterprise/include/functions_reporting_csv.php:977 +#: ../../enterprise/include/functions_reporting_csv.php:1008 +#: ../../enterprise/include/functions_reporting_csv.php:1063 +#: ../../enterprise/include/functions_reporting_csv.php:1167 +#: ../../enterprise/meta/include/functions_autoprovision.php:615 +#: ../../enterprise/operation/services/services.list.php:412 +#: ../../enterprise/operation/services/services.service.php:171 msgid "Value" msgstr "値" -#: ../../godmode/agentes/module_manager_editor_common.php:701 +#: ../../godmode/agentes/module_manager_editor_common.php:1183 +#: ../../godmode/agentes/module_manager_editor_common.php:1281 +msgid "Direct" +msgstr "直接" + +#: ../../godmode/agentes/module_manager_editor_common.php:1184 +#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../include/functions_reporting_html.php:3487 +msgid "Failover" +msgstr "フェイルオーバ" + +#: ../../godmode/agentes/module_manager_editor_common.php:1185 +msgid "Rel. type" +msgstr "" + +#: ../../godmode/agentes/module_manager_editor_common.php:1200 msgid "Add relationship" msgstr "関係の追加" -#: ../../godmode/agentes/module_manager_editor_common.php:719 +#: ../../godmode/agentes/module_manager_editor_common.php:1225 msgid "Changes" msgstr "変更" -#: ../../godmode/agentes/module_manager_editor_common.php:719 +#: ../../godmode/agentes/module_manager_editor_common.php:1226 msgid "Activate this to prevent the relation from being updated or deleted" msgstr "更新や削除に対しても関係を維持するには、これを有効にしてください" -#: ../../godmode/agentes/module_manager_editor_common.php:1204 -#: ../../godmode/modules/manage_network_components_form_common.php:357 -#: ../../enterprise/godmode/modules/configure_local_component.php:717 +#: ../../godmode/agentes/module_manager_editor_common.php:1832 +#: ../../godmode/modules/manage_network_components_form_common.php:634 +#: ../../enterprise/godmode/modules/configure_local_component.php:882 msgid "Normal Status" msgstr "正常状態" -#: ../../godmode/agentes/module_manager_editor_common.php:1205 -#: ../../godmode/modules/manage_network_components_form_common.php:358 -#: ../../enterprise/godmode/modules/configure_local_component.php:718 +#: ../../godmode/agentes/module_manager_editor_common.php:1833 +#: ../../godmode/modules/manage_network_components_form_common.php:635 +#: ../../enterprise/godmode/modules/configure_local_component.php:883 msgid "Warning Status" msgstr "警告状態" -#: ../../godmode/agentes/module_manager_editor_common.php:1206 -#: ../../godmode/modules/manage_network_components_form_common.php:359 -#: ../../enterprise/godmode/modules/configure_local_component.php:719 +#: ../../godmode/agentes/module_manager_editor_common.php:1834 +#: ../../godmode/modules/manage_network_components_form_common.php:636 +#: ../../enterprise/godmode/modules/configure_local_component.php:884 msgid "Critical Status" msgstr "障害状態" -#: ../../godmode/agentes/module_manager_editor_common.php:1208 -#: ../../godmode/modules/manage_network_components_form_common.php:361 -#: ../../enterprise/godmode/modules/configure_local_component.php:721 +#: ../../godmode/agentes/module_manager_editor_common.php:1836 +#: ../../godmode/modules/manage_network_components_form_common.php:638 +#: ../../enterprise/godmode/modules/configure_local_component.php:886 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "警告の最大値は、警告の最小値よりも大きくしてください" -#: ../../godmode/agentes/module_manager_editor_common.php:1209 -#: ../../godmode/modules/manage_network_components_form_common.php:362 -#: ../../enterprise/godmode/modules/configure_local_component.php:722 +#: ../../godmode/agentes/module_manager_editor_common.php:1837 +#: ../../godmode/modules/manage_network_components_form_common.php:639 +#: ../../enterprise/godmode/modules/configure_local_component.php:887 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "障害の最大値は、障害の最小値よりも大きくしてください" -#: ../../godmode/agentes/module_manager_editor_data.php:17 -#: ../../operation/agentes/status_monitor.php:381 -#: ../../enterprise/operation/agentes/tag_view.php:180 +#: ../../godmode/agentes/module_manager_editor_data.php:15 +#: ../../operation/agentes/status_monitor.php:511 +#: ../../enterprise/operation/agentes/tag_view.php:252 msgid "Data server module" msgstr "データサーバモジュール" -#: ../../godmode/agentes/module_manager_editor_network.php:27 -#: ../../include/functions_snmp_browser.php:670 -msgid "Search matches" -msgstr "検索マッチ" - -#: ../../godmode/agentes/module_manager_editor_network.php:64 -#: ../../operation/agentes/status_monitor.php:383 -#: ../../enterprise/operation/agentes/tag_view.php:182 +#: ../../godmode/agentes/module_manager_editor_network.php:77 +#: ../../operation/agentes/status_monitor.php:513 +#: ../../enterprise/operation/agentes/tag_view.php:254 msgid "Network server module" msgstr "ネットワークサーバモジュール" -#: ../../godmode/agentes/module_manager_editor_network.php:85 -#: ../../godmode/massive/massive_edit_modules.php:510 -#: ../../include/ajax/events.php:529 -#: ../../enterprise/godmode/services/services.service.php:298 -#: ../../enterprise/meta/include/functions_wizard_meta.php:390 -#: ../../enterprise/operation/services/services.list.php:190 -#: ../../enterprise/operation/services/services.table_services.php:159 +#: ../../godmode/agentes/module_manager_editor_network.php:94 +#: ../../godmode/massive/massive_edit_modules.php:745 +#: ../../include/ajax/events.php:1511 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:596 +#: ../../enterprise/godmode/services/services.service.php:400 +#: ../../enterprise/meta/include/functions_wizard_meta.php:492 +#: ../../enterprise/operation/services/services.list.php:228 +#: ../../enterprise/operation/services/services.table_services.php:207 msgid "Auto" msgstr "自動" -#: ../../godmode/agentes/module_manager_editor_network.php:86 -#: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../enterprise/meta/include/functions_wizard_meta.php:391 +#: ../../godmode/agentes/module_manager_editor_network.php:95 +#: ../../godmode/massive/massive_edit_modules.php:746 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:597 +#: ../../enterprise/meta/include/functions_wizard_meta.php:493 msgid "Force primary key" msgstr "プライマリを利用" -#: ../../godmode/agentes/module_manager_editor_network.php:87 -#: ../../godmode/massive/massive_edit_modules.php:512 -#: ../../include/functions_html.php:666 ../../include/functions_html.php:667 -#: ../../include/functions_html.php:745 ../../include/functions_html.php:746 -#: ../../include/functions_html.php:860 ../../include/functions_html.php:861 -#: ../../enterprise/extensions/cron/functions.php:236 -#: ../../enterprise/godmode/setup/setup_acl.php:355 -#: ../../enterprise/godmode/setup/setup_acl.php:599 -#: ../../enterprise/include/functions_backup.php:483 -#: ../../enterprise/include/functions_backup.php:484 -#: ../../enterprise/meta/include/functions_wizard_meta.php:392 -#: ../../enterprise/meta/include/functions_autoprovision.php:314 +#: ../../godmode/agentes/module_manager_editor_network.php:96 +#: ../../godmode/massive/massive_edit_modules.php:747 +#: ../../include/class/CredentialStore.class.php:866 +#: ../../include/functions_html.php:842 ../../include/functions_html.php:843 +#: ../../include/functions_html.php:947 ../../include/functions_html.php:948 +#: ../../include/functions_html.php:1108 ../../include/functions_html.php:1109 +#: ../../operation/netflow/nf_live_view.php:384 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:598 +#: ../../enterprise/godmode/setup/setup_acl.php:373 +#: ../../enterprise/godmode/setup/setup_acl.php:667 +#: ../../enterprise/include/functions_backup.php:492 +#: ../../enterprise/include/functions_backup.php:493 +#: ../../enterprise/include/functions_cron.php:542 +#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_wizard_meta.php:494 msgid "Custom" msgstr "カスタム" -#: ../../godmode/agentes/module_manager_editor_network.php:152 -#: ../../godmode/massive/massive_edit_modules.php:505 +#: ../../godmode/agentes/module_manager_editor_network.php:227 +#: ../../godmode/massive/massive_edit_modules.php:734 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:585 msgid "SNMP OID" msgstr "SNMP OID" -#: ../../godmode/agentes/module_manager_editor_network.php:171 -#: ../../godmode/massive/massive_edit_modules.php:656 -#: ../../godmode/modules/manage_network_components_form_network.php:90 +#: ../../godmode/agentes/module_manager_editor_network.php:281 +#: ../../godmode/massive/massive_edit_modules.php:1076 +#: ../../godmode/modules/manage_network_components_form_network.php:196 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:913 msgid "TCP send" msgstr "TCP 送信文字列" -#: ../../godmode/agentes/module_manager_editor_network.php:177 -#: ../../godmode/massive/massive_edit_modules.php:659 -#: ../../godmode/modules/manage_network_components_form_network.php:97 +#: ../../godmode/agentes/module_manager_editor_network.php:295 +#: ../../godmode/massive/massive_edit_modules.php:1079 +#: ../../godmode/modules/manage_network_components_form_network.php:203 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:916 msgid "TCP receive" msgstr "TCP 受信文字列" -#: ../../godmode/agentes/module_manager_editor_network.php:219 -#: ../../godmode/agentes/module_manager_editor_network.php:229 -#: ../../godmode/massive/massive_edit_modules.php:527 -#: ../../godmode/massive/massive_edit_modules.php:531 +#: ../../godmode/agentes/module_manager_editor_network.php:349 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:789 +#: ../../godmode/massive/massive_edit_modules.php:793 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:647 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 +#: ../../enterprise/include/functions_hostdevices.php:132 +#: ../../enterprise/include/functions_hostdevices.php:163 msgid "The pass length must be eight character minimum." msgstr "パスワード長は、最低8文字以上必要です。" -#: ../../godmode/agentes/module_manager_editor_network.php:229 -#: ../../godmode/massive/massive_edit_modules.php:531 -#: ../../godmode/modules/manage_network_components_form_network.php:67 -#: ../../include/functions_snmp_browser.php:605 +#: ../../godmode/agentes/module_manager_editor_network.php:371 +#: ../../godmode/massive/massive_edit_modules.php:793 +#: ../../godmode/modules/manage_network_components_form_network.php:136 +#: ../../include/functions_snmp_browser.php:702 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:651 +#: ../../enterprise/include/functions_hostdevices.php:161 msgid "Privacy pass" msgstr "暗号化パスワード" -#: ../../godmode/agentes/module_manager_editor_plugin.php:47 -#: ../../operation/agentes/status_monitor.php:385 -#: ../../enterprise/operation/agentes/tag_view.php:185 +#: ../../godmode/agentes/module_manager_editor_network.php:433 +#: ../../godmode/alerts/configure_alert_action.php:147 +#: ../../godmode/alerts/configure_alert_command.php:176 +#: ../../godmode/events/event_responses.editor.php:139 +#: ../../godmode/events/event_responses.editor.php:146 +#: ../../godmode/massive/massive_edit_modules.php:1109 +#: ../../godmode/massive/massive_edit_plugins.php:492 +#: ../../godmode/modules/manage_network_components_form_network.php:210 +#: ../../godmode/servers/plugin.php:422 ../../godmode/servers/plugin.php:427 +#: ../../godmode/servers/plugin.php:971 +#: ../../include/class/ManageNetScanScripts.class.php:427 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 +msgid "Command" +msgstr "コマンド" + +#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/massive/massive_edit_modules.php:1126 +#: ../../godmode/modules/manage_network_components_form_network.php:229 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:963 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 +msgid "Credential identifier" +msgstr "認証情報識別子" + +#: ../../godmode/agentes/module_manager_editor_network.php:468 +#: ../../godmode/massive/massive_edit_modules.php:1140 +#: ../../godmode/modules/manage_network_components_form_network.php:245 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:977 +msgid "Inherited" +msgstr "継承" + +#: ../../godmode/agentes/module_manager_editor_network.php:470 +msgid "Windows remote" +msgstr "リモート Windows" + +#: ../../godmode/agentes/module_manager_editor_network.php:473 +msgid "Connection method" +msgstr "接続方法" + +#: ../../godmode/agentes/module_manager_editor_plugin.php:46 +#: ../../operation/agentes/status_monitor.php:517 +#: ../../enterprise/operation/agentes/tag_view.php:258 msgid "Plugin server module" msgstr "プラグインサーバモジュール" -#: ../../godmode/agentes/module_manager_editor_prediction.php:88 -#: ../../operation/agentes/status_monitor.php:389 -#: ../../enterprise/operation/agentes/tag_view.php:191 +#: ../../godmode/agentes/module_manager_editor_prediction.php:93 +#: ../../operation/agentes/status_monitor.php:525 +#: ../../enterprise/operation/agentes/tag_view.php:266 msgid "Prediction server module" msgstr "予測サーバモジュール" -#: ../../godmode/agentes/module_manager_editor_prediction.php:91 +#: ../../godmode/agentes/module_manager_editor_prediction.php:96 msgid "Source module" msgstr "対象モジュール" -#: ../../godmode/agentes/module_manager_editor_prediction.php:119 -#: ../../godmode/agentes/module_manager_editor_prediction.php:144 +#: ../../godmode/agentes/module_manager_editor_prediction.php:133 +#: ../../godmode/agentes/module_manager_editor_prediction.php:151 msgid "Select Module" msgstr "モジュールの選択" -#: ../../godmode/agentes/module_manager_editor_prediction.php:150 -#: ../../godmode/reporting/graph_builder.main.php:158 -#: ../../godmode/reporting/reporting_builder.item_editor.php:787 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 -#: ../../godmode/reporting/visual_console_builder.wizard.php:185 -#: ../../include/functions_visual_map_editor.php:576 -#: ../../enterprise/dashboard/widgets/custom_graph.php:36 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:68 -#: ../../enterprise/dashboard/widgets/single_graph.php:69 -#: ../../enterprise/dashboard/widgets/sla_percent.php:67 -#: ../../enterprise/dashboard/widgets/top_n.php:59 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1343 -#: ../../enterprise/include/functions_reporting_csv.php:267 -#: ../../enterprise/include/functions_reporting_csv.php:270 -#: ../../enterprise/include/functions_reporting_csv.php:389 -#: ../../enterprise/include/functions_reporting_csv.php:416 -#: ../../enterprise/include/functions_reporting_csv.php:442 -#: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:953 -#: ../../enterprise/include/functions_reporting_csv.php:1032 +#: ../../godmode/agentes/module_manager_editor_prediction.php:159 +#: ../../godmode/reporting/graph_builder.main.php:141 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1047 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/reporting/visual_console_builder.wizard.php:262 +#: ../../include/functions_visual_map_editor.php:720 +#: ../../enterprise/dashboard/widgets/custom_graph.php:45 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:88 +#: ../../enterprise/dashboard/widgets/single_graph.php:84 +#: ../../enterprise/dashboard/widgets/sla_percent.php:87 +#: ../../enterprise/dashboard/widgets/top_n.php:61 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1603 +#: ../../enterprise/include/functions_reporting_csv.php:455 +#: ../../enterprise/include/functions_reporting_csv.php:458 +#: ../../enterprise/include/functions_reporting_csv.php:738 +#: ../../enterprise/include/functions_reporting_csv.php:769 +#: ../../enterprise/include/functions_reporting_csv.php:801 +#: ../../enterprise/include/functions_reporting_csv.php:861 +#: ../../enterprise/include/functions_reporting_csv.php:977 +#: ../../enterprise/include/functions_reporting_csv.php:1008 +#: ../../enterprise/include/functions_reporting_csv.php:1063 +#: ../../enterprise/include/functions_reporting_csv.php:1167 +#: ../../enterprise/include/functions_reporting_csv.php:1222 +#: ../../enterprise/include/functions_reporting_csv.php:1288 +#: ../../enterprise/include/functions_reporting_csv.php:1674 msgid "Period" msgstr "更新間隔" -#: ../../godmode/agentes/module_manager_editor_prediction.php:152 -#: ../../godmode/agentes/planned_downtime.editor.php:548 -#: ../../enterprise/extensions/cron/functions.php:204 -#: ../../enterprise/extensions/vmware/functions.php:27 +#: ../../godmode/agentes/module_manager_editor_prediction.php:161 +#: ../../godmode/agentes/planned_downtime.editor.php:734 +#: ../../enterprise/include/functions_cron.php:467 msgid "Weekly" msgstr "週次" -#: ../../godmode/agentes/module_manager_editor_prediction.php:153 -#: ../../godmode/agentes/planned_downtime.editor.php:549 -#: ../../enterprise/extensions/cron/functions.php:205 -#: ../../enterprise/extensions/vmware/functions.php:28 +#: ../../godmode/agentes/module_manager_editor_prediction.php:162 +#: ../../godmode/agentes/planned_downtime.editor.php:735 +#: ../../enterprise/include/functions_cron.php:468 msgid "Monthly" msgstr "月次" -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../enterprise/extensions/cron/functions.php:203 -#: ../../enterprise/extensions/vmware/functions.php:26 +#: ../../godmode/agentes/module_manager_editor_prediction.php:163 +#: ../../include/functions_netflow.php:1600 +#: ../../enterprise/include/functions_cron.php:466 msgid "Daily" msgstr "日次" -#: ../../godmode/agentes/module_manager_editor_wmi.php:32 -#: ../../operation/agentes/status_monitor.php:387 -#: ../../enterprise/operation/agentes/tag_view.php:188 +#: ../../godmode/agentes/module_manager_editor_wmi.php:33 +#: ../../operation/agentes/status_monitor.php:521 +#: ../../enterprise/operation/agentes/tag_view.php:262 msgid "WMI server module" msgstr "WMI サーバモジュール" -#: ../../godmode/agentes/module_manager_editor_wmi.php:64 -#: ../../godmode/massive/massive_edit_modules.php:662 -#: ../../godmode/modules/manage_network_components_form_wmi.php:32 +#: ../../godmode/agentes/module_manager_editor_wmi.php:47 +msgid "Optional. WMI namespace. If unsure leave blank." +msgstr "オプション。WMI 名前空間。不明な場合は空白のままにします。" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:93 +#: ../../godmode/massive/massive_edit_modules.php:1082 +#: ../../godmode/modules/manage_network_components_form_wmi.php:31 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:919 msgid "WMI query" msgstr "WMI クエリ" -#: ../../godmode/agentes/module_manager_editor_wmi.php:73 -#: ../../godmode/massive/massive_edit_modules.php:665 -#: ../../godmode/modules/manage_network_components_form_wmi.php:34 +#: ../../godmode/agentes/module_manager_editor_wmi.php:111 +#: ../../godmode/massive/massive_edit_modules.php:1085 +#: ../../godmode/modules/manage_network_components_form_wmi.php:33 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:922 msgid "Key string" msgstr "Key 文字列" -#: ../../godmode/agentes/module_manager_editor_wmi.php:77 -#: ../../godmode/massive/massive_edit_modules.php:668 -#: ../../godmode/modules/manage_network_components_form_wmi.php:40 +#: ../../godmode/agentes/module_manager_editor_wmi.php:111 +msgid "" +"Optional. Substring to look for in the WQL query result. The module returns " +"1 if found, 0 if not." +msgstr "オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は 1 を返し、見つからない場合は 0 を返します。" + +#: ../../godmode/agentes/module_manager_editor_wmi.php:124 +#: ../../godmode/massive/massive_edit_modules.php:1088 +#: ../../godmode/modules/manage_network_components_form_wmi.php:39 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:925 msgid "Field number" msgstr "フィールド番号" -#: ../../godmode/agentes/planned_downtime.editor.php:38 -#: ../../godmode/alerts/alert_list.php:326 -#: ../../godmode/category/category.php:58 ../../include/functions_html.php:679 -#: ../../include/functions_html.php:680 ../../include/functions_html.php:758 -#: ../../include/functions_html.php:759 ../../include/functions_html.php:876 -#: ../../include/functions_html.php:877 ../../operation/events/events.php:431 -#: ../../operation/snmpconsole/snmp_statistics.php:55 -#: ../../operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/include/functions_backup.php:496 -#: ../../enterprise/include/functions_backup.php:497 +#: ../../godmode/agentes/module_manager_editor_wmi.php:124 +msgid "" +"Column number to retrieve from the WQL query result (starting from zero)." +msgstr "WQL クエリ結果から取得する列番号(ゼロから開始)。" + +#: ../../godmode/agentes/planned_downtime.editor.php:56 +#: ../../godmode/alerts/alert_list.php:506 +#: ../../godmode/category/category.php:57 ../../include/functions_html.php:858 +#: ../../include/functions_html.php:859 ../../include/functions_html.php:963 +#: ../../include/functions_html.php:964 ../../include/functions_html.php:1143 +#: ../../include/functions_html.php:1144 ../../operation/events/events.php:784 +#: ../../operation/snmpconsole/snmp_statistics.php:48 +#: ../../operation/snmpconsole/snmp_view.php:81 +#: ../../enterprise/include/functions_backup.php:508 +#: ../../enterprise/include/functions_backup.php:509 msgid "List" msgstr "一覧" -#: ../../godmode/agentes/planned_downtime.editor.php:117 -#: ../../godmode/agentes/planned_downtime.editor.php:202 -#: ../../godmode/agentes/planned_downtime.editor.php:970 +#: ../../godmode/agentes/planned_downtime.editor.php:181 +#: ../../godmode/agentes/planned_downtime.editor.php:313 +#: ../../godmode/agentes/planned_downtime.editor.php:1235 msgid "This elements cannot be modified while the downtime is being executed" msgstr "計画停止実行中は、この要素は変更できません。" -#: ../../godmode/agentes/planned_downtime.editor.php:227 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:678 +#: ../../godmode/agentes/planned_downtime.editor.php:346 +#: ../../include/functions_planned_downtimes.php:40 +#: ../../include/functions_planned_downtimes.php:744 msgid "" "Not created. Error inserting data. Start time must be higher than the " "current time" msgstr "作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなければいけません。" -#: ../../godmode/agentes/planned_downtime.editor.php:230 -#: ../../godmode/agentes/planned_downtime.editor.php:233 -#: ../../godmode/agentes/planned_downtime.editor.php:238 -#: ../../godmode/agentes/planned_downtime.editor.php:241 -#: ../../include/functions_planned_downtimes.php:45 -#: ../../include/functions_planned_downtimes.php:50 -#: ../../include/functions_planned_downtimes.php:53 -#: ../../include/functions_planned_downtimes.php:682 -#: ../../include/functions_planned_downtimes.php:687 -#: ../../include/functions_planned_downtimes.php:695 -#: ../../include/functions_planned_downtimes.php:702 +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../godmode/agentes/planned_downtime.editor.php:354 +#: ../../godmode/agentes/planned_downtime.editor.php:361 +#: ../../godmode/agentes/planned_downtime.editor.php:365 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:749 +#: ../../include/functions_planned_downtimes.php:756 +#: ../../include/functions_planned_downtimes.php:764 +#: ../../include/functions_planned_downtimes.php:772 +#: ../../include/functions_planned_downtimes.php:777 +#: ../../include/functions_planned_downtimes.php:782 +#: ../../include/functions_planned_downtimes.php:787 +#: ../../include/functions_planned_downtimes.php:792 +#: ../../include/functions_planned_downtimes.php:797 +#: ../../include/functions_planned_downtimes.php:802 msgid "Not created. Error inserting data" msgstr "設定できませんでした。入力データエラーです。" -#: ../../godmode/agentes/planned_downtime.editor.php:230 -#: ../../include/functions_planned_downtimes.php:45 -#: ../../include/functions_planned_downtimes.php:683 +#: ../../godmode/agentes/planned_downtime.editor.php:350 +#: ../../include/functions_planned_downtimes.php:42 +#: ../../include/functions_planned_downtimes.php:756 msgid "The end date must be higher than the start date" msgstr "終了日は開始日より後でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:233 -#: ../../include/functions_planned_downtimes.php:688 +#: ../../godmode/agentes/planned_downtime.editor.php:354 +#: ../../include/functions_planned_downtimes.php:749 msgid "The end date must be higher than the current time" msgstr "終了日時は開始日時より後でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:238 -#: ../../godmode/agentes/planned_downtime.editor.php:607 -#: ../../godmode/agentes/planned_downtime.editor.php:615 -#: ../../include/functions_planned_downtimes.php:50 -#: ../../include/functions_planned_downtimes.php:696 +#: ../../godmode/agentes/planned_downtime.editor.php:361 +#: ../../godmode/agentes/planned_downtime.editor.php:807 +#: ../../godmode/agentes/planned_downtime.editor.php:820 +#: ../../include/functions_planned_downtimes.php:47 +#: ../../include/functions_planned_downtimes.php:764 msgid "The end time must be higher than the start time" msgstr "終了時刻は開始時刻より後でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:241 -#: ../../godmode/agentes/planned_downtime.editor.php:596 -#: ../../include/functions_planned_downtimes.php:53 -#: ../../include/functions_planned_downtimes.php:703 +#: ../../godmode/agentes/planned_downtime.editor.php:365 +#: ../../godmode/agentes/planned_downtime.editor.php:792 +#: ../../include/functions_planned_downtimes.php:49 +#: ../../include/functions_planned_downtimes.php:772 msgid "The end day must be higher than the start day" msgstr "終了日は開始日より後でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:290 -#: ../../include/functions_planned_downtimes.php:94 -#: ../../include/functions_planned_downtimes.php:717 +#: ../../godmode/agentes/planned_downtime.editor.php:417 +#: ../../include/functions_planned_downtimes.php:98 +#: ../../include/functions_planned_downtimes.php:816 msgid "Each planned downtime must have a different name" msgstr "それぞれの計画停止は異なる名前でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:295 -#: ../../godmode/agentes/planned_downtime.editor.php:322 -#: ../../include/functions_planned_downtimes.php:100 -#: ../../include/functions_planned_downtimes.php:722 +#: ../../godmode/agentes/planned_downtime.editor.php:422 +#: ../../godmode/agentes/planned_downtime.editor.php:454 +#: ../../include/functions_planned_downtimes.php:103 +#: ../../include/functions_planned_downtimes.php:822 msgid "Planned downtime must have a name" msgstr "計画停止には名前が必要です" -#: ../../godmode/agentes/planned_downtime.editor.php:333 +#: ../../godmode/agentes/planned_downtime.editor.php:467 msgid "Cannot be modified while the downtime is being executed" msgstr "計画停止実行中は編集できません" -#: ../../godmode/agentes/planned_downtime.editor.php:374 -#: ../../godmode/alerts/alert_actions.php:263 -#: ../../godmode/alerts/alert_list.php:196 -#: ../../godmode/alerts/alert_special_days.php:207 -#: ../../godmode/alerts/alert_templates.php:153 -#: ../../godmode/alerts/configure_alert_command.php:94 -#: ../../godmode/alerts/configure_alert_template.php:448 -#: ../../godmode/modules/manage_network_components.php:346 -#: ../../godmode/setup/gis.php:41 +#: ../../godmode/agentes/planned_downtime.editor.php:512 +#: ../../godmode/agentes/status_monitor_custom_fields.php:57 +#: ../../godmode/alerts/alert_list.php:93 +#: ../../godmode/alerts/alert_list.php:305 +#: ../../godmode/alerts/alert_special_days.php:227 +#: ../../godmode/alerts/alert_templates.php:163 +#: ../../godmode/alerts/configure_alert_command.php:113 +#: ../../godmode/alerts/configure_alert_template.php:505 +#: ../../godmode/modules/manage_network_components.php:387 +#: ../../godmode/setup/gis.php:47 ../../include/functions_alerts.php:2825 #: ../../include/functions_planned_downtimes.php:122 -#: ../../operation/agentes/pandora_networkmap.php:166 -#: ../../operation/agentes/pandora_networkmap.php:401 -#: ../../operation/incidents/incident.php:111 -#: ../../operation/snmpconsole/snmp_view.php:135 -#: ../../enterprise/extensions/ipam/ipam_action.php:128 -#: ../../enterprise/extensions/ipam/ipam_massive.php:42 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:99 -#: ../../enterprise/godmode/alerts/alert_events.php:375 -#: ../../enterprise/godmode/alerts/alert_events_list.php:95 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:159 +#: ../../operation/agentes/pandora_networkmap.php:202 +#: ../../operation/agentes/pandora_networkmap.php:500 +#: ../../operation/incidents/incident.php:158 +#: ../../operation/snmpconsole/snmp_view.php:138 +#: ../../enterprise/extensions/ipam/ipam_action.php:186 +#: ../../enterprise/extensions/ipam/ipam_massive.php:48 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:105 +#: ../../enterprise/godmode/alerts/alert_events.php:427 +#: ../../enterprise/godmode/alerts/alert_events_list.php:100 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:176 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:106 -#: ../../enterprise/godmode/modules/local_components.php:309 -#: ../../enterprise/godmode/policies/policies.php:159 -#: ../../enterprise/godmode/policies/policy_modules.php:1070 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:53 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:130 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:121 -#: ../../enterprise/operation/agentes/transactional_map.php:112 +#: ../../enterprise/godmode/modules/local_components.php:338 +#: ../../enterprise/godmode/policies/policies.php:246 +#: ../../enterprise/godmode/policies/policy_modules.php:1265 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:60 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:109 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:127 +#: ../../enterprise/operation/agentes/transactional_map.php:134 msgid "Could not be updated" msgstr "更新に失敗しました。" -#: ../../godmode/agentes/planned_downtime.editor.php:500 +#: ../../godmode/agentes/planned_downtime.editor.php:674 msgid "Quiet: Modules will not generate events or fire alerts." msgstr "静観: モジュールはイベント生成やアラートの発報を行いません" -#: ../../godmode/agentes/planned_downtime.editor.php:501 +#: ../../godmode/agentes/planned_downtime.editor.php:674 msgid "Disable Agents: Disables the selected agents." msgstr "エージェント無効化: 選択したエージェントを無効化します。" -#: ../../godmode/agentes/planned_downtime.editor.php:502 +#: ../../godmode/agentes/planned_downtime.editor.php:674 msgid "Disable Alerts: Disable alerts for the selected agents." msgstr "アラートのみ無効化: 選択したエージェントのアラートを無効化します。" -#: ../../godmode/agentes/planned_downtime.editor.php:504 -#: ../../godmode/agentes/planned_downtime.list.php:428 +#: ../../godmode/agentes/planned_downtime.editor.php:680 +#: ../../godmode/agentes/planned_downtime.list.php:438 msgid "Disabled Agents" msgstr "エージェント無効化" -#: ../../godmode/agentes/planned_downtime.editor.php:505 -#: ../../godmode/agentes/planned_downtime.list.php:429 +#: ../../godmode/agentes/planned_downtime.editor.php:681 +#: ../../godmode/agentes/planned_downtime.list.php:439 msgid "Disabled only Alerts" msgstr "アラートのみ無効化" -#: ../../godmode/agentes/planned_downtime.editor.php:508 -#: ../../godmode/agentes/planned_downtime.list.php:395 -#: ../../include/functions_reporting_html.php:4100 -#: ../../enterprise/include/functions_reporting.php:4978 -#: ../../enterprise/include/functions_reporting_pdf.php:2503 +#: ../../godmode/agentes/planned_downtime.editor.php:694 +#: ../../godmode/agentes/planned_downtime.list.php:402 +#: ../../include/functions_reporting_html.php:5130 msgid "Execution" msgstr "実行" -#: ../../godmode/agentes/planned_downtime.editor.php:509 -#: ../../godmode/agentes/planned_downtime.list.php:153 +#: ../../godmode/agentes/planned_downtime.editor.php:697 +#: ../../godmode/agentes/planned_downtime.list.php:157 msgid "Once" msgstr "一回のみ" -#: ../../godmode/agentes/planned_downtime.editor.php:510 -#: ../../godmode/agentes/planned_downtime.list.php:153 -#: ../../godmode/agentes/planned_downtime.list.php:434 +#: ../../godmode/agentes/planned_downtime.editor.php:698 +#: ../../godmode/agentes/planned_downtime.list.php:158 +#: ../../godmode/agentes/planned_downtime.list.php:446 msgid "Periodically" msgstr "定期的" -#: ../../godmode/agentes/planned_downtime.editor.php:515 +#: ../../godmode/agentes/planned_downtime.editor.php:713 msgid "Configure the time" msgstr "時間設定" -#: ../../godmode/agentes/planned_downtime.editor.php:521 -#: ../../include/functions_reporting_html.php:63 -#: ../../include/functions_reporting_html.php:3507 +#: ../../godmode/agentes/planned_downtime.editor.php:719 +#: ../../include/functions_reporting_html.php:71 +#: ../../include/functions_reporting_html.php:4470 msgid "From:" msgstr "開始日時:" -#: ../../godmode/agentes/planned_downtime.editor.php:525 -#: ../../godmode/agentes/planned_downtime.editor.php:536 -#: ../../operation/netflow/nf_live_view.php:240 -#: ../../enterprise/extensions/cron/main.php:477 -#: ../../enterprise/operation/log/log_viewer.php:234 -#: ../../enterprise/operation/log/log_viewer.php:242 -msgid "Date format in Pandora is year/month/day" -msgstr "Pandora での日付フォーマットは、年/月/日 です" +#: ../../godmode/agentes/planned_downtime.editor.php:720 +#: ../../godmode/agentes/planned_downtime.editor.php:724 +#: ../../operation/netflow/nf_live_view.php:292 +#: ../../enterprise/operation/log/log_viewer.php:507 +#: ../../enterprise/operation/log/log_viewer.php:538 +msgid "Date format is YY/MM/DD" +msgstr "日付フォーマットは YY/MM/DD です" -#: ../../godmode/agentes/planned_downtime.editor.php:527 -#: ../../godmode/agentes/planned_downtime.editor.php:538 -#: ../../godmode/agentes/planned_downtime.editor.php:606 -#: ../../godmode/agentes/planned_downtime.editor.php:614 -#: ../../godmode/alerts/configure_alert_template.php:543 -#: ../../godmode/alerts/configure_alert_template.php:547 -#: ../../godmode/reporting/reporting_builder.item_editor.php:887 -#: ../../godmode/reporting/reporting_builder.item_editor.php:896 -#: ../../operation/netflow/nf_live_view.php:242 -#: ../../enterprise/extensions/cron/main.php:479 -#: ../../enterprise/operation/log/log_viewer.php:236 -#: ../../enterprise/operation/log/log_viewer.php:244 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "Pandora での時間フォーマットは、時(24時間表記):分:秒 です" +#: ../../godmode/agentes/planned_downtime.editor.php:720 +#: ../../godmode/agentes/planned_downtime.editor.php:724 +#: ../../godmode/alerts/configure_alert_template.php:602 +#: ../../godmode/alerts/configure_alert_template.php:611 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1175 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1196 +#: ../../operation/netflow/nf_live_view.php:292 +#: ../../enterprise/operation/log/log_viewer.php:518 +#: ../../enterprise/operation/log/log_viewer.php:549 +msgid "Watch format is hours (24h):minutes:seconds" +msgstr "フォーマットは、時間(24h):分:秒 です。" -#: ../../godmode/agentes/planned_downtime.editor.php:532 -#: ../../include/functions_reporting_html.php:64 -#: ../../include/functions_reporting_html.php:3508 +#: ../../godmode/agentes/planned_downtime.editor.php:723 +#: ../../include/functions_reporting_html.php:71 +#: ../../include/functions_reporting_html.php:4470 msgid "To:" msgstr "終了日時:" -#: ../../godmode/agentes/planned_downtime.editor.php:546 +#: ../../godmode/agentes/planned_downtime.editor.php:732 msgid "Type Periodicity:" msgstr "定期実行タイプ:" -#: ../../godmode/agentes/planned_downtime.editor.php:559 -#: ../../godmode/alerts/alert_special_days.php:327 -#: ../../godmode/alerts/alert_view.php:208 -#: ../../godmode/alerts/configure_alert_template.php:524 -#: ../../include/functions.php:913 ../../include/functions_reporting.php:10670 -#: ../../enterprise/godmode/alerts/alert_events.php:431 -#: ../../enterprise/include/functions_reporting.php:5014 +#: ../../godmode/agentes/planned_downtime.editor.php:753 +#: ../../godmode/alerts/alert_special_days.php:357 +#: ../../godmode/alerts/alert_view.php:212 +#: ../../godmode/alerts/configure_alert_template.php:584 +#: ../../include/functions.php:1075 ../../include/functions_reporting.php:11658 +#: ../../enterprise/godmode/alerts/alert_events.php:485 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:864 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1776 msgid "Mon" msgstr "月" -#: ../../godmode/agentes/planned_downtime.editor.php:562 -#: ../../godmode/alerts/alert_special_days.php:328 -#: ../../godmode/alerts/alert_view.php:209 -#: ../../godmode/alerts/configure_alert_template.php:526 -#: ../../include/functions.php:915 ../../include/functions_reporting.php:10674 -#: ../../enterprise/godmode/alerts/alert_events.php:433 -#: ../../enterprise/include/functions_reporting.php:5018 +#: ../../godmode/agentes/planned_downtime.editor.php:754 +#: ../../godmode/alerts/alert_special_days.php:358 +#: ../../godmode/alerts/alert_view.php:213 +#: ../../godmode/alerts/configure_alert_template.php:586 +#: ../../include/functions.php:1079 ../../include/functions_reporting.php:11663 +#: ../../enterprise/godmode/alerts/alert_events.php:487 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:865 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1777 msgid "Tue" msgstr "火" -#: ../../godmode/agentes/planned_downtime.editor.php:565 -#: ../../godmode/alerts/alert_special_days.php:329 -#: ../../godmode/alerts/alert_view.php:210 -#: ../../godmode/alerts/configure_alert_template.php:528 -#: ../../include/functions.php:917 ../../include/functions_reporting.php:10678 -#: ../../enterprise/godmode/alerts/alert_events.php:435 -#: ../../enterprise/include/functions_reporting.php:5022 +#: ../../godmode/agentes/planned_downtime.editor.php:755 +#: ../../godmode/alerts/alert_special_days.php:359 +#: ../../godmode/alerts/alert_view.php:214 +#: ../../godmode/alerts/configure_alert_template.php:588 +#: ../../include/functions.php:1083 ../../include/functions_reporting.php:11668 +#: ../../enterprise/godmode/alerts/alert_events.php:489 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:866 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1778 msgid "Wed" msgstr "水" -#: ../../godmode/agentes/planned_downtime.editor.php:568 -#: ../../godmode/alerts/alert_special_days.php:330 -#: ../../godmode/alerts/alert_view.php:211 -#: ../../godmode/alerts/configure_alert_template.php:530 -#: ../../include/functions.php:919 ../../include/functions_reporting.php:10682 -#: ../../enterprise/godmode/alerts/alert_events.php:437 -#: ../../enterprise/include/functions_reporting.php:5026 +#: ../../godmode/agentes/planned_downtime.editor.php:756 +#: ../../godmode/alerts/alert_special_days.php:360 +#: ../../godmode/alerts/alert_view.php:215 +#: ../../godmode/alerts/configure_alert_template.php:590 +#: ../../include/functions.php:1087 ../../include/functions_reporting.php:11673 +#: ../../enterprise/godmode/alerts/alert_events.php:491 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:867 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1779 msgid "Thu" msgstr "木" -#: ../../godmode/agentes/planned_downtime.editor.php:571 -#: ../../godmode/alerts/alert_special_days.php:331 -#: ../../godmode/alerts/alert_view.php:212 -#: ../../godmode/alerts/configure_alert_template.php:532 -#: ../../include/functions.php:921 ../../include/functions_reporting.php:10686 -#: ../../enterprise/godmode/alerts/alert_events.php:439 -#: ../../enterprise/include/functions_reporting.php:5030 +#: ../../godmode/agentes/planned_downtime.editor.php:757 +#: ../../godmode/alerts/alert_special_days.php:361 +#: ../../godmode/alerts/alert_view.php:216 +#: ../../godmode/alerts/configure_alert_template.php:592 +#: ../../include/functions.php:1091 ../../include/functions_reporting.php:11678 +#: ../../enterprise/godmode/alerts/alert_events.php:493 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:868 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1780 msgid "Fri" msgstr "金" -#: ../../godmode/agentes/planned_downtime.editor.php:574 -#: ../../godmode/alerts/alert_special_days.php:332 -#: ../../godmode/alerts/alert_view.php:213 -#: ../../godmode/alerts/configure_alert_template.php:534 -#: ../../include/functions.php:923 ../../include/functions_reporting.php:10690 -#: ../../enterprise/godmode/alerts/alert_events.php:441 -#: ../../enterprise/include/functions_reporting.php:5034 +#: ../../godmode/agentes/planned_downtime.editor.php:758 +#: ../../godmode/alerts/alert_special_days.php:362 +#: ../../godmode/alerts/alert_view.php:217 +#: ../../godmode/alerts/configure_alert_template.php:594 +#: ../../include/functions.php:1095 ../../include/functions_reporting.php:11683 +#: ../../enterprise/godmode/alerts/alert_events.php:495 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:869 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1781 msgid "Sat" msgstr "土" -#: ../../godmode/agentes/planned_downtime.editor.php:577 -#: ../../godmode/alerts/alert_special_days.php:326 -#: ../../godmode/alerts/alert_view.php:214 -#: ../../godmode/alerts/configure_alert_template.php:536 -#: ../../include/functions.php:925 ../../include/functions_reporting.php:10694 -#: ../../enterprise/godmode/alerts/alert_events.php:443 -#: ../../enterprise/include/functions_reporting.php:5038 +#: ../../godmode/agentes/planned_downtime.editor.php:759 +#: ../../godmode/alerts/alert_special_days.php:356 +#: ../../godmode/alerts/alert_view.php:218 +#: ../../godmode/alerts/configure_alert_template.php:596 +#: ../../include/functions.php:1099 ../../include/functions_reporting.php:11688 +#: ../../enterprise/godmode/alerts/alert_events.php:497 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:870 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1782 msgid "Sun" msgstr "日" -#: ../../godmode/agentes/planned_downtime.editor.php:584 +#: ../../godmode/agentes/planned_downtime.editor.php:764 msgid "From day:" msgstr "開始日:" -#: ../../godmode/agentes/planned_downtime.editor.php:590 +#: ../../godmode/agentes/planned_downtime.editor.php:778 msgid "To day:" msgstr "終了日:" -#: ../../godmode/agentes/planned_downtime.editor.php:601 +#: ../../godmode/agentes/planned_downtime.editor.php:797 msgid "From hour:" msgstr "開始時間:" -#: ../../godmode/agentes/planned_downtime.editor.php:609 +#: ../../godmode/agentes/planned_downtime.editor.php:807 +#: ../../godmode/agentes/planned_downtime.editor.php:820 +msgid "Watch format is hours (24h):minutes:seconds." +msgstr "フォーマットは、時間(24h):分:秒 です" + +#: ../../godmode/agentes/planned_downtime.editor.php:810 msgid "To hour:" msgstr "終了時間:" -#: ../../godmode/agentes/planned_downtime.editor.php:724 +#: ../../godmode/agentes/planned_downtime.editor.php:941 +#: ../../enterprise/include/class/Omnishell.class.php:812 msgid "Available agents" msgstr "エージェント" -#: ../../godmode/agentes/planned_downtime.editor.php:738 +#: ../../godmode/agentes/planned_downtime.editor.php:971 msgid "Available modules:" msgstr "存在するモジュール:" -#: ../../godmode/agentes/planned_downtime.editor.php:739 +#: ../../godmode/agentes/planned_downtime.editor.php:972 msgid "Only for type Quiet for downtimes." msgstr "静観タイプの場合のみ" -#: ../../godmode/agentes/planned_downtime.editor.php:755 +#: ../../godmode/agentes/planned_downtime.editor.php:1009 msgid "Agents planned for this downtime" msgstr "この計画停止が予定される対象エージェント" -#: ../../godmode/agentes/planned_downtime.editor.php:770 +#: ../../godmode/agentes/planned_downtime.editor.php:1027 msgid "There are no agents" msgstr "エージェントがありません" -#: ../../godmode/agentes/planned_downtime.editor.php:782 -#: ../../godmode/users/user_list.php:269 ../../include/ajax/module.php:788 -#: ../../include/functions_treeview.php:608 -#: ../../include/functions_events.php:2139 -#: ../../mobile/operation/agent.php:188 ../../mobile/operation/agents.php:85 -#: ../../mobile/operation/agents.php:360 ../../mobile/operation/agents.php:362 -#: ../../mobile/operation/agents.php:364 ../../mobile/operation/agents.php:365 -#: ../../operation/agentes/estado_agente.php:579 -#: ../../operation/agentes/estado_generalagente.php:234 -#: ../../operation/agentes/ver_agente.php:771 -#: ../../operation/gis_maps/ajax.php:219 ../../operation/gis_maps/ajax.php:321 -#: ../../operation/search_agents.php:66 ../../operation/search_users.php:47 -#: ../../enterprise/extensions/vmware/ajax.php:101 -#: ../../enterprise/meta/agentsearch.php:109 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -#: ../../enterprise/operation/agentes/policy_view.php:309 -#: ../../enterprise/operation/agentes/tag_view.php:472 -#: ../../enterprise/operation/agentes/ver_agente.php:75 +#: ../../godmode/agentes/planned_downtime.editor.php:1038 +#: ../../godmode/users/user_list.php:333 ../../include/ajax/module.php:842 +#: ../../include/functions_events.php:4076 +#: ../../include/functions_events.php.orig:3982 +#: ../../include/functions_treeview.php:631 +#: ../../mobile/operation/agent.php:211 ../../mobile/operation/agents.php:85 +#: ../../mobile/operation/agents.php:407 ../../mobile/operation/agents.php:409 +#: ../../mobile/operation/agents.php:412 +#: ../../operation/agentes/estado_agente.php:725 +#: ../../operation/agentes/estado_generalagente.php:298 +#: ../../operation/agentes/ver_agente.php:858 +#: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 +#: ../../operation/gis_maps/ajax.php:466 ../../operation/search_agents.php:55 +#: ../../operation/search_users.php:37 +#: ../../enterprise/godmode/reporting/aws_view.php:61 +#: ../../enterprise/meta/agentsearch.php:120 +#: ../../enterprise/operation/agentes/policy_view.php:328 +#: ../../enterprise/operation/agentes/tag_view.php:582 +#: ../../enterprise/operation/agentes/ver_agente.php:74 msgid "Last contact" msgstr "最近の接続" -#: ../../godmode/agentes/planned_downtime.editor.php:806 +#: ../../godmode/agentes/planned_downtime.editor.php:1069 msgid "All alerts" msgstr "全アラート" -#: ../../godmode/agentes/planned_downtime.editor.php:809 +#: ../../godmode/agentes/planned_downtime.editor.php:1071 msgid "Entire agent" -msgstr "全エージェント" +msgstr "エージェント全体" -#: ../../godmode/agentes/planned_downtime.editor.php:813 -#: ../../godmode/agentes/planned_downtime.editor.php:918 +#: ../../godmode/agentes/planned_downtime.editor.php:1074 +#: ../../godmode/agentes/planned_downtime.editor.php:1183 msgid "All modules" msgstr "全モジュール" -#: ../../godmode/agentes/planned_downtime.editor.php:816 -#: ../../godmode/agentes/planned_downtime.editor.php:910 -#: ../../godmode/agentes/planned_downtime.editor.php:914 +#: ../../godmode/agentes/planned_downtime.editor.php:1076 +#: ../../godmode/agentes/planned_downtime.editor.php:1175 +#: ../../godmode/agentes/planned_downtime.editor.php:1179 msgid "Some modules" msgstr "いくつかのモジュール" -#: ../../godmode/agentes/planned_downtime.editor.php:882 +#: ../../godmode/agentes/planned_downtime.editor.php:1144 msgid "Add Module:" msgstr "モジュール追加:" -#: ../../godmode/agentes/planned_downtime.editor.php:1100 +#: ../../godmode/agentes/planned_downtime.editor.php:1365 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3518 msgid "Please select a module." msgstr "モジュールを選択してください。" -#: ../../godmode/agentes/planned_downtime.editor.php:1233 +#: ../../godmode/agentes/planned_downtime.editor.php:1498 msgid "" "WARNING: If you edit this planned downtime, the data of future SLA reports " "may be altered" msgstr "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります" #: ../../godmode/agentes/planned_downtime.export_csv.php:199 -#: ../../godmode/agentes/planned_downtime.list.php:358 +#: ../../godmode/agentes/planned_downtime.list.php:365 msgid "No planned downtime" msgstr "計画停止はありません。" -#: ../../godmode/agentes/planned_downtime.list.php:46 +#: ../../godmode/agentes/planned_downtime.list.php:47 msgid "An error occurred while migrating the malformed planned downtimes" msgstr "不正な計画停止の移動でエラーが発生しました。" @@ -9668,269 +10836,429 @@ msgstr "不正な計画停止の移動でエラーが発生しました。" msgid "Please run the migration again or contact with the administrator" msgstr "移動を再実行するか管理者に連絡してください。" -#: ../../godmode/agentes/planned_downtime.list.php:79 +#: ../../godmode/agentes/planned_downtime.list.php:55 +msgid "Scheduled Downtime" +msgstr "計画停止" + +#: ../../godmode/agentes/planned_downtime.list.php:83 msgid "An error occurred stopping the planned downtime" msgstr "計画停止の中止でエラーが発生しました" -#: ../../godmode/agentes/planned_downtime.list.php:101 +#: ../../godmode/agentes/planned_downtime.list.php:106 msgid "This planned downtime is running" msgstr "この計画停止は実行中です" -#: ../../godmode/agentes/planned_downtime.list.php:108 -#: ../../godmode/events/event_filter.php:57 -#: ../../godmode/events/event_filter.php:78 -#: ../../godmode/modules/manage_nc_groups.php:123 -#: ../../godmode/netflow/nf_edit.php:77 ../../godmode/netflow/nf_edit.php:101 -#: ../../godmode/netflow/nf_item_list.php:106 -#: ../../godmode/netflow/nf_item_list.php:127 -#: ../../godmode/reporting/graphs.php:91 -#: ../../godmode/reporting/graphs.php:101 -#: ../../godmode/reporting/graphs.php:140 -#: ../../godmode/reporting/map_builder.php:101 -#: ../../operation/reporting/graph_viewer.php:46 -#: ../../operation/reporting/graph_viewer.php:53 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:99 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:120 -#: ../../enterprise/godmode/reporting/graph_template_list.php:90 -#: ../../enterprise/godmode/reporting/graph_template_list.php:110 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:226 +#: ../../godmode/agentes/planned_downtime.list.php:113 +#: ../../godmode/events/event_filter.php:55 +#: ../../godmode/events/event_filter.php:82 +#: ../../godmode/modules/manage_nc_groups.php:142 +#: ../../godmode/netflow/nf_edit.php:92 ../../godmode/netflow/nf_edit.php:125 +#: ../../godmode/netflow/nf_item_list.php:123 +#: ../../godmode/netflow/nf_item_list.php:151 +#: ../../godmode/reporting/graphs.php:99 ../../godmode/reporting/graphs.php:110 +#: ../../godmode/reporting/graphs.php:151 +#: ../../godmode/reporting/map_builder.php:166 +#: ../../operation/reporting/graph_viewer.php:41 +#: ../../operation/reporting/graph_viewer.php:49 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:98 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:126 +#: ../../enterprise/godmode/reporting/graph_template_list.php:100 +#: ../../enterprise/godmode/reporting/graph_template_list.php:127 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:244 msgid "Not deleted. Error deleting data" msgstr "データの削除に失敗しました。" -#: ../../godmode/agentes/planned_downtime.list.php:143 -#: ../../godmode/alerts/alert_list.list.php:532 -#: ../../godmode/alerts/alert_list.list.php:536 -#: ../../godmode/alerts/alert_templates.php:94 -#: ../../include/functions_reporting_html.php:2234 -#: ../../include/functions_snmp.php:348 ../../include/functions_snmp.php:354 -#: ../../operation/agentes/gis_view.php:201 -#: ../../operation/reporting/reporting_viewer.php:194 -#: ../../enterprise/godmode/alerts/alert_events_list.php:559 -#: ../../enterprise/godmode/policies/policy_alerts.php:336 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:222 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_pdf.php:359 -#: ../../enterprise/include/functions_reporting_pdf.php:2298 -#: ../../enterprise/include/functions_reporting_pdf.php:2334 -#: ../../enterprise/include/functions_reporting_pdf.php:2372 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:148 +#: ../../godmode/agentes/planned_downtime.list.php:146 +#: ../../godmode/alerts/alert_list.list.php:600 +#: ../../godmode/alerts/alert_list.list.php:603 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../include/functions_snmp.php:402 ../../include/functions_snmp.php:410 +#: ../../include/functions_reporting_html.php:125 +#: ../../include/functions_reporting_html.php:2914 +#: ../../operation/agentes/gis_view.php:217 +#: ../../operation/reporting/reporting_viewer.php:212 +#: ../../enterprise/godmode/alerts/alert_events_list.php:645 +#: ../../enterprise/godmode/policies/policy_alerts.php:370 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:250 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3034 +#: ../../enterprise/include/functions_reporting_csv.php:806 +#: ../../enterprise/include/functions_reporting_csv.php:1118 +#: ../../enterprise/include/functions_reporting_pdf.php:1516 +#: ../../enterprise/include/functions_reporting_pdf.php:1589 +#: ../../enterprise/include/functions_reporting_pdf.php:1702 +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 msgid "From" msgstr "開始" -#: ../../godmode/agentes/planned_downtime.list.php:145 -#: ../../include/functions_reporting_html.php:2235 -#: ../../include/functions_snmp.php:363 ../../include/functions_snmp.php:369 -#: ../../operation/agentes/gis_view.php:202 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_pdf.php:360 -#: ../../enterprise/include/functions_reporting_pdf.php:2335 -#: ../../enterprise/include/functions_reporting_pdf.php:2373 +#: ../../godmode/agentes/planned_downtime.list.php:148 +#: ../../include/functions_snmp.php:423 ../../include/functions_snmp.php:431 +#: ../../include/functions_reporting_html.php:2915 +#: ../../operation/agentes/gis_view.php:218 +#: ../../enterprise/include/functions_reporting_csv.php:807 +#: ../../enterprise/include/functions_reporting_csv.php:1118 +#: ../../enterprise/include/functions_reporting_pdf.php:1704 msgid "To" msgstr "終了" -#: ../../godmode/agentes/planned_downtime.list.php:154 +#: ../../godmode/agentes/planned_downtime.list.php:160 msgid "Execution type" msgstr "実行タイプ" -#: ../../godmode/agentes/planned_downtime.list.php:156 +#: ../../godmode/agentes/planned_downtime.list.php:162 msgid "Show past downtimes" msgstr "終了した計画停止の表示" -#: ../../godmode/agentes/planned_downtime.list.php:391 +#: ../../godmode/agentes/planned_downtime.list.php:398 msgid "Name #Ag." msgstr "名前" -#: ../../godmode/agentes/planned_downtime.list.php:396 -#: ../../godmode/menu.php:131 ../../godmode/setup/setup.php:138 -#: ../../include/functions_reports.php:638 -#: ../../include/functions_reports.php:640 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:210 -#: ../../enterprise/godmode/modules/configure_local_component.php:311 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:166 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:83 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:71 +#: ../../godmode/agentes/planned_downtime.list.php:403 +#: ../../godmode/menu.php:177 ../../godmode/setup/setup.php:210 +#: ../../include/functions_reports.php:854 +#: ../../include/functions_reports.php:858 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:664 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:244 +#: ../../enterprise/godmode/modules/configure_local_component.php:455 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:169 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 msgid "Configuration" msgstr "設定" -#: ../../godmode/agentes/planned_downtime.list.php:397 -#: ../../godmode/agentes/planned_downtime.list.php:446 -#: ../../enterprise/extensions/backup/main.php:136 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:416 -#: ../../enterprise/operation/agentes/transactional_map.php:197 +#: ../../godmode/agentes/planned_downtime.list.php:404 +#: ../../godmode/agentes/planned_downtime.list.php:470 +#: ../../enterprise/extensions/backup/main.php:164 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:486 +#: ../../enterprise/operation/agentes/transactional_map.php:241 msgid "Running" msgstr "実行中" -#: ../../godmode/agentes/planned_downtime.list.php:400 -#: ../../godmode/agentes/planned_downtime.list.php:456 +#: ../../godmode/agentes/planned_downtime.list.php:407 +#: ../../godmode/agentes/planned_downtime.list.php:479 msgid "Stop downtime" msgstr "計画停止の中止" -#: ../../godmode/agentes/planned_downtime.list.php:433 +#: ../../godmode/agentes/planned_downtime.list.php:445 msgid "once" msgstr "一回" -#: ../../godmode/agentes/planned_downtime.list.php:442 +#: ../../godmode/agentes/planned_downtime.list.php:460 msgid "Not running" msgstr "停止中" -#: ../../godmode/agentes/planned_downtime.list.php:477 -#: ../../godmode/alerts/alert_view.php:113 ../../godmode/extensions.php:193 -#: ../../godmode/extensions.php:209 -#: ../../godmode/modules/manage_network_components.php:583 -#: ../../include/functions.php:946 ../../include/functions.php:952 -#: ../../include/functions.php:955 ../../include/functions_treeview.php:158 -#: ../../include/functions_treeview.php:398 -#: ../../include/functions_ui.php:2063 ../../include/functions_ui.php:2073 -#: ../../include/functions_db.php:171 ../../include/functions_events.php:1770 -#: ../../include/functions_events.php:1872 -#: ../../include/functions_events.php:1874 -#: ../../include/functions_events.php:1885 -#: ../../include/functions_events.php:1886 -#: ../../include/functions_events.php:1896 -#: ../../include/functions_events.php:1936 -#: ../../include/functions_events.php:1958 -#: ../../include/functions_events.php:1975 -#: ../../include/functions_events.php:2046 -#: ../../include/functions_events.php:2113 -#: ../../include/functions_events.php:2129 -#: ../../include/functions_events.php:2140 -#: ../../include/functions_events.php:2145 -#: ../../include/functions_events.php:2163 -#: ../../include/functions_events.php:2242 -#: ../../include/functions_events.php:2300 -#: ../../include/functions_events.php:2310 -#: ../../include/functions_events.php:2419 -#: ../../include/functions_events.php:2467 -#: ../../include/functions_events.php:2531 -#: ../../include/functions_events.php:2553 -#: ../../include/functions_events.php:2563 -#: ../../include/functions_reporting_html.php:491 -#: ../../include/functions_reporting_html.php:570 -#: ../../include/functions_reporting_html.php:3286 -#: ../../include/functions_reporting_html.php:3324 -#: ../../mobile/operation/agent.php:180 ../../mobile/operation/agent.php:194 -#: ../../mobile/operation/events.php:148 ../../mobile/operation/events.php:159 -#: ../../mobile/operation/events.php:167 ../../mobile/operation/events.php:240 -#: ../../mobile/operation/events.php:267 ../../mobile/operation/events.php:275 -#: ../../operation/agentes/estado_generalagente.php:180 -#: ../../operation/agentes/estado_generalagente.php:192 -#: ../../operation/agentes/estado_generalagente.php:205 -#: ../../operation/agentes/estado_generalagente.php:309 -#: ../../operation/agentes/estado_generalagente.php:388 -#: ../../operation/snmpconsole/snmp_view.php:799 -#: ../../operation/snmpconsole/snmp_view.php:818 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:159 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:181 -#: ../../enterprise/extensions/ipam/ipam_network.php:559 -#: ../../enterprise/extensions/ipam/ipam_network.php:594 -#: ../../enterprise/include/functions_visual_map.php:277 -#: ../../enterprise/include/functions_reporting.php:4862 -#: ../../enterprise/include/functions_reporting.php:5194 -#: ../../enterprise/include/functions_reporting_pdf.php:1395 -#: ../../enterprise/include/functions_reporting_pdf.php:1476 -#: ../../enterprise/include/functions_reporting_pdf.php:2141 -#: ../../enterprise/include/functions_servicemap.php:265 -#: ../../enterprise/include/functions_services.php:1101 -#: ../../enterprise/include/functions_services.php:1308 -#: ../../enterprise/include/functions_services.php:1786 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:437 +#: ../../godmode/agentes/planned_downtime.list.php:494 +#: ../../godmode/alerts/alert_view.php:108 ../../godmode/extensions.php:189 +#: ../../godmode/extensions.php:204 +#: ../../godmode/modules/manage_network_components.php:687 +#: ../../godmode/modules/manage_network_components.php:688 +#: ../../godmode/servers/servers.build_table.php:115 +#: ../../godmode/servers/servers.build_table.php:116 +#: ../../godmode/servers/servers.build_table.php:122 +#: ../../include/functions.php:1122 ../../include/functions.php:1128 +#: ../../include/functions.php:1132 ../../include/functions_servers.php:1235 +#: ../../include/functions_db.php:208 ../../include/functions_events.php:3541 +#: ../../include/functions_events.php:3651 +#: ../../include/functions_events.php:3672 +#: ../../include/functions_events.php:3677 +#: ../../include/functions_events.php:3690 +#: ../../include/functions_events.php:3691 +#: ../../include/functions_events.php:3703 +#: ../../include/functions_events.php:3754 +#: ../../include/functions_events.php:3781 +#: ../../include/functions_events.php:3801 +#: ../../include/functions_events.php:3895 +#: ../../include/functions_events.php:4032 +#: ../../include/functions_events.php:4063 +#: ../../include/functions_events.php:4077 +#: ../../include/functions_events.php:4082 +#: ../../include/functions_events.php:4112 +#: ../../include/functions_events.php:4205 +#: ../../include/functions_events.php:4272 +#: ../../include/functions_events.php:4282 +#: ../../include/functions_events.php:4441 +#: ../../include/functions_events.php:4509 +#: ../../include/functions_events.php:4585 +#: ../../include/functions_events.php:4614 +#: ../../include/functions_events.php:4629 +#: ../../include/functions_events.php:4639 +#: ../../include/functions_events.php:6773 +#: ../../include/functions_events.php:6792 +#: ../../include/functions_events.php:6797 +#: ../../include/functions_events.php:6804 +#: ../../include/functions_events.php:6817 +#: ../../include/functions_events.php:6830 +#: ../../include/functions_events.php:6842 +#: ../../include/functions_events.php:6893 +#: ../../include/functions_events.php:6920 +#: ../../include/functions_events.php:6940 +#: ../../include/functions_events.php.orig:3447 +#: ../../include/functions_events.php.orig:3557 +#: ../../include/functions_events.php.orig:3578 +#: ../../include/functions_events.php.orig:3583 +#: ../../include/functions_events.php.orig:3596 +#: ../../include/functions_events.php.orig:3597 +#: ../../include/functions_events.php.orig:3609 +#: ../../include/functions_events.php.orig:3660 +#: ../../include/functions_events.php.orig:3687 +#: ../../include/functions_events.php.orig:3707 +#: ../../include/functions_events.php.orig:3801 +#: ../../include/functions_events.php.orig:3938 +#: ../../include/functions_events.php.orig:3969 +#: ../../include/functions_events.php.orig:3983 +#: ../../include/functions_events.php.orig:3988 +#: ../../include/functions_events.php.orig:4018 +#: ../../include/functions_events.php.orig:4112 +#: ../../include/functions_events.php.orig:4179 +#: ../../include/functions_events.php.orig:4189 +#: ../../include/functions_events.php.orig:4344 +#: ../../include/functions_events.php.orig:4403 +#: ../../include/functions_events.php.orig:4479 +#: ../../include/functions_events.php.orig:4500 +#: ../../include/functions_events.php.orig:4515 +#: ../../include/functions_events.php.orig:4525 +#: ../../include/functions_treeview.php:156 +#: ../../include/functions_treeview.php:413 ../../include/functions_ui.php:2568 +#: ../../include/functions_ui.php:2576 +#: ../../include/functions_reporting_html.php:591 +#: ../../include/functions_reporting_html.php:594 +#: ../../include/functions_reporting_html.php:4211 +#: ../../include/functions_reporting_html.php:4264 +#: ../../mobile/operation/agent.php:205 ../../mobile/operation/agent.php:215 +#: ../../mobile/operation/events.php:161 ../../mobile/operation/events.php:167 +#: ../../mobile/operation/events.php:175 ../../mobile/operation/events.php:260 +#: ../../mobile/operation/events.php:290 ../../mobile/operation/events.php:298 +#: ../../operation/agentes/estado_generalagente.php:204 +#: ../../operation/agentes/estado_generalagente.php:210 +#: ../../operation/agentes/estado_generalagente.php:219 +#: ../../operation/agentes/estado_generalagente.php:347 +#: ../../operation/agentes/estado_generalagente.php:363 +#: ../../operation/snmpconsole/snmp_view.php:919 +#: ../../operation/snmpconsole/snmp_view.php:939 +#: ../../enterprise/dashboard/widget.php:328 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:199 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:220 +#: ../../enterprise/extensions/ipam/ipam_network.php:363 +#: ../../enterprise/extensions/ipam/ipam_network.php:439 +#: ../../enterprise/extensions/visual_console_manager.php:107 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:54 +#: ../../enterprise/include/functions_visual_map.php:320 +#: ../../enterprise/include/functions_aws.php:507 +#: ../../enterprise/include/functions_aws.php:508 +#: ../../enterprise/include/functions_services.php:2043 +#: ../../enterprise/include/functions_services.php:2251 +#: ../../enterprise/include/functions_services.php:2800 +#: ../../enterprise/include/functions_reporting.php:5725 +#: ../../enterprise/include/functions_servicemap.php:385 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:662 +#: ../../enterprise/meta/advanced/metasetup.visual.php:462 +#: ../../enterprise/meta/advanced/servers.build_table.php:98 +#: ../../enterprise/meta/advanced/servers.build_table.php:99 +#: ../../enterprise/meta/advanced/servers.build_table.php:105 msgid "N/A" msgstr "N/A" -#: ../../godmode/agentes/planned_downtime.list.php:508 -#: ../../godmode/modules/manage_network_templates.php:216 -#: ../../include/graphs/functions_flot.php:265 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:350 -#: ../../enterprise/operation/log/log_viewer.php:255 -#: ../../enterprise/operation/reporting/custom_reporting.php:59 -msgid "Export to CSV" -msgstr "CSVにエクスポート" - -#: ../../godmode/agentes/planned_downtime.list.php:535 +#: ../../godmode/agentes/planned_downtime.list.php:555 msgid "" "WARNING: If you delete this planned downtime, it will not be taken into " "account in future SLA reports" msgstr "警告: この計画停止を削除すると、今後の SLA レポートに反映されません" -#: ../../godmode/agentes/planned_downtime.list.php:541 +#: ../../godmode/agentes/planned_downtime.list.php:561 msgid "WARNING: There are malformed planned downtimes" msgstr "警告: 不正な計画停止があります。" -#: ../../godmode/agentes/planned_downtime.list.php:541 +#: ../../godmode/agentes/planned_downtime.list.php:561 msgid "Do you want to migrate automatically the malformed items?" msgstr "不正な要素を自動的に移動しますか。" -#: ../../godmode/alerts/alert_actions.php:66 -#: ../../godmode/alerts/alert_actions.php:92 -#: ../../godmode/alerts/alert_actions.php:110 -#: ../../godmode/alerts/alert_actions.php:127 -#: ../../godmode/alerts/alert_actions.php:207 -#: ../../godmode/alerts/alert_actions.php:218 -#: ../../godmode/alerts/alert_actions.php:287 -#: ../../godmode/alerts/alert_actions.php:306 -#: ../../godmode/alerts/alert_actions.php:319 +#: ../../godmode/agentes/status_monitor_custom_fields.php:81 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:556 +#: ../../enterprise/operation/agentes/tag_view.php:293 +#: ../../enterprise/operation/agentes/tag_view.php:651 +msgid "Data type" +msgstr "データのタイプ" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:89 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../operation/agentes/status_monitor.php:536 +#: ../../operation/agentes/status_monitor.php:1128 +#: ../../enterprise/operation/agentes/tag_view.php:273 +#: ../../enterprise/operation/agentes/tag_view.php:652 +msgid "Server type" +msgstr "サーバの種類" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:113 +#: ../../godmode/agentes/status_monitor_custom_fields.php:152 +#: ../../godmode/events/custom_events.php:101 ../../godmode/setup/news.php:239 +#: ../../include/ajax/custom_fields.php:405 ../../include/ajax/events.php:1496 +#: ../../include/ajax/events_extended.php:90 +#: ../../include/functions_events.php:195 +#: ../../include/functions_events.php:250 +#: ../../include/functions_events.php:2398 +#: ../../include/functions_events.php:4495 +#: ../../include/functions_events.php:6020 +#: ../../include/functions_events.php.orig:193 +#: ../../include/functions_events.php.orig:248 +#: ../../include/functions_events.php.orig:2304 +#: ../../include/functions_events.php.orig:4389 +#: ../../include/functions_events.php.orig:5924 +#: ../../include/functions_netflow.php:274 +#: ../../include/functions_reporting_html.php:968 +#: ../../include/functions_reporting_html.php:976 +#: ../../include/functions_reporting_html.php:1187 +#: ../../include/functions_reporting_html.php:1194 +#: ../../include/functions_reporting_html.php:1966 +#: ../../include/functions_reporting_html.php:3953 +#: ../../mobile/operation/events.php:516 ../../mobile/operation/modules.php:634 +#: ../../mobile/operation/modules.php:822 +#: ../../operation/agentes/estado_generalagente.php:567 +#: ../../operation/agentes/exportdata.csv.php:74 +#: ../../operation/agentes/exportdata.excel.php:74 +#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/status_monitor.php:1163 +#: ../../operation/events/events.build_table.php:192 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:123 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:297 +#: ../../operation/messages/message_list.php:168 +#: ../../operation/search_modules.php:38 +#: ../../operation/snmpconsole/snmp_view.php:826 +#: ../../enterprise/include/class/Omnishell.class.php:400 +#: ../../enterprise/include/functions_inventory.php:77 +#: ../../enterprise/include/functions_inventory.php:239 +#: ../../enterprise/include/functions_inventory.php:259 +#: ../../enterprise/include/functions_inventory.php:420 +#: ../../enterprise/include/functions_reporting_csv.php:709 +#: ../../enterprise/include/functions_reporting_csv.php:1251 +#: ../../enterprise/include/functions_reporting_csv.php:2058 +#: ../../enterprise/include/functions_reporting_csv.php:2094 +#: ../../enterprise/meta/include/functions_events_meta.php:82 +#: ../../enterprise/operation/agentes/tag_view.php:658 +msgid "Timestamp" +msgstr "タイムスタンプ" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:117 +#: ../../godmode/agentes/status_monitor_custom_fields.php:153 +#: ../../operation/agentes/status_monitor.php:1169 +msgid "Last status change" +msgstr "最新の状態変化" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +msgid "Show monitor detail fields" +msgstr "監視詳細フィールド表示" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:164 +#: ../../godmode/events/custom_events.php:126 +#: ../../enterprise/meta/event/custom_events.php:175 +msgid "Fields available" +msgstr "存在するフィールド" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:171 +#: ../../godmode/events/custom_events.php:133 +#: ../../enterprise/meta/event/custom_events.php:187 +msgid "Add fields to select" +msgstr "フィールドを選択に加える" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:179 +#: ../../godmode/events/custom_events.php:141 +#: ../../enterprise/meta/event/custom_events.php:196 +msgid "Delete fields to select" +msgstr "フィールドを選択から削除する" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:184 +#: ../../godmode/events/custom_events.php:146 +#: ../../enterprise/meta/event/custom_events.php:177 +msgid "Fields selected" +msgstr "選択されているフィールド" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:238 +#: ../../godmode/events/custom_events.php:200 +#: ../../enterprise/meta/event/custom_events.php:246 +msgid "" +"There must be at least one custom field. Timestamp will be set by default" +msgstr "少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定されます。" + +#: ../../godmode/agentes/status_monitor_custom_fields.php:239 +#: ../../godmode/events/custom_events.php:201 +#: ../../include/class/TreeGroupEdition.class.php:92 +#: ../../enterprise/meta/event/custom_events.php:247 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1098 +msgid "Confirm" +msgstr "確認" + +#: ../../godmode/alerts/alert_actions.php:61 msgid "Alert actions" msgstr "アクション" -#: ../../godmode/alerts/alert_actions.php:140 -#: ../../godmode/reporting/map_builder.php:190 -#: ../../godmode/reporting/map_builder.php:199 -#: ../../include/functions_agents.php:702 -#: ../../enterprise/godmode/policies/policies.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 +#: ../../godmode/alerts/alert_actions.php:113 +#: ../../godmode/alerts/alert_commands.php:389 +#: ../../godmode/reporting/map_builder.php:267 +#: ../../godmode/reporting/map_builder.php:274 +#: ../../include/functions_agents.php:894 +#: ../../enterprise/godmode/policies/policies.php:269 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:332 msgid "Successfully copied" msgstr "コピーしました。" -#: ../../godmode/alerts/alert_actions.php:141 -#: ../../enterprise/godmode/policies/policies.php:181 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:255 +#: ../../godmode/alerts/alert_actions.php:114 +#: ../../godmode/alerts/alert_commands.php:390 +#: ../../enterprise/godmode/policies/policies.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:333 msgid "Could not be copied" msgstr "コピーできませんでした。" -#: ../../godmode/alerts/alert_actions.php:342 -#: ../../godmode/massive/massive_copy_modules.php:229 -#: ../../godmode/reporting/map_builder.php:261 -#: ../../operation/agentes/pandora_networkmap.php:569 -#: ../../operation/agentes/pandora_networkmap.php:653 -#: ../../enterprise/dashboard/dashboards.php:92 -#: ../../enterprise/dashboard/dashboards.php:149 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:184 -#: ../../enterprise/godmode/policies/policies.php:434 -#: ../../enterprise/godmode/policies/policy_modules.php:1364 +#: ../../godmode/alerts/alert_actions.php:185 +#: ../../godmode/massive/massive_copy_modules.php:300 +#: ../../godmode/reporting/map_builder.php:338 +#: ../../operation/agentes/pandora_networkmap.php:700 +#: ../../operation/agentes/pandora_networkmap.php:794 +#: ../../enterprise/dashboard/dashboards.php:118 +#: ../../enterprise/dashboard/dashboards.php:167 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:213 +#: ../../enterprise/godmode/policies/policies.php:585 +#: ../../enterprise/godmode/policies/policy_modules.php:1685 msgid "Copy" msgstr "コピー" -#: ../../godmode/alerts/alert_actions.php:398 +#: ../../godmode/alerts/alert_actions.php:234 +msgid "" +"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:260 msgid "No alert actions configured" msgstr "アクションが設定されていません。" -#: ../../godmode/alerts/alert_commands.php:105 -#: ../../godmode/alerts/alert_commands.php:109 -#: ../../godmode/alerts/alert_commands.php:127 -#: ../../godmode/alerts/alert_commands.php:135 -#: ../../godmode/alerts/alert_view.php:471 -#: ../../godmode/alerts/alert_view.php:548 -#: ../../godmode/alerts/configure_alert_template.php:687 -#: ../../enterprise/godmode/alerts/alert_events.php:474 +#: ../../godmode/alerts/alert_commands.php:79 +#: ../../godmode/alerts/alert_commands.php:81 +#: ../../godmode/alerts/alert_commands.php:95 +#: ../../godmode/alerts/alert_commands.php:101 +#: ../../godmode/alerts/alert_view.php:466 +#: ../../godmode/alerts/alert_view.php:544 +#: ../../godmode/alerts/configure_alert_template.php:847 +#: ../../enterprise/godmode/alerts/alert_events.php:567 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1642 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2398 #, php-format msgid "Field %s" msgstr "フィールド %s" -#: ../../godmode/alerts/alert_commands.php:149 -#: ../../godmode/alerts/alert_commands.php:159 -#: ../../godmode/alerts/configure_alert_template.php:692 -#: ../../godmode/alerts/configure_alert_template.php:706 -#: ../../godmode/alerts/configure_alert_template.php:778 -#: ../../godmode/modules/manage_network_components_form_common.php:59 -#: ../../godmode/users/configure_user.php:640 -#: ../../enterprise/godmode/modules/configure_local_component.php:157 -#: ../../enterprise/meta/advanced/metasetup.setup.php:107 +#: ../../godmode/alerts/alert_commands.php:115 +#: ../../godmode/alerts/alert_commands.php:125 +#: ../../godmode/alerts/configure_alert_template.php:852 +#: ../../godmode/alerts/configure_alert_template.php:866 +#: ../../godmode/alerts/configure_alert_template.php:957 +#: ../../godmode/modules/manage_network_components_form_common.php:65 +#: ../../godmode/users/configure_user.php:897 +#: ../../enterprise/godmode/modules/configure_local_component.php:160 +#: ../../enterprise/meta/advanced/metasetup.setup.php:108 msgid "Basic" msgstr "基本" -#: ../../godmode/alerts/alert_commands.php:149 +#: ../../godmode/alerts/alert_commands.php:115 msgid "" "For sending emails, text must be HTML format, if you want to use plain text, " "type it between the following labels:
    "
    @@ -9938,780 +11266,726 @@ msgstr ""
     "メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキストを使いたい場合は、ラベル 
     "
     "の間に入力してください。"
     
    -#: ../../godmode/alerts/alert_commands.php:152
    -#: ../../godmode/alerts/alert_commands.php:162
    -#: ../../godmode/alerts/configure_alert_template.php:696
    -#: ../../godmode/alerts/configure_alert_template.php:710
    -#: ../../godmode/alerts/configure_alert_template.php:779
    -#: ../../godmode/modules/manage_network_components_form_common.php:60
    -#: ../../godmode/netflow/nf_edit_form.php:208
    -#: ../../godmode/users/configure_user.php:641
    -#: ../../operation/netflow/nf_live_view.php:323
    -#: ../../enterprise/godmode/modules/configure_local_component.php:158
    -#: ../../enterprise/meta/general/logon_ok.php:64
    -#: ../../enterprise/meta/general/main_header.php:232
    -#: ../../enterprise/meta/general/main_header.php:303
    +#: ../../godmode/alerts/alert_commands.php:118
    +#: ../../godmode/alerts/alert_commands.php:128
    +#: ../../godmode/alerts/configure_alert_template.php:856
    +#: ../../godmode/alerts/configure_alert_template.php:870
    +#: ../../godmode/alerts/configure_alert_template.php:958
    +#: ../../godmode/modules/manage_network_components_form_common.php:66
    +#: ../../godmode/netflow/nf_edit_form.php:226
    +#: ../../godmode/users/configure_user.php:898
    +#: ../../operation/netflow/nf_live_view.php:482
    +#: ../../enterprise/godmode/modules/configure_local_component.php:161
    +#: ../../enterprise/meta/general/logon_ok.php:99
    +#: ../../enterprise/meta/general/main_header.php:298
    +#: ../../enterprise/meta/general/main_header.php:386
     #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245
     msgid "Advanced"
     msgstr "拡張"
     
    -#: ../../godmode/alerts/alert_commands.php:170
    -#: ../../godmode/alerts/alert_commands.php:179
    +#: ../../godmode/alerts/alert_commands.php:135
    +#: ../../godmode/alerts/alert_commands.php:144
     msgid "Text/plain"
     msgstr "Text/plain"
     
    -#: ../../godmode/alerts/alert_commands.php:170
    -#: ../../godmode/alerts/alert_commands.php:179
    +#: ../../godmode/alerts/alert_commands.php:135
    +#: ../../godmode/alerts/alert_commands.php:144
     msgid "For sending emails only text plain"
     msgstr "プレーンテキストのみでのメール送信"
     
    -#: ../../godmode/alerts/alert_commands.php:173
    -#: ../../godmode/alerts/alert_commands.php:182
    +#: ../../godmode/alerts/alert_commands.php:138
    +#: ../../godmode/alerts/alert_commands.php:147
     msgid "Text/html"
     msgstr "Text/html"
     
    -#: ../../godmode/alerts/alert_commands.php:267
    +#: ../../godmode/alerts/alert_commands.php:272
     msgid "Alert commands"
     msgstr "アラートコマンド"
     
    -#: ../../godmode/alerts/alert_commands.php:390
    +#: ../../godmode/alerts/alert_commands.php:330
    +#: ../../include/functions_alerts.php:2758
    +msgid "No name specified"
    +msgstr "名前が指定されていません"
    +
    +#: ../../godmode/alerts/alert_commands.php:334
    +#: ../../include/functions_alerts.php:2753
    +msgid "No command specified"
    +msgstr "コマンドが指定されていません。"
    +
    +#: ../../godmode/alerts/alert_commands.php:383
    +msgid " (copy)"
    +msgstr " (コピー)"
    +
    +#: ../../godmode/alerts/alert_commands.php:455
     msgid "No alert commands configured"
     msgstr "アラートコマンドが設定されていません"
     
    -#: ../../godmode/alerts/alert_list.builder.php:78
    +#: ../../godmode/alerts/alert_list.builder.php:90
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:744
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:816
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1226
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1298
     msgid "Latest value"
     msgstr "最新の値"
     
    -#: ../../godmode/alerts/alert_list.builder.php:209
    -#: ../../godmode/massive/massive_copy_modules.php:80
    -#: ../../godmode/massive/massive_copy_modules.php:198
    -#: ../../godmode/massive/massive_delete_agents.php:116
    -#: ../../godmode/massive/massive_delete_modules.php:477
    -#: ../../godmode/massive/massive_delete_modules.php:491
    -#: ../../godmode/massive/massive_edit_agents.php:272
    -#: ../../godmode/massive/massive_edit_modules.php:308
    -#: ../../godmode/massive/massive_edit_modules.php:346
    -#: ../../include/ajax/module.php:861 ../../include/functions.php:1032
    -#: ../../include/functions_reporting.php:3558
    -#: ../../include/functions_alerts.php:593 ../../include/functions_ui.php:454
    -#: ../../include/functions_ui.php:455 ../../include/functions_events.php:1396
    -#: ../../include/functions_events.php:2954
    -#: ../../include/functions_visual_map.php:2457
    -#: ../../include/functions_visual_map.php:2488
    -#: ../../include/functions_visual_map.php:2504
    -#: ../../include/functions_visual_map.php:2520
    -#: ../../include/functions_filemanager.php:706
    -#: ../../include/functions_graph.php:882
    -#: ../../include/functions_graph.php:2667
    -#: ../../include/functions_graph.php:4638
    -#: ../../include/functions_groups.php:797
    -#: ../../include/functions_groups.php:799
    -#: ../../include/functions_groups.php:801
    -#: ../../include/functions_groups.php:802
    -#: ../../include/functions_groups.php:803 ../../include/functions_maps.php:46
    -#: ../../include/functions_reporting_html.php:493
    -#: ../../include/functions_reporting_html.php:572
    -#: ../../include/functions_reporting_html.php:1561
    -#: ../../include/functions_reporting_html.php:1582
    -#: ../../include/functions_reporting_html.php:2045
    -#: ../../include/functions_reporting_html.php:2207
    -#: ../../include/functions_reports.php:426
    -#: ../../include/graphs/functions_flot.php:489
    -#: ../../mobile/operation/agents.php:36 ../../mobile/operation/modules.php:42
    -#: ../../operation/agentes/estado_agente.php:217
    -#: ../../operation/agentes/estado_monitores.php:466
    -#: ../../operation/agentes/group_view.php:166
    -#: ../../operation/agentes/group_view.php:169
    -#: ../../operation/agentes/pandora_networkmap.view.php:261
    -#: ../../operation/agentes/status_monitor.php:300
    -#: ../../operation/agentes/tactical.php:153 ../../operation/tree.php:140
    -#: ../../operation/tree.php:172 ../../operation/tree.php:315
    -#: ../../enterprise/dashboard/widgets/events_list.php:185
    -#: ../../enterprise/dashboard/widgets/service_map.php:87
    -#: ../../enterprise/dashboard/widgets/tree_view.php:58
    -#: ../../enterprise/dashboard/widgets/tree_view.php:71
    -#: ../../enterprise/dashboard/widgets/tree_view.php:227
    -#: ../../enterprise/extensions/cron/functions.php:238
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:89
    -#: ../../enterprise/godmode/reporting/cluster_view.php:320
    -#: ../../enterprise/godmode/reporting/cluster_view.php:397
    -#: ../../enterprise/godmode/reporting/cluster_list.php:118
    -#: ../../enterprise/godmode/reporting/cluster_list.php:235
    -#: ../../enterprise/include/functions_reporting.php:1674
    -#: ../../enterprise/include/functions_reporting.php:2482
    -#: ../../enterprise/include/functions_reporting.php:3259
    -#: ../../enterprise/include/functions_reporting.php:4177
    -#: ../../enterprise/include/functions_reporting.php:4864
    -#: ../../enterprise/include/functions_reporting.php:5195
    -#: ../../enterprise/include/functions_reporting_pdf.php:334
    -#: ../../enterprise/include/functions_reporting_pdf.php:738
    -#: ../../enterprise/include/functions_reporting_pdf.php:756
    -#: ../../enterprise/include/functions_reporting_pdf.php:1397
    -#: ../../enterprise/include/functions_reporting_pdf.php:1478
    -#: ../../enterprise/include/functions_reporting_pdf.php:1722
    -#: ../../enterprise/include/functions_reporting_pdf.php:2143
    -#: ../../enterprise/include/functions_reporting_pdf.php:2178
    -#: ../../enterprise/meta/monitoring/group_view.php:146
    -#: ../../enterprise/meta/monitoring/group_view.php:150
    -#: ../../enterprise/meta/monitoring/tactical.php:281
    -#: ../../enterprise/operation/agentes/tag_view.php:85
    -#: ../../enterprise/operation/agentes/transactional_map.php:270
    -#: ../../enterprise/operation/agentes/transactional_map.php:287
    -#: ../../enterprise/operation/services/services.list.php:173
    -#: ../../enterprise/operation/services/services.list.php:415
    -#: ../../enterprise/operation/services/services.service.php:193
    -#: ../../enterprise/operation/services/services.service_map.php:127
    -#: ../../enterprise/operation/services/services.table_services.php:142
    -msgid "Unknown"
    -msgstr "不明"
    +#: ../../godmode/alerts/alert_list.builder.php:193
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:907
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1389
    +msgid "Finish and view cluster"
    +msgstr "終了しクラスタを見る"
     
    -#: ../../godmode/alerts/alert_list.builder.php:212
    -#: ../../godmode/alerts/configure_alert_template.php:918
    -#: ../../godmode/modules/manage_network_components_form_network.php:82
    -#: ../../godmode/modules/manage_network_components_form_plugin.php:29
    -#: ../../godmode/modules/manage_network_components_form_wmi.php:58
    -#: ../../include/functions.php:2071
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:464
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:744
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:951
    +#: ../../godmode/alerts/alert_list.builder.php:285
    +#: ../../godmode/alerts/configure_alert_template.php:1106
    +#: ../../godmode/modules/manage_network_components_form_network.php:183
    +#: ../../godmode/modules/manage_network_components_form_plugin.php:54
    +#: ../../godmode/modules/manage_network_components_form_wmi.php:60
    +#: ../../include/functions.php:2548
    +#: ../../enterprise/godmode/reporting/cluster_builder.php:594
     #: ../../enterprise/meta/monitoring/wizard/wizard.php:96
    -#: ../../enterprise/operation/agentes/policy_view.php:146
    -#: ../../enterprise/operation/agentes/policy_view.php:210
    -#: ../../enterprise/operation/agentes/policy_view.php:442
    +#: ../../enterprise/operation/agentes/policy_view.php:157
    +#: ../../enterprise/operation/agentes/policy_view.php:223
    +#: ../../enterprise/operation/agentes/policy_view.php:465
     msgid "Empty"
     msgstr "空"
     
    -#: ../../godmode/alerts/alert_list.list.php:58
    -#: ../../enterprise/godmode/reporting/graph_template_list.php:127
    -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1484
    +#: ../../godmode/alerts/alert_list.list.php:55
    +#: ../../enterprise/godmode/reporting/graph_template_list.php:146
    +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:372
     msgid "Template name"
     msgstr "テンプレート名"
     
    -#: ../../godmode/alerts/alert_list.list.php:124
    +#: ../../godmode/alerts/alert_list.list.php:117
     msgid "Field content"
     msgstr "フィールドの内容"
     
    -#: ../../godmode/alerts/alert_list.list.php:133
    +#: ../../godmode/alerts/alert_list.list.php:126
     msgid "Enabled / Disabled"
     msgstr "有効 / 無効"
     
    -#: ../../godmode/alerts/alert_list.list.php:135
    -#: ../../godmode/alerts/configure_alert_template.php:666
    -#: ../../include/functions_groups.php:2152
    -#: ../../include/functions_reporting_html.php:2095
    -#: ../../operation/agentes/estado_generalagente.php:326
    -#: ../../enterprise/extensions/ipam/ipam_ajax.php:196
    -#: ../../enterprise/extensions/ipam/ipam_massive.php:79
    -#: ../../enterprise/extensions/ipam/ipam_network.php:542
    -#: ../../enterprise/include/functions_reporting_pdf.php:2425
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:892
    -msgid "Enabled"
    -msgstr "有効"
    -
    -#: ../../godmode/alerts/alert_list.list.php:138
    -#: ../../operation/agentes/alerts_status.functions.php:103
    -#: ../../operation/agentes/alerts_status.php:449
    -#: ../../operation/agentes/alerts_status.php:495
    -#: ../../operation/agentes/alerts_status.php:530
    -#: ../../operation/agentes/alerts_status.php:565
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1487
    -#: ../../enterprise/operation/agentes/policy_view.php:193
    +#: ../../godmode/alerts/alert_list.list.php:131
    +#: ../../operation/agentes/alerts_status.functions.php:107
    +#: ../../operation/agentes/alerts_status.php:504
    +#: ../../operation/agentes/alerts_status.php:540
    +#: ../../operation/agentes/alerts_status.php:575
    +#: ../../operation/agentes/alerts_status.php:608
    +#: ../../enterprise/operation/agentes/policy_view.php:206
     msgid "Standby"
     msgstr "スタンバイ"
     
    -#: ../../godmode/alerts/alert_list.list.php:140
    -#: ../../include/functions_ui.php:853 ../../mobile/operation/alerts.php:44
    -#: ../../operation/agentes/alerts_status.functions.php:80
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:898
    -#: ../../enterprise/operation/agentes/policy_view.php:221
    +#: ../../godmode/alerts/alert_list.list.php:133
    +#: ../../include/functions_ui.php:1131 ../../mobile/operation/alerts.php:55
    +#: ../../operation/agentes/alerts_status.functions.php:85
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2973
    +#: ../../enterprise/operation/agentes/policy_view.php:234
     msgid "Standby on"
     msgstr "スタンバイ状態"
     
    -#: ../../godmode/alerts/alert_list.list.php:141
    -#: ../../mobile/operation/alerts.php:45
    -#: ../../operation/agentes/alerts_status.functions.php:81
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:900
    +#: ../../godmode/alerts/alert_list.list.php:134
    +#: ../../mobile/operation/alerts.php:56
    +#: ../../operation/agentes/alerts_status.functions.php:86
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2967
     msgid "Standby off"
     msgstr "非スタンバイ状態"
     
    -#: ../../godmode/alerts/alert_list.list.php:163
    -#: ../../operation/agentes/alerts_status.php:429
    +#: ../../godmode/alerts/alert_list.list.php:157
    +#: ../../operation/agentes/alerts_status.php:465
     msgid "Alert control filter"
     msgstr "アラートフィルタ"
     
    -#: ../../godmode/alerts/alert_list.list.php:163
    -#: ../../godmode/snmpconsole/snmp_alert.php:1019
    -#: ../../godmode/users/user_list.php:247
    -#: ../../operation/agentes/alerts_status.php:429
    -#: ../../operation/agentes/graphs.php:198
    -#: ../../operation/snmpconsole/snmp_view.php:555
    -#: ../../operation/snmpconsole/snmp_view.php:661
    -#: ../../enterprise/godmode/policies/policy_queue.php:297
    -#: ../../enterprise/godmode/policies/policy_queue.php:384
    +#: ../../godmode/alerts/alert_list.list.php:157
    +#: ../../godmode/snmpconsole/snmp_alert.php:1129
    +#: ../../godmode/users/user_list.php:303
    +#: ../../operation/agentes/alerts_status.php:466
    +#: ../../operation/agentes/graphs.php:262
    +#: ../../operation/snmpconsole/snmp_view.php:682
    +#: ../../operation/snmpconsole/snmp_view.php:764
    +#: ../../enterprise/godmode/policies/policy_queue.php:342
    +#: ../../enterprise/godmode/policies/policy_queue.php:447
     msgid "Toggle filter(s)"
     msgstr "フィルタ設定"
     
    -#: ../../godmode/alerts/alert_list.list.php:412
    -#: ../../godmode/massive/massive_copy_modules.php:138
    -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:427
    -#: ../../enterprise/godmode/alerts/alert_events_rules.php:412
    -#: ../../enterprise/godmode/policies/policy_alerts.php:242
    -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:308
    +#: ../../godmode/alerts/alert_list.list.php:448
    +#: ../../godmode/massive/massive_copy_modules.php:169
    +#: ../../godmode/wizards/DiscoveryTaskList.class.php:415
    +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:134
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:505
    +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406
    +#: ../../enterprise/godmode/policies/policy_alerts.php:288
    +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:395
    +#: ../../enterprise/include/functions_tasklist.php:173
     msgid "Operations"
     msgstr "操作"
     
    -#: ../../godmode/alerts/alert_list.list.php:412
    -#: ../../godmode/alerts/alert_templates.php:303
    -#: ../../godmode/reporting/graphs.php:168
    -#: ../../godmode/reporting/reporting_builder.list_items.php:308
    -#: ../../godmode/reporting/reporting_builder.php:603
    -#: ../../godmode/reporting/reporting_builder.php:725
    -#: ../../godmode/servers/plugin.php:739
    -#: ../../godmode/servers/servers.build_table.php:76
    -#: ../../godmode/users/profile_list.php:327
    -#: ../../godmode/users/user_list.php:275
    -#: ../../include/functions_container.php:140
    -#: ../../operation/gis_maps/gis_map.php:94
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:427
    -#: ../../enterprise/godmode/alerts/alert_events_rules.php:412
    -#: ../../enterprise/godmode/modules/local_components.php:484
    -#: ../../enterprise/godmode/policies/policies.php:261
    -#: ../../enterprise/godmode/policies/policy_alerts.php:242
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:255
    -#: ../../enterprise/meta/advanced/servers.build_table.php:71
    -#: ../../enterprise/meta/include/functions_autoprovision.php:542
    +#: ../../godmode/alerts/alert_list.list.php:448
    +#: ../../godmode/alerts/alert_templates.php:369
    +#: ../../godmode/reporting/graphs.php:276
    +#: ../../godmode/reporting/reporting_builder.list_items.php:391
    +#: ../../godmode/reporting/reporting_builder.php:838
    +#: ../../godmode/reporting/reporting_builder.php:1029
    +#: ../../godmode/servers/plugin.php:973
    +#: ../../godmode/servers/servers.build_table.php:77
    +#: ../../godmode/users/profile_list.php:301
    +#: ../../godmode/users/user_list.php:338
    +#: ../../include/functions_container.php:158
    +#: ../../operation/gis_maps/gis_map.php:109
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:505
    +#: ../../enterprise/godmode/alerts/alert_events_rules.php:406
    +#: ../../enterprise/godmode/modules/local_components.php:561
    +#: ../../enterprise/godmode/policies/policies.php:429
    +#: ../../enterprise/godmode/policies/policy_alerts.php:288
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:316
    +#: ../../enterprise/meta/advanced/servers.build_table.php:70
    +#: ../../enterprise/meta/include/functions_autoprovision.php:616
     msgid "Op."
     msgstr "操作"
     
    -#: ../../godmode/alerts/alert_list.list.php:505
    -#: ../../godmode/alerts/alert_view.php:356
    +#: ../../godmode/alerts/alert_list.list.php:592
    +#: ../../godmode/alerts/alert_view.php:198
    +#: ../../include/functions_alerts.php:666
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:637
    +#: ../../enterprise/godmode/policies/policy_alerts.php:362
    +#: ../../enterprise/godmode/policies/policy_external_alerts.php:242
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3025
    +msgid "Always"
    +msgstr "常時"
    +
    +#: ../../godmode/alerts/alert_list.list.php:594
    +#: ../../include/class/Diagnostics.class.php:1172
    +#: ../../include/class/Diagnostics.class.php:1176
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:639
    +#: ../../enterprise/godmode/policies/policy_alerts.php:364
    +#: ../../enterprise/godmode/policies/policy_external_alerts.php:244
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3027
    +msgid "On"
    +msgstr "次のアラート回数でアクション実施:"
    +
    +#: ../../godmode/alerts/alert_list.list.php:598
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:643
    +#: ../../enterprise/godmode/policies/policy_alerts.php:368
    +#: ../../enterprise/godmode/policies/policy_external_alerts.php:248
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3031
    +msgid "Until"
    +msgstr "次のアラート回数までアクション実施:"
    +
    +#: ../../godmode/alerts/alert_list.list.php:618
    +#: ../../godmode/alerts/alert_view.php:358
     msgid ""
     "The default actions will be executed every time that the alert is fired and "
     "no other action is executed"
     msgstr "他のアクションが無い場合に、アラートが発生するたびに実行されるデフォルトのアクション。"
     
    -#: ../../godmode/alerts/alert_list.list.php:524
    -#: ../../godmode/alerts/alert_view.php:195
    -#: ../../include/functions_alerts.php:577
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:551
    -#: ../../enterprise/godmode/policies/policy_alerts.php:328
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:214
    -msgid "Always"
    -msgstr "常時"
    -
    -#: ../../godmode/alerts/alert_list.list.php:526
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:553
    -#: ../../enterprise/godmode/policies/policy_alerts.php:330
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:216
    -msgid "On"
    -msgstr "次のアラート回数でアクション実施:"
    -
    -#: ../../godmode/alerts/alert_list.list.php:530
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:557
    -#: ../../enterprise/godmode/policies/policy_alerts.php:334
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:220
    -msgid "Until"
    -msgstr "次のアラート回数までアクション実施:"
    -
    -#: ../../godmode/alerts/alert_list.list.php:552
    +#: ../../godmode/alerts/alert_list.list.php:630
     msgid "Delete action"
     msgstr "アクションの削除"
     
    -#: ../../godmode/alerts/alert_list.list.php:559
    -#: ../../godmode/alerts/alert_list.list.php:872
    +#: ../../godmode/alerts/alert_list.list.php:645
    +#: ../../godmode/alerts/alert_list.list.php:1003
    +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:443
     msgid "Update action"
     msgstr "アクションの更新"
     
    -#: ../../godmode/alerts/alert_list.list.php:704
    -#: ../../godmode/alerts/alert_list.list.php:708
    -#: ../../godmode/alerts/alert_list.list.php:842
    -#: ../../godmode/snmpconsole/snmp_alert.php:1234
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:582
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:584
    -#: ../../enterprise/godmode/policies/policy_alerts.php:596
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:242
    +#: ../../godmode/alerts/alert_list.list.php:816
    +#: ../../godmode/alerts/alert_list.list.php:820
    +#: ../../godmode/alerts/alert_list.list.php:973
    +#: ../../godmode/snmpconsole/snmp_alert.php:1319
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:671
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:673
    +#: ../../enterprise/godmode/policies/policy_alerts.php:688
    +#: ../../enterprise/godmode/policies/policy_external_alerts.php:272
    +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:460
     msgid "Add action"
     msgstr "アクションの追加"
     
    -#: ../../godmode/alerts/alert_list.list.php:719
    +#: ../../godmode/alerts/alert_list.list.php:843
     msgid "View alert advanced details"
     msgstr "アラートの拡張詳細表示"
     
    -#: ../../godmode/alerts/alert_list.list.php:730
    +#: ../../godmode/alerts/alert_list.list.php:859
    +#: ../../include/functions_reporting_html.php:2397
     msgid "No alerts defined"
     msgstr "アラートが定義されていません"
     
    -#: ../../godmode/alerts/alert_list.list.php:785
    -#: ../../godmode/extensions.php:277 ../../godmode/users/user_list.php:460
    -#: ../../include/functions.php:2606
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:146
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:206
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:707
    -#: ../../enterprise/godmode/policies/policy_alerts.php:556
    +#: ../../godmode/alerts/alert_list.list.php:916
    +#: ../../godmode/extensions.php:262 ../../godmode/users/user_list.php:538
    +#: ../../include/functions.php:3188
    +#: ../../enterprise/godmode/agentes/plugins_manager.php:123
    +#: ../../enterprise/godmode/agentes/plugins_manager.php:161
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:790
    +#: ../../enterprise/godmode/policies/policy_alerts.php:648
    +#: ../../enterprise/include/functions_HA_cluster.php:58
     msgid "Disable"
     msgstr "無効"
     
    -#: ../../godmode/alerts/alert_list.list.php:794
    -#: ../../godmode/extensions.php:273 ../../godmode/users/user_list.php:463
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:146
    -#: ../../enterprise/godmode/agentes/plugins_manager.php:193
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:715
    -#: ../../enterprise/godmode/policies/policy_alerts.php:564
    +#: ../../godmode/alerts/alert_list.list.php:925
    +#: ../../godmode/extensions.php:260 ../../godmode/users/user_list.php:540
    +#: ../../operation/users/user_edit_notifications.php:63
    +#: ../../enterprise/godmode/agentes/plugins_manager.php:123
    +#: ../../enterprise/godmode/agentes/plugins_manager.php:155
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:798
    +#: ../../enterprise/godmode/policies/policy_alerts.php:656
    +#: ../../enterprise/include/functions_HA_cluster.php:61
     msgid "Enable"
     msgstr "有効"
     
    -#: ../../godmode/alerts/alert_list.list.php:803
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:724
    -#: ../../enterprise/godmode/policies/policy_alerts.php:573
    +#: ../../godmode/alerts/alert_list.list.php:934
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:807
    +#: ../../enterprise/godmode/policies/policy_alerts.php:665
     msgid "Set off standby"
     msgstr "非スタンバイ状態にする"
     
    -#: ../../godmode/alerts/alert_list.list.php:812
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:733
    -#: ../../enterprise/godmode/policies/policy_alerts.php:582
    +#: ../../godmode/alerts/alert_list.list.php:943
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:816
    +#: ../../enterprise/godmode/policies/policy_alerts.php:674
     msgid "Set standby"
     msgstr "スタンバイ状態にする"
     
    -#: ../../godmode/alerts/alert_list.php:80
    +#: ../../godmode/alerts/alert_list.php:113
     msgid "Already added"
     msgstr "すでに追加されています。"
     
    -#: ../../godmode/alerts/alert_list.php:170
    -#: ../../godmode/massive/massive_add_action_alerts.php:112
    -#: ../../godmode/massive/massive_add_alerts.php:112
    -#: ../../godmode/massive/massive_add_tags.php:88
    -#: ../../operation/incidents/incident_detail.php:67
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:186
    -#: ../../enterprise/godmode/policies/policy_agents.php:182
    +#: ../../godmode/alerts/alert_list.php:167
    +msgid "No template specified"
    +msgstr "テンプレートが指定されていません"
    +
    +#: ../../godmode/alerts/alert_list.php:171
    +#: ../../enterprise/godmode/policies/policy_external_alerts.php:71
    +msgid "No module specified"
    +msgstr "モジュールが指定されていません"
    +
    +#: ../../godmode/alerts/alert_list.php:270
    +#: ../../godmode/massive/massive_add_action_alerts.php:119
    +#: ../../godmode/massive/massive_add_alerts.php:140
    +#: ../../operation/incidents/incident_detail.php:75
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:211
    +#: ../../enterprise/godmode/policies/policy_agents.php:226
     msgid "Successfully added"
     msgstr "追加されました。"
     
    -#: ../../godmode/alerts/alert_list.php:170
    -#: ../../godmode/massive/massive_add_action_alerts.php:59
    -#: ../../godmode/massive/massive_add_action_alerts.php:96
    -#: ../../godmode/massive/massive_add_action_alerts.php:112
    -#: ../../godmode/massive/massive_add_action_alerts.php:116
    -#: ../../godmode/massive/massive_add_action_alerts.php:120
    -#: ../../godmode/massive/massive_add_alerts.php:113
    -#: ../../godmode/massive/massive_add_tags.php:89
    -#: ../../godmode/massive/massive_delete_action_alerts.php:119
    -#: ../../operation/incidents/incident_detail.php:68
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:187
    -#: ../../enterprise/godmode/policies/policy_agents.php:183
    -#: ../../enterprise/godmode/policies/policy_alerts.php:188
    -#: ../../enterprise/godmode/policies/policy_external_alerts.php:121
    +#: ../../godmode/alerts/alert_list.php:271
    +#: ../../godmode/massive/massive_add_action_alerts.php:60
    +#: ../../godmode/massive/massive_add_action_alerts.php:99
    +#: ../../godmode/massive/massive_add_action_alerts.php:119
    +#: ../../godmode/massive/massive_add_action_alerts.php:122
    +#: ../../godmode/massive/massive_add_action_alerts.php:125
    +#: ../../godmode/massive/massive_add_alerts.php:141
    +#: ../../godmode/massive/massive_delete_action_alerts.php:129
    +#: ../../operation/incidents/incident_detail.php:76
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:212
    +#: ../../enterprise/godmode/policies/policy_agents.php:227
    +#: ../../enterprise/godmode/policies/policy_alerts.php:223
    +#: ../../enterprise/godmode/policies/policy_external_alerts.php:156
     msgid "Could not be added"
     msgstr "追加できませんでした。"
     
    -#: ../../godmode/alerts/alert_list.php:264
    -#: ../../godmode/massive/massive_standby_alerts.php:96
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:255
    -#: ../../enterprise/godmode/policies/policy_alerts.php:122
    +#: ../../godmode/alerts/alert_list.php:418
    +#: ../../godmode/massive/massive_standby_alerts.php:105
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:292
    +#: ../../enterprise/godmode/policies/policy_alerts.php:136
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:636
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1120
     msgid "Successfully set standby"
     msgstr "スタンバイ状態にしました。"
     
    -#: ../../godmode/alerts/alert_list.php:264
    -#: ../../godmode/massive/massive_standby_alerts.php:96
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:256
    -#: ../../enterprise/godmode/policies/policy_alerts.php:122
    +#: ../../godmode/alerts/alert_list.php:419
    +#: ../../godmode/massive/massive_standby_alerts.php:105
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:293
    +#: ../../enterprise/godmode/policies/policy_alerts.php:137
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:637
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1121
     msgid "Could not be set standby"
     msgstr "スタンバイ状態にできませんでした。"
     
    -#: ../../godmode/alerts/alert_list.php:281
    -#: ../../godmode/massive/massive_standby_alerts.php:78
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:272
    -#: ../../enterprise/godmode/policies/policy_alerts.php:139
    +#: ../../godmode/alerts/alert_list.php:449
    +#: ../../godmode/massive/massive_standby_alerts.php:87
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:312
    +#: ../../enterprise/godmode/policies/policy_alerts.php:157
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:628
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1112
     msgid "Successfully set off standby"
     msgstr "非スタンバイ状態にしました。"
     
    -#: ../../godmode/alerts/alert_list.php:281
    -#: ../../godmode/massive/massive_standby_alerts.php:78
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:273
    -#: ../../enterprise/godmode/policies/policy_alerts.php:139
    +#: ../../godmode/alerts/alert_list.php:450
    +#: ../../godmode/massive/massive_standby_alerts.php:87
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:313
    +#: ../../enterprise/godmode/policies/policy_alerts.php:158
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:629
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1113
     msgid "Could not be set off standby"
     msgstr "非スタンバイ状態にできませんでした。"
     
    -#: ../../godmode/alerts/alert_list.php:313
    +#: ../../godmode/alerts/alert_list.php:492
    +#: ../../godmode/alerts/alert_view.php:60
     #: ../../godmode/alerts/alert_view.php:61
    -#: ../../godmode/alerts/alert_view.php:62
    -#: ../../godmode/alerts/alert_view.php:63
     msgid "List alerts"
     msgstr "アラート一覧"
     
    -#: ../../godmode/alerts/alert_list.php:317
    +#: ../../godmode/alerts/alert_list.php:496
     msgid "Builder alert"
     msgstr "アラート作成"
     
    -#: ../../godmode/alerts/alert_list.php:326
    -#: ../../godmode/alerts/alert_list.php:329
    -#: ../../godmode/users/configure_profile.php:268
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:456
    +#: ../../godmode/alerts/alert_list.php:506
    +#: ../../godmode/alerts/alert_list.php:508
    +#: ../../godmode/users/configure_profile.php:243
    +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:478
     msgid "Manage alerts"
     msgstr "アラート管理"
     
    -#: ../../godmode/alerts/alert_special_days.php:44 ../../godmode/menu.php:164
    -#: ../../godmode/menu.php:165
    +#: ../../godmode/alerts/alert_special_days.php:45 ../../godmode/menu.php:207
    +#: ../../godmode/menu.php:208
     msgid "Special days list"
     msgstr "特別日一覧"
     
    -#: ../../godmode/alerts/alert_special_days.php:86
    +#: ../../godmode/alerts/alert_special_days.php:91
     msgid "Skipped dates: "
     msgstr "対象外の日付: "
     
    -#: ../../godmode/alerts/alert_special_days.php:106
    +#: ../../godmode/alerts/alert_special_days.php:111
     msgid "Success to upload iCalendar"
     msgstr "iCalendar をアップロードしました"
     
    -#: ../../godmode/alerts/alert_special_days.php:106
    +#: ../../godmode/alerts/alert_special_days.php:111
     msgid "Fail to upload iCalendar"
     msgstr "iCalendar のアップロードに失敗しました"
     
    -#: ../../godmode/alerts/alert_special_days.php:232
    +#: ../../godmode/alerts/alert_special_days.php:143
    +msgid "Could not be created, it already exists"
    +msgstr "作成できません。すでに存在します。"
    +
    +#: ../../godmode/alerts/alert_special_days.php:207
    +msgid "Could not be updated, it already exists"
    +msgstr "更新できません。すでに存在します。"
    +
    +#: ../../godmode/alerts/alert_special_days.php:260
     msgid "iCalendar(.ics) file"
     msgstr "iCalendar(.ics) ファイル"
     
    -#: ../../godmode/alerts/alert_special_days.php:235
    -#: ../../godmode/alerts/configure_alert_special_days.php:79
    +#: ../../godmode/alerts/alert_special_days.php:263
    +#: ../../godmode/alerts/configure_alert_special_days.php:81
     msgid "Same day of the week"
     msgstr "同一の曜日"
     
    -#: ../../godmode/alerts/alert_special_days.php:237
    -#: ../../godmode/alerts/alert_special_days.php:425
    -#: ../../godmode/alerts/alert_templates.php:65
    -#: ../../godmode/alerts/configure_alert_special_days.php:81
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:842
    -#: ../../include/functions_html.php:939
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1406
    -#: ../../enterprise/include/functions_reporting.php:1561
    -#: ../../enterprise/include/functions_reporting.php:2068
    -#: ../../enterprise/include/functions_reporting.php:2371
    -#: ../../enterprise/include/functions_reporting.php:2793
    -#: ../../enterprise/include/functions_reporting.php:3575
    -#: ../../enterprise/include/functions_reporting_pdf.php:1606
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:120
    +#: ../../godmode/alerts/alert_special_days.php:265
    +#: ../../godmode/alerts/alert_special_days.php:473
    +#: ../../godmode/alerts/alert_templates.php:64
    +#: ../../godmode/alerts/configure_alert_special_days.php:83
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1130
    +#: ../../include/functions_html.php:1215
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1685
    +#: ../../enterprise/include/functions_reporting.php:1571
    +#: ../../enterprise/include/functions_reporting.php:2164
    +#: ../../enterprise/include/functions_reporting.php:2482
    +#: ../../enterprise/include/functions_reporting.php:3112
    +#: ../../enterprise/include/functions_reporting.php:4086
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95
     msgid "Monday"
     msgstr "月曜日"
     
    -#: ../../godmode/alerts/alert_special_days.php:238
    -#: ../../godmode/alerts/alert_special_days.php:428
    -#: ../../godmode/alerts/alert_templates.php:66
    -#: ../../godmode/alerts/configure_alert_special_days.php:82
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:848
    -#: ../../include/functions_html.php:940
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1412
    -#: ../../enterprise/include/functions_reporting.php:1562
    -#: ../../enterprise/include/functions_reporting.php:2069
    -#: ../../enterprise/include/functions_reporting.php:2372
    -#: ../../enterprise/include/functions_reporting.php:2794
    -#: ../../enterprise/include/functions_reporting.php:3576
    -#: ../../enterprise/include/functions_reporting_pdf.php:1607
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:121
    +#: ../../godmode/alerts/alert_special_days.php:266
    +#: ../../godmode/alerts/alert_special_days.php:477
    +#: ../../godmode/alerts/alert_templates.php:65
    +#: ../../godmode/alerts/configure_alert_special_days.php:84
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1136
    +#: ../../include/functions_html.php:1216
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691
    +#: ../../enterprise/include/functions_reporting.php:1572
    +#: ../../enterprise/include/functions_reporting.php:2165
    +#: ../../enterprise/include/functions_reporting.php:2483
    +#: ../../enterprise/include/functions_reporting.php:3113
    +#: ../../enterprise/include/functions_reporting.php:4087
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96
     msgid "Tuesday"
     msgstr "火曜日"
     
    -#: ../../godmode/alerts/alert_special_days.php:239
    -#: ../../godmode/alerts/alert_special_days.php:431
    -#: ../../godmode/alerts/alert_templates.php:67
    -#: ../../godmode/alerts/configure_alert_special_days.php:83
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:854
    -#: ../../include/functions_html.php:941
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1418
    -#: ../../enterprise/include/functions_reporting.php:1563
    -#: ../../enterprise/include/functions_reporting.php:2070
    -#: ../../enterprise/include/functions_reporting.php:2373
    -#: ../../enterprise/include/functions_reporting.php:2795
    -#: ../../enterprise/include/functions_reporting.php:3577
    -#: ../../enterprise/include/functions_reporting_pdf.php:1608
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
    +#: ../../godmode/alerts/alert_special_days.php:267
    +#: ../../godmode/alerts/alert_special_days.php:481
    +#: ../../godmode/alerts/alert_templates.php:66
    +#: ../../godmode/alerts/configure_alert_special_days.php:85
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1142
    +#: ../../include/functions_html.php:1217
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1697
    +#: ../../enterprise/include/functions_reporting.php:1573
    +#: ../../enterprise/include/functions_reporting.php:2166
    +#: ../../enterprise/include/functions_reporting.php:2484
    +#: ../../enterprise/include/functions_reporting.php:3114
    +#: ../../enterprise/include/functions_reporting.php:4088
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97
     msgid "Wednesday"
     msgstr "水曜日"
     
    -#: ../../godmode/alerts/alert_special_days.php:240
    -#: ../../godmode/alerts/alert_special_days.php:434
    -#: ../../godmode/alerts/alert_templates.php:68
    -#: ../../godmode/alerts/configure_alert_special_days.php:84
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:860
    -#: ../../include/functions_html.php:942
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1424
    -#: ../../enterprise/include/functions_reporting.php:1564
    -#: ../../enterprise/include/functions_reporting.php:2071
    -#: ../../enterprise/include/functions_reporting.php:2374
    -#: ../../enterprise/include/functions_reporting.php:2796
    -#: ../../enterprise/include/functions_reporting.php:3578
    -#: ../../enterprise/include/functions_reporting_pdf.php:1609
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:123
    +#: ../../godmode/alerts/alert_special_days.php:268
    +#: ../../godmode/alerts/alert_special_days.php:485
    +#: ../../godmode/alerts/alert_templates.php:67
    +#: ../../godmode/alerts/configure_alert_special_days.php:86
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1148
    +#: ../../include/functions_html.php:1218
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1703
    +#: ../../enterprise/include/functions_reporting.php:1574
    +#: ../../enterprise/include/functions_reporting.php:2167
    +#: ../../enterprise/include/functions_reporting.php:2485
    +#: ../../enterprise/include/functions_reporting.php:3115
    +#: ../../enterprise/include/functions_reporting.php:4089
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98
     msgid "Thursday"
     msgstr "木曜日"
     
    -#: ../../godmode/alerts/alert_special_days.php:241
    -#: ../../godmode/alerts/alert_special_days.php:437
    -#: ../../godmode/alerts/alert_templates.php:69
    -#: ../../godmode/alerts/configure_alert_special_days.php:85
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:866
    -#: ../../include/functions_html.php:943
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1430
    -#: ../../enterprise/include/functions_reporting.php:1565
    -#: ../../enterprise/include/functions_reporting.php:2072
    -#: ../../enterprise/include/functions_reporting.php:2375
    -#: ../../enterprise/include/functions_reporting.php:2797
    -#: ../../enterprise/include/functions_reporting.php:3579
    -#: ../../enterprise/include/functions_reporting_pdf.php:1610
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:124
    +#: ../../godmode/alerts/alert_special_days.php:269
    +#: ../../godmode/alerts/alert_special_days.php:489
    +#: ../../godmode/alerts/alert_templates.php:68
    +#: ../../godmode/alerts/configure_alert_special_days.php:87
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1154
    +#: ../../include/functions_html.php:1219
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1709
    +#: ../../enterprise/include/functions_reporting.php:1575
    +#: ../../enterprise/include/functions_reporting.php:2168
    +#: ../../enterprise/include/functions_reporting.php:2486
    +#: ../../enterprise/include/functions_reporting.php:3116
    +#: ../../enterprise/include/functions_reporting.php:4090
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99
     msgid "Friday"
     msgstr "金曜日"
     
    -#: ../../godmode/alerts/alert_special_days.php:242
    -#: ../../godmode/alerts/alert_special_days.php:440
    -#: ../../godmode/alerts/alert_templates.php:70
    -#: ../../godmode/alerts/configure_alert_special_days.php:86
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:872
    -#: ../../include/functions_html.php:944
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1436
    -#: ../../enterprise/include/functions_reporting.php:1566
    -#: ../../enterprise/include/functions_reporting.php:2073
    -#: ../../enterprise/include/functions_reporting.php:2376
    -#: ../../enterprise/include/functions_reporting.php:2798
    -#: ../../enterprise/include/functions_reporting.php:3580
    -#: ../../enterprise/include/functions_reporting_pdf.php:1611
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:125
    +#: ../../godmode/alerts/alert_special_days.php:270
    +#: ../../godmode/alerts/alert_special_days.php:493
    +#: ../../godmode/alerts/alert_templates.php:69
    +#: ../../godmode/alerts/configure_alert_special_days.php:88
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1160
    +#: ../../include/functions_html.php:1220
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1715
    +#: ../../enterprise/include/functions_reporting.php:1576
    +#: ../../enterprise/include/functions_reporting.php:2169
    +#: ../../enterprise/include/functions_reporting.php:2487
    +#: ../../enterprise/include/functions_reporting.php:3117
    +#: ../../enterprise/include/functions_reporting.php:4091
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100
     msgid "Saturday"
     msgstr "土曜日"
     
    -#: ../../godmode/alerts/alert_special_days.php:243
    -#: ../../godmode/alerts/alert_special_days.php:443
    -#: ../../godmode/alerts/alert_templates.php:71
    -#: ../../godmode/alerts/configure_alert_special_days.php:87
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:878
    -#: ../../include/functions_html.php:938
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1442
    -#: ../../enterprise/include/functions_reporting.php:1567
    -#: ../../enterprise/include/functions_reporting.php:2074
    -#: ../../enterprise/include/functions_reporting.php:2377
    -#: ../../enterprise/include/functions_reporting.php:2799
    -#: ../../enterprise/include/functions_reporting.php:3581
    -#: ../../enterprise/include/functions_reporting_pdf.php:1612
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:126
    +#: ../../godmode/alerts/alert_special_days.php:271
    +#: ../../godmode/alerts/alert_special_days.php:497
    +#: ../../godmode/alerts/alert_templates.php:70
    +#: ../../godmode/alerts/configure_alert_special_days.php:89
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1166
    +#: ../../include/functions_html.php:1214
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1721
    +#: ../../enterprise/include/functions_reporting.php:1577
    +#: ../../enterprise/include/functions_reporting.php:2170
    +#: ../../enterprise/include/functions_reporting.php:2488
    +#: ../../enterprise/include/functions_reporting.php:3118
    +#: ../../enterprise/include/functions_reporting.php:4092
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101
     msgid "Sunday"
     msgstr "日曜日"
     
    -#: ../../godmode/alerts/alert_special_days.php:254
    +#: ../../godmode/alerts/alert_special_days.php:284
     msgid "Overwrite"
     msgstr "上書き"
     
    -#: ../../godmode/alerts/alert_special_days.php:255
    +#: ../../godmode/alerts/alert_special_days.php:285
     msgid "Check this box, if you want to overwrite existing same days."
     msgstr "既存の同一日の設定を上書きしたい場合は、ここをチェックします。"
     
    -#: ../../godmode/alerts/alert_special_days.php:273
    +#: ../../godmode/alerts/alert_special_days.php:304
     msgid "Display range: "
     msgstr "表示範囲: "
     
    -#: ../../godmode/alerts/alert_special_days.php:347
    -#: ../../enterprise/include/functions_reporting.php:1599
    -#: ../../enterprise/include/functions_reporting.php:2412
    -#: ../../enterprise/include/functions_reporting.php:3190
    -#: ../../enterprise/include/functions_reporting_pdf.php:1643
    +#: ../../godmode/alerts/alert_special_days.php:377
    +#: ../../enterprise/include/functions_reporting.php:1614
    +#: ../../enterprise/include/functions_reporting.php:2525
    +#: ../../enterprise/include/functions_reporting.php:3532
     msgid "January"
     msgstr "1月"
     
    -#: ../../godmode/alerts/alert_special_days.php:350
    -#: ../../enterprise/include/functions_reporting.php:1602
    -#: ../../enterprise/include/functions_reporting.php:2415
    -#: ../../enterprise/include/functions_reporting.php:3193
    -#: ../../enterprise/include/functions_reporting_pdf.php:1646
    +#: ../../godmode/alerts/alert_special_days.php:381
    +#: ../../enterprise/include/functions_reporting.php:1618
    +#: ../../enterprise/include/functions_reporting.php:2529
    +#: ../../enterprise/include/functions_reporting.php:3536
     msgid "February"
     msgstr "2月"
     
    -#: ../../godmode/alerts/alert_special_days.php:353
    -#: ../../enterprise/include/functions_reporting.php:1605
    -#: ../../enterprise/include/functions_reporting.php:2418
    -#: ../../enterprise/include/functions_reporting.php:3196
    -#: ../../enterprise/include/functions_reporting_pdf.php:1649
    +#: ../../godmode/alerts/alert_special_days.php:385
    +#: ../../enterprise/include/functions_reporting.php:1622
    +#: ../../enterprise/include/functions_reporting.php:2533
    +#: ../../enterprise/include/functions_reporting.php:3540
     msgid "March"
     msgstr "3月"
     
    -#: ../../godmode/alerts/alert_special_days.php:356
    -#: ../../enterprise/include/functions_reporting.php:1608
    -#: ../../enterprise/include/functions_reporting.php:2421
    -#: ../../enterprise/include/functions_reporting.php:3199
    -#: ../../enterprise/include/functions_reporting_pdf.php:1652
    +#: ../../godmode/alerts/alert_special_days.php:389
    +#: ../../enterprise/include/functions_reporting.php:1626
    +#: ../../enterprise/include/functions_reporting.php:2537
    +#: ../../enterprise/include/functions_reporting.php:3544
     msgid "April"
     msgstr "4月"
     
    -#: ../../godmode/alerts/alert_special_days.php:359
    -#: ../../enterprise/include/functions_reporting.php:1611
    -#: ../../enterprise/include/functions_reporting.php:2424
    -#: ../../enterprise/include/functions_reporting.php:3202
    -#: ../../enterprise/include/functions_reporting_pdf.php:1655
    +#: ../../godmode/alerts/alert_special_days.php:393
    +#: ../../enterprise/include/functions_reporting.php:1630
    +#: ../../enterprise/include/functions_reporting.php:2541
    +#: ../../enterprise/include/functions_reporting.php:3548
     msgid "May"
     msgstr "5月"
     
    -#: ../../godmode/alerts/alert_special_days.php:362
    -#: ../../enterprise/include/functions_reporting.php:1614
    -#: ../../enterprise/include/functions_reporting.php:2427
    -#: ../../enterprise/include/functions_reporting.php:3205
    -#: ../../enterprise/include/functions_reporting_pdf.php:1658
    +#: ../../godmode/alerts/alert_special_days.php:397
    +#: ../../enterprise/include/functions_reporting.php:1634
    +#: ../../enterprise/include/functions_reporting.php:2545
    +#: ../../enterprise/include/functions_reporting.php:3552
     msgid "June"
     msgstr "6月"
     
    -#: ../../godmode/alerts/alert_special_days.php:365
    -#: ../../enterprise/include/functions_reporting.php:1617
    -#: ../../enterprise/include/functions_reporting.php:2430
    -#: ../../enterprise/include/functions_reporting.php:3208
    -#: ../../enterprise/include/functions_reporting_pdf.php:1661
    +#: ../../godmode/alerts/alert_special_days.php:401
    +#: ../../enterprise/include/functions_reporting.php:1638
    +#: ../../enterprise/include/functions_reporting.php:2549
    +#: ../../enterprise/include/functions_reporting.php:3556
     msgid "July"
     msgstr "7月"
     
    -#: ../../godmode/alerts/alert_special_days.php:368
    -#: ../../enterprise/include/functions_reporting.php:1620
    -#: ../../enterprise/include/functions_reporting.php:2433
    -#: ../../enterprise/include/functions_reporting.php:3211
    -#: ../../enterprise/include/functions_reporting_pdf.php:1664
    +#: ../../godmode/alerts/alert_special_days.php:405
    +#: ../../enterprise/include/functions_reporting.php:1642
    +#: ../../enterprise/include/functions_reporting.php:2553
    +#: ../../enterprise/include/functions_reporting.php:3560
     msgid "August"
     msgstr "8月"
     
    -#: ../../godmode/alerts/alert_special_days.php:371
    -#: ../../enterprise/include/functions_reporting.php:1623
    -#: ../../enterprise/include/functions_reporting.php:2436
    -#: ../../enterprise/include/functions_reporting.php:3214
    -#: ../../enterprise/include/functions_reporting_pdf.php:1667
    +#: ../../godmode/alerts/alert_special_days.php:409
    +#: ../../enterprise/include/functions_reporting.php:1646
    +#: ../../enterprise/include/functions_reporting.php:2557
    +#: ../../enterprise/include/functions_reporting.php:3564
     msgid "September"
     msgstr "9月"
     
    -#: ../../godmode/alerts/alert_special_days.php:374
    -#: ../../enterprise/include/functions_reporting.php:1626
    -#: ../../enterprise/include/functions_reporting.php:2439
    -#: ../../enterprise/include/functions_reporting.php:3217
    -#: ../../enterprise/include/functions_reporting_pdf.php:1670
    +#: ../../godmode/alerts/alert_special_days.php:413
    +#: ../../enterprise/include/functions_reporting.php:1650
    +#: ../../enterprise/include/functions_reporting.php:2561
    +#: ../../enterprise/include/functions_reporting.php:3568
     msgid "October"
     msgstr "10月"
     
    -#: ../../godmode/alerts/alert_special_days.php:377
    -#: ../../enterprise/include/functions_reporting.php:1629
    -#: ../../enterprise/include/functions_reporting.php:2442
    -#: ../../enterprise/include/functions_reporting.php:3220
    -#: ../../enterprise/include/functions_reporting_pdf.php:1673
    +#: ../../godmode/alerts/alert_special_days.php:417
    +#: ../../enterprise/include/functions_reporting.php:1654
    +#: ../../enterprise/include/functions_reporting.php:2565
    +#: ../../enterprise/include/functions_reporting.php:3572
     msgid "November"
     msgstr "11月"
     
    -#: ../../godmode/alerts/alert_special_days.php:380
    -#: ../../enterprise/include/functions_reporting.php:1632
    -#: ../../enterprise/include/functions_reporting.php:2445
    -#: ../../enterprise/include/functions_reporting.php:3223
    -#: ../../enterprise/include/functions_reporting_pdf.php:1676
    +#: ../../godmode/alerts/alert_special_days.php:421
    +#: ../../enterprise/include/functions_reporting.php:1659
    +#: ../../enterprise/include/functions_reporting.php:2570
    +#: ../../enterprise/include/functions_reporting.php:3577
     msgid "December"
     msgstr "12月"
     
    -#: ../../godmode/alerts/alert_special_days.php:422
    +#: ../../godmode/alerts/alert_special_days.php:470
     msgid "Same as "
     msgstr "同じ日: "
     
    -#: ../../godmode/alerts/alert_special_days.php:452
    -#: ../../godmode/events/event_edit_filter.php:361
    -#: ../../godmode/events/event_edit_filter.php:376
    -#: ../../operation/events/events_list.php:407
    -#: ../../operation/events/events_list.php:434
    -#: ../../enterprise/godmode/agentes/collection_manager.php:167
    -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:115
    -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113
    -#: ../../enterprise/godmode/policies/policy_collections.php:125
    +#: ../../godmode/alerts/alert_special_days.php:507
    +#: ../../godmode/events/event_edit_filter.php:503
    +#: ../../godmode/events/event_edit_filter.php:556
    +#: ../../operation/events/events.php:536 ../../operation/events/events.php:608
    +#: ../../operation/events/events_list.php:617
    +#: ../../operation/events/events_list.php:689
    +#: ../../enterprise/godmode/agentes/collection_manager.php:205
    +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:158
    +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:146
    +#: ../../enterprise/godmode/policies/policy_collections.php:153
    +#: ../../enterprise/include/functions_ui.php:120
    +#: ../../enterprise/include/functions_ui.php:168
     msgid "Remove"
     msgstr "削除"
     
    -#: ../../godmode/alerts/alert_templates.php:62
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:117
    +#: ../../godmode/alerts/alert_templates.php:61
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92
     msgid "Everyday"
     msgstr "毎日"
     
     #: ../../godmode/alerts/alert_templates.php:73
    -#: ../../include/functions_config.php:763
    -#: ../../enterprise/extensions/ipam/ipam_editor.php:95
    -#: ../../enterprise/godmode/setup/setup_history.php:68
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:128
    +#: ../../include/functions_config.php:1419
    +#: ../../enterprise/extensions/ipam/ipam_editor.php:197
    +#: ../../enterprise/godmode/setup/setup_history.php:63
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
     msgid "Days"
     msgstr "日間"
     
     #: ../../godmode/alerts/alert_templates.php:73
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:128
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104
     msgid "Every"
     msgstr "毎"
     
    -#: ../../godmode/alerts/alert_templates.php:83
    +#: ../../godmode/alerts/alert_templates.php:84
     #: ../../enterprise/dashboard/widgets/tactical.php:32
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:138
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115
     msgid "and"
     msgstr "と"
     
    -#: ../../godmode/alerts/alert_templates.php:89
    -#: ../../godmode/alerts/alert_view.php:306
    -#: ../../godmode/alerts/configure_alert_template.php:552
    -#: ../../godmode/snmpconsole/snmp_alert.php:919
    -#: ../../enterprise/godmode/alerts/alert_events.php:453
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:257
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:143
    +#: ../../godmode/alerts/alert_templates.php:91
    +#: ../../godmode/alerts/alert_view.php:310
    +#: ../../godmode/alerts/configure_alert_template.php:622
    +#: ../../godmode/snmpconsole/snmp_alert.php:1014
    +#: ../../enterprise/godmode/alerts/alert_events.php:519
    +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:298
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1931
    +#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122
     msgid "Time threshold"
     msgstr "再通知間隔"
     
    -#: ../../godmode/alerts/alert_templates.php:269
    -#: ../../godmode/modules/manage_network_components.php:532
    -#: ../../godmode/reporting/reporting_builder.list_items.php:209
    -#: ../../godmode/tag/tag.php:176 ../../godmode/tag/tag.php:281
    -#: ../../godmode/users/user_list.php:241
    -#: ../../operation/agentes/alerts_status.php:423
    -#: ../../operation/agentes/status_monitor.php:542
    -#: ../../operation/events/events_list.php:708 ../../operation/tree.php:197
    -#: ../../enterprise/godmode/alerts/alert_events_list.php:382
    -#: ../../enterprise/godmode/modules/local_components.php:457
    -#: ../../enterprise/meta/advanced/policymanager.queue.php:244
    -#: ../../enterprise/meta/agentsearch.php:81
    +#: ../../godmode/alerts/alert_templates.php:320
    +#: ../../godmode/modules/manage_network_components.php:614
    +#: ../../godmode/reporting/reporting_builder.list_items.php:273
    +#: ../../godmode/tag/tag.php:193 ../../godmode/tag/tag.php:302
    +#: ../../godmode/users/user_list.php:295
    +#: ../../operation/agentes/alerts_status.php:449
    +#: ../../operation/agentes/status_monitor.php:715
    +#: ../../operation/events/events_list.php:1088 ../../operation/tree.php:238
    +#: ../../enterprise/godmode/alerts/alert_events_list.php:451
    +#: ../../enterprise/godmode/modules/local_components.php:522
    +#: ../../enterprise/meta/advanced/policymanager.queue.php:246
    +#: ../../enterprise/meta/agentsearch.php:92
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:324
     msgid "Show Options"
     msgstr "オプション表示"
     
    -#: ../../godmode/alerts/alert_templates.php:360
    +#: ../../godmode/alerts/alert_templates.php:422
     msgid "No alert templates defined"
     msgstr "アラートテンプレートが定義されていません"
     
     #: ../../godmode/alerts/alert_view.php:49
    -#: ../../godmode/alerts/alert_view.php:324
    -#: ../../include/functions_events.php:2241
    +#: ../../godmode/alerts/alert_view.php:327
    +#: ../../include/functions_events.php:4204
    +#: ../../include/functions_events.php.orig:4111
     msgid "Alert details"
     msgstr "アラート詳細"
     
    -#: ../../godmode/alerts/alert_view.php:106
    -#: ../../mobile/operation/alerts.php:96 ../../mobile/operation/alerts.php:97
    -#: ../../mobile/operation/alerts.php:203 ../../mobile/operation/alerts.php:204
    +#: ../../godmode/alerts/alert_view.php:101
    +#: ../../mobile/operation/alerts.php:107 ../../mobile/operation/alerts.php:108
    +#: ../../mobile/operation/alerts.php:237 ../../mobile/operation/alerts.php:238
     msgid "Stand by"
     msgstr "スタンバイ"
     
    -#: ../../godmode/alerts/alert_view.php:144
    -#: ../../godmode/alerts/configure_alert_template.php:847
    -#: ../../include/functions_ui.php:1039
    +#: ../../godmode/alerts/alert_view.php:134
    +#: ../../godmode/alerts/configure_alert_template.php:1034
    +#: ../../include/functions_ui.php:1310
     msgid ""
     "The alert would fire when the value matches "
     msgstr "取得した値が  にマッチした場合、アラートを発生させます。"
     
    -#: ../../godmode/alerts/alert_view.php:147 ../../include/functions_ui.php:1042
    +#: ../../godmode/alerts/alert_view.php:136 ../../include/functions_ui.php:1313
     msgid ""
     "The alert would fire when the value doesn't match "
     msgstr "取得した値が  にマッチしない場合、アラートを発生させます。"
     
    -#: ../../godmode/alerts/alert_view.php:152
    -#: ../../godmode/alerts/configure_alert_template.php:849
    -#: ../../include/functions_ui.php:1030
    +#: ../../godmode/alerts/alert_view.php:143
    +#: ../../godmode/alerts/configure_alert_template.php:1036
    +#: ../../include/functions_ui.php:1299
     msgid "The alert would fire when the value is "
     msgstr "取得した値が  の場合、アラートを発生させます。"
     
    -#: ../../godmode/alerts/alert_view.php:156
    -#: ../../godmode/alerts/configure_alert_template.php:850
    -#: ../../include/functions_ui.php:1034
    +#: ../../godmode/alerts/alert_view.php:148
    +#: ../../godmode/alerts/configure_alert_template.php:1037
    +#: ../../include/functions_ui.php:1304
     msgid "The alert would fire when the value is not "
     msgstr "取得した値が  以外の場合、アラートを発生させます。"
     
    -#: ../../godmode/alerts/alert_view.php:161
    -#: ../../godmode/alerts/configure_alert_template.php:851
    -#: ../../include/functions_ui.php:1048
    +#: ../../godmode/alerts/alert_view.php:154
    +#: ../../godmode/alerts/configure_alert_template.php:1038
    +#: ../../include/functions_ui.php:1322
     msgid ""
     "The alert would fire when the value is between  and "
     ""
    @@ -10719,7 +11993,7 @@ msgstr ""
     "取得した値が  "
     "の間になったら、アラートを発生させます。"
     
    -#: ../../godmode/alerts/alert_view.php:164 ../../include/functions_ui.php:1051
    +#: ../../godmode/alerts/alert_view.php:156 ../../include/functions_ui.php:1325
     msgid ""
     "The alert would fire when the value is not between  "
     "and "
    @@ -10727,1381 +12001,1472 @@ msgstr ""
     "取得した値が  "
     "の間を外れたら、アラートを発生させます。"
     
    -#: ../../godmode/alerts/alert_view.php:170
    -#: ../../godmode/alerts/configure_alert_template.php:853
    +#: ../../godmode/alerts/alert_view.php:164
    +#: ../../godmode/alerts/configure_alert_template.php:1040
     msgid "The alert would fire when the value is below "
     msgstr "値が  より小さかったときにアラートが発報します"
     
    -#: ../../godmode/alerts/alert_view.php:174
    -#: ../../godmode/alerts/configure_alert_template.php:854
    +#: ../../godmode/alerts/alert_view.php:169
    +#: ../../godmode/alerts/configure_alert_template.php:1041
     msgid "The alert would fire when the value is above "
     msgstr "値が  を超えたときにアラートが発報されます"
     
    -#: ../../godmode/alerts/alert_view.php:179
    -#: ../../godmode/alerts/configure_alert_template.php:857
    +#: ../../godmode/alerts/alert_view.php:175
    +#: ../../godmode/alerts/configure_alert_template.php:1044
     msgid "The alert would fire when the module value changes"
     msgstr "モジュールの値が変化したときにアラートが上がります。"
     
    -#: ../../godmode/alerts/alert_view.php:182
    -#: ../../godmode/alerts/configure_alert_template.php:858
    +#: ../../godmode/alerts/alert_view.php:177
    +#: ../../godmode/alerts/configure_alert_template.php:1045
     msgid "The alert would fire when the module value does not change"
     msgstr "モジュールの値が変化しなかったときにアラートが上がります。"
     
    -#: ../../godmode/alerts/alert_view.php:186
    -#: ../../godmode/alerts/configure_alert_template.php:855
    -#: ../../include/functions_ui.php:1065
    +#: ../../godmode/alerts/alert_view.php:182
    +#: ../../godmode/alerts/configure_alert_template.php:1042
    +#: ../../include/functions_ui.php:1341
     msgid "The alert would fire when the module is in warning status"
     msgstr "該当モジュールが警告状態になったら、アラートを発生させます。"
     
    -#: ../../godmode/alerts/alert_view.php:189
    -#: ../../godmode/alerts/configure_alert_template.php:856
    -#: ../../include/functions_ui.php:1070
    +#: ../../godmode/alerts/alert_view.php:186
    +#: ../../godmode/alerts/configure_alert_template.php:1043
    +#: ../../include/functions_ui.php:1346
     msgid "The alert would fire when the module is in critical status"
     msgstr "該当モジュールが障害になったら、アラートを発生させます。"
     
    -#: ../../godmode/alerts/alert_view.php:192
    -#: ../../godmode/alerts/configure_alert_template.php:859
    +#: ../../godmode/alerts/alert_view.php:190
    +#: ../../godmode/alerts/configure_alert_template.php:1048
    +msgid "The alert would fire when the module is in not normal status"
    +msgstr "モジュールが正常状態でない場合にアラートが発報されます。"
    +
    +#: ../../godmode/alerts/alert_view.php:194
    +#: ../../godmode/alerts/configure_alert_template.php:1046
     msgid "The alert would fire when the module is in unknown status"
     msgstr "モジュールが不明状態になるとアラートが発生します。"
     
    -#: ../../godmode/alerts/alert_view.php:298
    -#: ../../godmode/alerts/configure_alert_template.php:539
    +#: ../../godmode/alerts/alert_view.php:306
    +#: ../../godmode/alerts/configure_alert_template.php:599
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:891
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1927
     msgid "Use special days list"
     msgstr "特別日一覧を利用する"
     
    -#: ../../godmode/alerts/alert_view.php:310
    +#: ../../godmode/alerts/alert_view.php:314
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1936
     msgid "Number of alerts"
     msgstr "アラート数"
     
    -#: ../../godmode/alerts/alert_view.php:310
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:818
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1352
    -#: ../../include/functions_reporting.php:1039
    -#: ../../include/functions_ui.php:2057 ../../include/functions_graph.php:860
    -#: ../../include/functions_graph.php:861 ../../include/functions_graph.php:862
    -#: ../../include/functions_graph.php:870 ../../include/functions_graph.php:871
    -#: ../../include/functions_graph.php:872 ../../include/functions_graph.php:878
    -#: ../../include/functions_graph.php:903
    -#: ../../include/functions_graph.php:1601
    -#: ../../include/functions_graph.php:4631
    -#: ../../include/functions_graph.php:5515
    -#: ../../include/functions_graph.php:5518
    -#: ../../include/functions_graph.php:5521
    -#: ../../include/functions_reporting_html.php:2707
    -#: ../../include/graphs/functions_pchart.php:203
    -#: ../../include/graphs/functions_pchart.php:1465
    -#: ../../enterprise/dashboard/widgets/top_n.php:477
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:200
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:275
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1384
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1693
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:476
    -#: ../../enterprise/include/functions_reporting_csv.php:531
    -#: ../../enterprise/include/functions_reporting_pdf.php:912
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:840
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:849
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:926
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:935
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1127
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1136
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1343
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1352
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1424
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1433
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1540
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1549
    +#: ../../godmode/alerts/alert_view.php:314
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1090
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2033
    +#: ../../include/functions_ui.php:2563
    +#: ../../include/functions_reporting_html.php:3675
    +#: ../../include/functions_reporting.php:1391
    +#: ../../enterprise/dashboard/widgets/top_n.php:547
    +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:271
    +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:380
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2217
    +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:729
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1936
    +#: ../../enterprise/include/functions_reporting_csv.php:881
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:975
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:984
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1062
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1071
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1266
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1275
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1504
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1513
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1588
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1597
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1707
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1716
     msgid "Min"
     msgstr "最小"
     
    -#: ../../godmode/alerts/alert_view.php:310
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:820
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1350
    -#: ../../include/functions_reporting.php:1036
    -#: ../../include/functions_ui.php:2057 ../../include/functions_graph.php:860
    -#: ../../include/functions_graph.php:861 ../../include/functions_graph.php:862
    -#: ../../include/functions_graph.php:870 ../../include/functions_graph.php:871
    -#: ../../include/functions_graph.php:872 ../../include/functions_graph.php:878
    -#: ../../include/functions_graph.php:900
    -#: ../../include/functions_graph.php:1599
    -#: ../../include/functions_graph.php:4631
    -#: ../../include/functions_graph.php:5515
    -#: ../../include/functions_graph.php:5518
    -#: ../../include/functions_graph.php:5521
    -#: ../../include/functions_reporting_html.php:2706
    -#: ../../include/graphs/functions_pchart.php:197
    -#: ../../include/graphs/functions_pchart.php:1467
    -#: ../../enterprise/dashboard/widgets/top_n.php:474
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:205
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:272
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1382
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1691
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:478
    -#: ../../enterprise/include/functions_reporting_csv.php:531
    -#: ../../enterprise/include/functions_reporting_pdf.php:911
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:842
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:851
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:928
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:937
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1129
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1138
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1345
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1354
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1426
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1435
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1542
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1551
    +#: ../../godmode/alerts/alert_view.php:314
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1092
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2026
    +#: ../../include/functions_ui.php:2563
    +#: ../../include/functions_reporting_html.php:3674
    +#: ../../include/functions_reporting.php:1387
    +#: ../../enterprise/dashboard/widgets/top_n.php:543
    +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282
    +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:373
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1646
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2210
    +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:737
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1936
    +#: ../../enterprise/include/functions_reporting_csv.php:881
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:977
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:986
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1064
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1073
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1268
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1277
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1506
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1515
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1590
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1599
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1709
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1718
     msgid "Max"
     msgstr "最大"
     
    -#: ../../godmode/alerts/alert_view.php:325
    +#: ../../godmode/alerts/alert_view.php:328
     msgid "Firing conditions"
     msgstr "発報条件"
     
    -#: ../../godmode/alerts/alert_view.php:348
    -#: ../../godmode/alerts/alert_view.php:370
    +#: ../../godmode/alerts/alert_view.php:351
    +#: ../../godmode/alerts/alert_view.php:371
     msgid "Every time that the alert is fired"
     msgstr "アラート発生のたび"
     
    -#: ../../godmode/alerts/alert_view.php:414
    +#: ../../godmode/alerts/alert_view.php:412
     msgid ""
     "Select the desired action and mode to see the Firing/Recovery fields for "
     "this action"
     msgstr "このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを選択してください。"
     
    -#: ../../godmode/alerts/alert_view.php:417
    +#: ../../godmode/alerts/alert_view.php:415
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2297
     msgid "Select the action"
     msgstr "アクションを選択"
     
    -#: ../../godmode/alerts/alert_view.php:420
    -#: ../../godmode/alerts/configure_alert_action.php:148
    +#: ../../godmode/alerts/alert_view.php:418
    +#: ../../godmode/alerts/configure_alert_action.php:200
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2262
     msgid "Firing"
     msgstr "障害通知"
     
    -#: ../../godmode/alerts/alert_view.php:421
    +#: ../../godmode/alerts/alert_view.php:419
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263
     msgid "Recovering"
     msgstr "リカバリ中"
     
    -#: ../../godmode/alerts/alert_view.php:423
    -#: ../../godmode/massive/massive_edit_modules.php:577
    -#: ../../godmode/servers/manage_recontask.php:296
    -#: ../../godmode/servers/manage_recontask_form.php:243
    -#: ../../enterprise/godmode/services/services.service.php:293
    -#: ../../enterprise/operation/services/services.list.php:192
    -#: ../../enterprise/operation/services/services.table_services.php:161
    +#: ../../godmode/alerts/alert_view.php:421
    +#: ../../godmode/massive/massive_edit_modules.php:861
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:723
    +#: ../../enterprise/godmode/servers/HA_cluster.php:135
    +#: ../../enterprise/godmode/services/services.service.php:395
    +#: ../../enterprise/operation/services/services.list.php:231
    +#: ../../enterprise/operation/services/services.table_services.php:210
     msgid "Mode"
     msgstr "モード"
     
    -#: ../../godmode/alerts/alert_view.php:438
    -#: ../../godmode/alerts/alert_view.php:532
    -#: ../../godmode/alerts/configure_alert_template.php:673
    +#: ../../godmode/alerts/alert_view.php:436
    +#: ../../godmode/alerts/alert_view.php:527
    +#: ../../godmode/alerts/configure_alert_template.php:836
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2354
     msgid "Firing fields"
     msgstr "発報フィールド"
     
    -#: ../../godmode/alerts/alert_view.php:439
    +#: ../../godmode/alerts/alert_view.php:436
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2356
     msgid ""
     "Fields passed to the command executed by this action when the alert is fired"
     msgstr "アラートが発報されたときに、このアクションによって実行されるコマンドに渡されるフィールド"
     
    -#: ../../godmode/alerts/alert_view.php:442
    -#: ../../godmode/alerts/alert_view.php:531
    +#: ../../godmode/alerts/alert_view.php:438
    +#: ../../godmode/alerts/alert_view.php:526
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2362
     msgid "Fields configured on the command associated to the action"
     msgstr "アクションに関連付けられたコマンドで設定されたフィールド"
     
    -#: ../../godmode/alerts/alert_view.php:443
    +#: ../../godmode/alerts/alert_view.php:439
     msgid "Template fields"
     msgstr "テンプレートフィールド"
     
    -#: ../../godmode/alerts/alert_view.php:444
    +#: ../../godmode/alerts/alert_view.php:439
     msgid "Triggering fields configured in template"
     msgstr "テンプレートで設定したトリガーフィールド"
     
    -#: ../../godmode/alerts/alert_view.php:445
    +#: ../../godmode/alerts/alert_view.php:440
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2370
     msgid "Action fields"
     msgstr "アクションフィールド"
     
    -#: ../../godmode/alerts/alert_view.php:446
    +#: ../../godmode/alerts/alert_view.php:440
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2372
     msgid "Triggering fields configured in action"
     msgstr "アクションで設定したトリガーフィールド"
     
    -#: ../../godmode/alerts/alert_view.php:448
    +#: ../../godmode/alerts/alert_view.php:442
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375
     msgid "Executed on firing"
     msgstr "発報時の実行"
     
    -#: ../../godmode/alerts/alert_view.php:449
    -#: ../../godmode/alerts/alert_view.php:532
    +#: ../../godmode/alerts/alert_view.php:442
    +#: ../../godmode/alerts/alert_view.php:527
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377
     msgid "Fields used on execution when the alert is fired"
     msgstr "アラートが発報したときに実行に使われるフィールド"
     
    -#: ../../godmode/alerts/alert_view.php:508
    -#: ../../godmode/alerts/alert_view.php:595
    -#: ../../godmode/alerts/configure_alert_action.php:153
    -#: ../../godmode/servers/plugin.php:381
    +#: ../../godmode/alerts/alert_view.php:504
    +#: ../../godmode/alerts/alert_view.php:591
    +#: ../../godmode/alerts/configure_alert_action.php:205
    +#: ../../godmode/servers/plugin.php:415
     msgid "Command preview"
     msgstr "実行されるコマンドのプレビュー"
     
    -#: ../../godmode/alerts/alert_view.php:516
    +#: ../../godmode/alerts/alert_view.php:512
     msgid "The alert recovering is disabled on this template."
     msgstr "このテンプレートでは復旧アラートが無効です。"
     
    -#: ../../godmode/alerts/alert_view.php:529
    +#: ../../godmode/alerts/alert_view.php:524
     msgid "Recovering fields"
     msgstr "復旧フィールド"
     
    -#: ../../godmode/alerts/alert_view.php:529
    +#: ../../godmode/alerts/alert_view.php:524
     msgid ""
     "Fields passed to the command executed by this action when the alert is "
     "recovered"
     msgstr "アラートが復旧したときに、このアクションによって実行されるコマンドに渡されるフィールド"
     
    -#: ../../godmode/alerts/alert_view.php:533
    +#: ../../godmode/alerts/alert_view.php:528
     msgid "Template recovery fields"
     msgstr "テンプレート復旧フィールド"
     
    -#: ../../godmode/alerts/alert_view.php:533
    +#: ../../godmode/alerts/alert_view.php:528
     msgid "Recovery fields configured in alert template"
     msgstr "アラートテンプレートで設定した復旧フィールド"
     
    -#: ../../godmode/alerts/alert_view.php:534
    +#: ../../godmode/alerts/alert_view.php:529
     msgid "Action recovery fields"
     msgstr "アクション復旧フィールド"
     
    -#: ../../godmode/alerts/alert_view.php:534
    +#: ../../godmode/alerts/alert_view.php:529
     msgid "Recovery fields configured in alert action"
     msgstr "アラートアクションで設定した復旧フィールド"
     
    -#: ../../godmode/alerts/alert_view.php:535
    +#: ../../godmode/alerts/alert_view.php:530
     msgid "Executed on recovery"
     msgstr "復旧時の実行"
     
    -#: ../../godmode/alerts/alert_view.php:535
    +#: ../../godmode/alerts/alert_view.php:530
     msgid "Fields used on execution when the alert is recovered"
     msgstr "アラートが復旧した時に実行に使われるフィールド"
     
    -#: ../../godmode/alerts/configure_alert_action.php:57
    -#: ../../godmode/alerts/configure_alert_action.php:66
    +#: ../../godmode/alerts/configure_alert_action.php:60
    +#: ../../godmode/alerts/configure_alert_action.php:73
     msgid "Configure alert action"
     msgstr "アクションの作成"
     
    -#: ../../godmode/alerts/configure_alert_action.php:98
    +#: ../../godmode/alerts/configure_alert_action.php:114
     msgid "Update Action"
     msgstr "アクションの更新"
     
    -#: ../../godmode/alerts/configure_alert_action.php:128
    -#: ../../godmode/alerts/configure_alert_command.php:150
    -#: ../../godmode/events/event_responses.editor.php:115
    -#: ../../godmode/events/event_responses.editor.php:121
    -#: ../../godmode/massive/massive_edit_plugins.php:437
    -#: ../../godmode/servers/plugin.php:388 ../../godmode/servers/plugin.php:394
    -#: ../../godmode/servers/plugin.php:737
    -#: ../../godmode/servers/recon_script.php:370
    -msgid "Command"
    -msgstr "コマンド"
    +#: ../../godmode/alerts/configure_alert_action.php:132
    +msgid "This action may stop working, if you change its name."
    +msgstr "名前を変更すると、このアクションは動作を停止します。"
     
    -#: ../../godmode/alerts/configure_alert_action.php:136
    -#: ../../godmode/alerts/configure_alert_command.php:130
    +#: ../../godmode/alerts/configure_alert_action.php:170
    +#: ../../godmode/alerts/configure_alert_command.php:155
     msgid "Create Command"
     msgstr "コマンドの作成"
     
    -#: ../../godmode/alerts/configure_alert_action.php:149
    +#: ../../godmode/alerts/configure_alert_action.php:201
     msgid "Recovery"
     msgstr "復旧通知"
     
    -#: ../../godmode/alerts/configure_alert_command.php:42
    +#: ../../godmode/alerts/configure_alert_command.php:43
     msgid "Configure alert command"
     msgstr "コマンドの作成"
     
    -#: ../../godmode/alerts/configure_alert_command.php:127
    +#: ../../godmode/alerts/configure_alert_command.php:155
     msgid "Update Command"
     msgstr "コマンドの更新"
     
    -#: ../../godmode/alerts/configure_alert_command.php:160
    +#: ../../godmode/alerts/configure_alert_command.php:199
     #, php-format
     msgid "Field %s description"
     msgstr "フィールド %s の説明"
     
    -#: ../../godmode/alerts/configure_alert_command.php:175
    +#: ../../godmode/alerts/configure_alert_command.php:209
     #, php-format
     msgid "Field %s values"
     msgstr "フィールド %s の値"
     
    +#: ../../godmode/alerts/configure_alert_command.php:225
    +msgid "Hide"
    +msgstr "隠す"
    +
     #: ../../godmode/alerts/configure_alert_special_days.php:55
     msgid "Configure special day"
     msgstr "特別日設定"
     
    -#: ../../godmode/alerts/configure_alert_template.php:66
    -#: ../../godmode/alerts/configure_alert_template.php:85
    -#: ../../godmode/alerts/configure_alert_template.php:103
    -#: ../../include/functions_menu.php:494
    +#: ../../godmode/alerts/configure_alert_template.php:69
    +#: ../../godmode/alerts/configure_alert_template.php:93
    +#: ../../godmode/alerts/configure_alert_template.php:126
    +#: ../../include/functions_menu.php:505
     msgid "Configure alert template"
     msgstr "アラートテンプレート設定"
     
    -#: ../../godmode/alerts/configure_alert_template.php:121
    -#: ../../godmode/modules/manage_network_components.php:160
    -#: ../../enterprise/godmode/modules/local_components.php:106
    +#: ../../godmode/alerts/configure_alert_template.php:149
    +#: ../../godmode/modules/manage_network_components.php:198
    +#: ../../enterprise/godmode/modules/local_components.php:122
     #, php-format
     msgid "Successfully created from %s"
     msgstr "%s から作成しました。"
     
    -#: ../../godmode/alerts/configure_alert_template.php:150
    -#: ../../godmode/alerts/configure_alert_template.php:155
    -#: ../../godmode/alerts/configure_alert_template.php:170
    -#: ../../godmode/alerts/configure_alert_template.php:175
    -#: ../../godmode/alerts/configure_alert_template.php:190
    -#: ../../godmode/alerts/configure_alert_template.php:195
    -#: ../../include/functions_config.php:767
    -#: ../../enterprise/godmode/alerts/alert_events.php:96
    -#: ../../enterprise/godmode/alerts/alert_events.php:101
    -#: ../../enterprise/godmode/alerts/alert_events.php:116
    -#: ../../enterprise/godmode/alerts/alert_events.php:121
    -#: ../../enterprise/godmode/alerts/alert_events.php:136
    +#: ../../godmode/alerts/configure_alert_template.php:178
    +#: ../../godmode/alerts/configure_alert_template.php:182
    +#: ../../godmode/alerts/configure_alert_template.php:199
    +#: ../../godmode/alerts/configure_alert_template.php:203
    +#: ../../godmode/alerts/configure_alert_template.php:220
    +#: ../../godmode/alerts/configure_alert_template.php:224
    +#: ../../include/functions_config.php:1435
    +#: ../../enterprise/godmode/alerts/alert_events.php:120
    +#: ../../enterprise/godmode/alerts/alert_events.php:124
     #: ../../enterprise/godmode/alerts/alert_events.php:141
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:45
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:51
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:56
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:75
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:81
    +#: ../../enterprise/godmode/alerts/alert_events.php:145
    +#: ../../enterprise/godmode/alerts/alert_events.php:162
    +#: ../../enterprise/godmode/alerts/alert_events.php:166
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:60
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:64
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:68
     #: ../../enterprise/godmode/reporting/cluster_builder.main.php:86
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:106
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:112
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:117
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:139
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:91
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:95
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:113
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:118
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:122
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:140
     #: ../../enterprise/godmode/reporting/cluster_builder.main.php:145
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:150
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:149
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:170
     #: ../../enterprise/godmode/reporting/cluster_builder.main.php:175
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:181
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:186
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:179
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:198
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:203
     #: ../../enterprise/godmode/reporting/cluster_builder.main.php:207
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:213
    -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:218
    -#: ../../enterprise/godmode/setup/setup_history.php:71
    -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:356
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:225
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:230
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:234
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:250
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:255
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:259
    +#: ../../enterprise/godmode/setup/setup_history.php:66
    +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:413
     msgid "Step"
     msgstr "ステップ"
     
    -#: ../../godmode/alerts/configure_alert_template.php:151
    -#: ../../godmode/alerts/configure_alert_template.php:156
    -#: ../../godmode/servers/plugin.php:326 ../../godmode/servers/plugin.php:332
    -#: ../../godmode/setup/setup.php:74 ../../godmode/setup/setup.php:112
    -#: ../../include/ajax/events.php:344
    -#: ../../include/functions_reporting.php:6118
    -#: ../../include/functions_reports.php:582
    -#: ../../enterprise/godmode/alerts/alert_events.php:97
    -#: ../../enterprise/godmode/alerts/alert_events.php:102
    -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47
    -#: ../../enterprise/include/functions_reporting_csv.php:496
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:184
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:416
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:485
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1014
    +#: ../../godmode/alerts/configure_alert_template.php:179
    +#: ../../godmode/alerts/configure_alert_template.php:183
    +#: ../../godmode/servers/plugin.php:360 ../../godmode/servers/plugin.php:365
    +#: ../../godmode/setup/setup.php:89 ../../godmode/setup/setup.php:149
    +#: ../../include/ajax/events.php:1225 ../../include/functions_reports.php:752
    +#: ../../include/functions_reporting.php:7211
    +#: ../../enterprise/godmode/alerts/alert_events.php:121
    +#: ../../enterprise/godmode/alerts/alert_events.php:125
    +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:48
    +#: ../../enterprise/include/class/Aws.cloud.php:282
    +#: ../../enterprise/include/functions_reporting_csv.php:847
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:247
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:530
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:601
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1151
     msgid "General"
     msgstr "一般"
     
    -#: ../../godmode/alerts/configure_alert_template.php:171
    -#: ../../godmode/alerts/configure_alert_template.php:176
    -#: ../../enterprise/godmode/alerts/alert_events.php:117
    -#: ../../enterprise/godmode/alerts/alert_events.php:122
    +#: ../../godmode/alerts/configure_alert_template.php:200
    +#: ../../godmode/alerts/configure_alert_template.php:204
    +#: ../../enterprise/godmode/alerts/alert_events.php:142
    +#: ../../enterprise/godmode/alerts/alert_events.php:146
     msgid "Conditions"
     msgstr "状態"
     
    -#: ../../godmode/alerts/configure_alert_template.php:191
    -#: ../../godmode/alerts/configure_alert_template.php:196
    -#: ../../enterprise/godmode/alerts/alert_events.php:137
    -#: ../../enterprise/godmode/alerts/alert_events.php:142
    +#: ../../godmode/alerts/configure_alert_template.php:221
    +#: ../../godmode/alerts/configure_alert_template.php:225
    +#: ../../enterprise/godmode/alerts/alert_events.php:163
    +#: ../../enterprise/godmode/alerts/alert_events.php:167
     msgid "Advanced fields"
     msgstr "拡張フィールド"
     
    -#: ../../godmode/alerts/configure_alert_template.php:523
    -#: ../../enterprise/godmode/alerts/alert_events.php:430
    +#: ../../godmode/alerts/configure_alert_template.php:481
    +msgid "No template name specified"
    +msgstr "テンプレート名が指定されていません"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:583
    +#: ../../enterprise/godmode/alerts/alert_events.php:484
     msgid "Days of week"
     msgstr "曜日"
     
    -#: ../../godmode/alerts/configure_alert_template.php:542
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:886
    -#: ../../enterprise/godmode/alerts/alert_events.php:446
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1450
    +#: ../../godmode/alerts/configure_alert_template.php:602
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1174
    +#: ../../operation/events/events.php:1171
    +#: ../../enterprise/godmode/alerts/alert_events.php:500
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1729
     msgid "Time from"
     msgstr "開始時間"
     
    -#: ../../godmode/alerts/configure_alert_template.php:546
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:895
    -#: ../../enterprise/godmode/alerts/alert_events.php:449
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1458
    +#: ../../godmode/alerts/configure_alert_template.php:611
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:1195
    +#: ../../operation/events/events.php:1222
    +#: ../../enterprise/godmode/alerts/alert_events.php:509
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747
     msgid "Time to"
     msgstr "終了時間"
     
    -#: ../../godmode/alerts/configure_alert_template.php:556
    -#: ../../godmode/snmpconsole/snmp_alert.php:911
    -#: ../../enterprise/godmode/alerts/alert_events.php:457
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:253
    +#: ../../godmode/alerts/configure_alert_template.php:633
    +#: ../../godmode/snmpconsole/snmp_alert.php:1006
    +#: ../../enterprise/godmode/alerts/alert_events.php:530
    +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:294
     msgid "Min. number of alerts"
     msgstr "最小アラート数"
     
    -#: ../../godmode/alerts/configure_alert_template.php:560
    +#: ../../godmode/alerts/configure_alert_template.php:643
     msgid "Reset counter for non-sustained alerts"
     msgstr "アラートが継続しない場合にカウンターをリセット"
     
    -#: ../../godmode/alerts/configure_alert_template.php:560
    +#: ../../godmode/alerts/configure_alert_template.php:643
     msgid ""
     "Enable this option if you want the counter to be reset when the alert is not "
     "being fired consecutively, even if it's within the time threshold"
     msgstr "再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタをリセットしたい場合にこのオプションを有効化します。"
     
    -#: ../../godmode/alerts/configure_alert_template.php:563
    -#: ../../godmode/snmpconsole/snmp_alert.php:914
    -#: ../../enterprise/godmode/alerts/alert_events.php:460
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:255
    +#: ../../godmode/alerts/configure_alert_template.php:646
    +#: ../../godmode/snmpconsole/snmp_alert.php:1009
    +#: ../../enterprise/godmode/alerts/alert_events.php:539
    +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:296
     msgid "Max. number of alerts"
     msgstr "最大アラート数"
     
    -#: ../../godmode/alerts/configure_alert_template.php:591
    +#: ../../godmode/alerts/configure_alert_template.php:699
     msgid ""
     "Unless they're left blank, the fields from the action will override those "
     "set on the template."
     msgstr "空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が優先されます。"
     
    -#: ../../godmode/alerts/configure_alert_template.php:593
    +#: ../../godmode/alerts/configure_alert_template.php:703
     msgid "Condition type"
     msgstr "条件種別"
     
    -#: ../../godmode/alerts/configure_alert_template.php:600
    +#: ../../godmode/alerts/configure_alert_template.php:718
     msgid "Trigger when matches the value"
     msgstr "以下の値にマッチしたら、条件を満たしたと判断する。"
     
    -#: ../../godmode/alerts/configure_alert_template.php:612
    +#: ../../godmode/alerts/configure_alert_template.php:741
     msgid "The regular expression is valid"
     msgstr "この正規表現は正しいです。"
     
    -#: ../../godmode/alerts/configure_alert_template.php:617
    +#: ../../godmode/alerts/configure_alert_template.php:751
     msgid "The regular expression is not valid"
     msgstr "この正規表現は間違っています。"
     
    -#: ../../godmode/alerts/configure_alert_template.php:623
    -#: ../../godmode/massive/massive_edit_modules.php:392
    -#: ../../godmode/massive/massive_edit_modules.php:438
    -#: ../../godmode/massive/massive_edit_modules.php:540
    -#: ../../godmode/modules/manage_network_components_form_common.php:119
    -#: ../../godmode/modules/manage_network_components_form_common.php:136
    -#: ../../include/functions_alerts.php:570
    -#: ../../include/functions_treeview.php:94
    -#: ../../include/functions_treeview.php:107
    -#: ../../include/functions_graph.php:5162
    -#: ../../include/functions_reporting_html.php:3253
    -#: ../../enterprise/dashboard/widgets/top_n.php:79
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:241
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:270
    -#: ../../enterprise/godmode/modules/configure_local_component.php:238
    -#: ../../enterprise/godmode/modules/configure_local_component.php:255
    +#: ../../godmode/alerts/configure_alert_template.php:759
    +#: ../../godmode/massive/massive_edit_modules.php:537
    +#: ../../godmode/massive/massive_edit_modules.php:606
    +#: ../../godmode/massive/massive_edit_modules.php:813
    +#: ../../godmode/modules/manage_network_components_form_common.php:169
    +#: ../../godmode/modules/manage_network_components_form_common.php:204
    +#: ../../include/functions_alerts.php:659
    +#: ../../include/functions_treeview.php:92
    +#: ../../include/functions_treeview.php:104
    +#: ../../include/functions_reporting_html.php:4175
    +#: ../../enterprise/dashboard/widgets/top_n.php:99
    +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:262
    +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:311
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:388
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:457
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:671
    +#: ../../enterprise/godmode/modules/configure_local_component.php:298
    +#: ../../enterprise/godmode/modules/configure_local_component.php:333
     msgid "Min."
     msgstr "最小"
     
    -#: ../../godmode/alerts/configure_alert_template.php:665
    +#: ../../godmode/alerts/configure_alert_template.php:817
     msgid "Alert recovery"
     msgstr "復旧アラート"
     
    -#: ../../godmode/alerts/configure_alert_template.php:674
    +#: ../../godmode/alerts/configure_alert_template.php:837
     msgid "Recovery fields"
     msgstr "復旧フィールド"
     
    -#: ../../godmode/alerts/configure_alert_template.php:775
    -#: ../../godmode/modules/manage_network_components_form_common.php:58
    -#: ../../enterprise/godmode/modules/configure_local_component.php:155
    +#: ../../godmode/alerts/configure_alert_template.php:954
    +#: ../../godmode/modules/manage_network_components_form_common.php:63
    +#: ../../enterprise/godmode/modules/configure_local_component.php:158
     msgid "Wizard level"
     msgstr "ウィザードレベル"
     
    -#: ../../godmode/alerts/configure_alert_template.php:777
    +#: ../../godmode/alerts/configure_alert_template.php:956
     msgid "No wizard"
     msgstr "ウィザードがありません"
     
    -#: ../../godmode/alerts/configure_alert_template.php:824
    -#: ../../godmode/alerts/configure_alert_template.php:828
    -#: ../../enterprise/godmode/alerts/alert_events.php:552
    -#: ../../enterprise/include/functions_dashboard.php:831
    -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:163
    -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:183
    -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:212
    -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:173
    +#: ../../godmode/alerts/configure_alert_template.php:999
    +#: ../../godmode/wizards/HostDevices.class.php:934
    +#: ../../include/class/CustomNetScan.class.php:723
    +#: ../../enterprise/godmode/alerts/alert_events.php:667
    +#: ../../enterprise/godmode/wizards/Cloud.class.php:535
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1736
    +#: ../../enterprise/include/class/Aws.cloud.php:1310
    +#: ../../enterprise/include/class/MySQL.app.php:906
    +#: ../../enterprise/include/class/Omnishell.class.php:829
    +#: ../../enterprise/include/class/Oracle.app.php:943
    +#: ../../enterprise/include/class/SAP.app.php:752
    +#: ../../enterprise/include/class/VMware.app.php:752
    +#: ../../enterprise/meta/monitoring/wizard/wizard.php:91
    +msgid "Finish"
    +msgstr "終了"
    +
    +#: ../../godmode/alerts/configure_alert_template.php:1005
    +#: ../../godmode/alerts/configure_alert_template.php:1012
    +#: ../../godmode/wizards/HostDevices.class.php:665
    +#: ../../include/class/CustomNetScan.class.php:548
    +#: ../../enterprise/godmode/alerts/alert_events.php:670
    +#: ../../enterprise/godmode/wizards/Cloud.class.php:535
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:734
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1011
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1596
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1660
    +#: ../../enterprise/include/class/Aws.cloud.php:1310
    +#: ../../enterprise/include/class/MySQL.app.php:587
    +#: ../../enterprise/include/class/Omnishell.class.php:643
    +#: ../../enterprise/include/class/Oracle.app.php:568
    +#: ../../enterprise/include/class/SAP.app.php:432
    +#: ../../enterprise/include/class/VMware.app.php:489
    +#: ../../enterprise/include/functions_dashboard.php:999
    +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149
    +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214
    +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262
    +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215
     #: ../../enterprise/meta/monitoring/wizard/wizard.php:90
     msgid "Next"
     msgstr "次"
     
    -#: ../../godmode/alerts/configure_alert_template.php:848
    +#: ../../godmode/alerts/configure_alert_template.php:1035
     #, php-format
     msgid "The alert would fire when the value doesn\\'t match %s"
     msgstr "値が %s にマッチしなかったときにアラートが発報します"
     
    -#: ../../godmode/alerts/configure_alert_template.php:852
    +#: ../../godmode/alerts/configure_alert_template.php:1039
     msgid ""
     "The alert would fire when the value is not between  and "
     msgstr ""
     "値がの間に無い場合に、アラートを発報します。"
     
    -#: ../../godmode/alerts/configure_alert_template.php:860
    +#: ../../godmode/alerts/configure_alert_template.php:1047
     msgid ""
     "The alert template cannot have the same value for min and max thresholds."
     msgstr "アラートテンプレートは最小と最大の閾値に同じ値を設定できません。"
     
    -#: ../../godmode/category/category.php:44
    -#: ../../godmode/category/category.php:51
    -#: ../../godmode/category/edit_category.php:43
    -#: ../../godmode/category/edit_category.php:50
    +#: ../../godmode/category/category.php:41
    +#: ../../godmode/category/category.php:48
    +#: ../../godmode/category/edit_category.php:40
    +#: ../../godmode/category/edit_category.php:47
     msgid "List categories"
     msgstr "カテゴリ一覧"
     
    -#: ../../godmode/category/category.php:58
    -#: ../../godmode/category/category.php:61
    -#: ../../godmode/category/edit_category.php:57
    -#: ../../godmode/category/edit_category.php:60
    +#: ../../godmode/category/category.php:57
    +#: ../../godmode/category/category.php:59
    +#: ../../godmode/category/edit_category.php:56
    +#: ../../godmode/category/edit_category.php:58
     msgid "Categories configuration"
     msgstr "カテゴリ設定"
     
    -#: ../../godmode/category/category.php:72
    +#: ../../godmode/category/category.php:69
     msgid "Error deleting category"
     msgstr "カテゴリの削除に失敗しました"
     
    -#: ../../godmode/category/category.php:76
    +#: ../../godmode/category/category.php:72
     msgid "Successfully deleted category"
     msgstr "カテゴリを削除しました"
     
    -#: ../../godmode/category/category.php:110
    +#: ../../godmode/category/category.php:111
     msgid "Category name"
     msgstr "カテゴリ名"
     
    -#: ../../godmode/category/category.php:141
    +#: ../../godmode/category/category.php:144
     msgid "No categories found"
     msgstr "カテゴリがありません"
     
    -#: ../../godmode/category/category.php:150
    -#: ../../godmode/category/edit_category.php:146
    +#: ../../godmode/category/category.php:156
    +#: ../../godmode/category/edit_category.php:142
     msgid "Create category"
     msgstr "カテゴリの作成"
     
    -#: ../../godmode/category/edit_category.php:57
    +#: ../../godmode/category/edit_category.php:56
     msgid "Editor"
     msgstr "編集"
     
    -#: ../../godmode/category/edit_category.php:76
    +#: ../../godmode/category/edit_category.php:75
     msgid "Error updating category"
     msgstr "カテゴリの更新に失敗しました"
     
    -#: ../../godmode/category/edit_category.php:80
    +#: ../../godmode/category/edit_category.php:78
     msgid "Successfully updated category"
     msgstr "カテゴリを更新しました"
     
    -#: ../../godmode/category/edit_category.php:99
    +#: ../../godmode/category/edit_category.php:97
     msgid "Error creating category"
     msgstr "カテゴリの作成に失敗しました"
     
    -#: ../../godmode/category/edit_category.php:105
    +#: ../../godmode/category/edit_category.php:102
     msgid "Successfully created category"
     msgstr "カテゴリを作成しました"
     
    -#: ../../godmode/category/edit_category.php:137
    +#: ../../godmode/category/edit_category.php:134
     msgid "Update category"
     msgstr "カテゴリ更新"
     
    -#: ../../godmode/db/db_main.php:69
    +#: ../../godmode/db/db_main.php:74
     msgid "Current database maintenance setup"
     msgstr "現在のデータベース設定"
     
    -#: ../../godmode/db/db_main.php:76
    +#: ../../godmode/db/db_main.php:80
     msgid "Database setup"
     msgstr "データベース設定"
     
    -#: ../../godmode/db/db_main.php:80
    +#: ../../godmode/db/db_main.php:84
     msgid "Max. time before compact data"
     msgstr "データ保持日数(未圧縮)"
     
    -#: ../../godmode/db/db_main.php:82 ../../godmode/db/db_main.php:88
    -#: ../../godmode/setup/setup_visuals.php:806 ../../include/functions.php:431
    -#: ../../include/functions.php:565 ../../include/functions_html.php:834
    -#: ../../enterprise/meta/advanced/metasetup.visual.php:165
    +#: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92
    +#: ../../godmode/setup/setup_visuals.php:1300 ../../include/functions.php:489
    +#: ../../include/functions.php:629 ../../include/functions_html.php:1068
    +#: ../../enterprise/meta/advanced/metasetup.visual.php:227
     msgid "days"
     msgstr "日"
     
    -#: ../../godmode/db/db_main.php:86
    +#: ../../godmode/db/db_main.php:90
     msgid "Max. time before purge"
     msgstr "データ保持日数"
     
    -#: ../../godmode/db/db_main.php:99 ../../include/functions_reporting.php:7912
    -#: ../../include/functions_reporting_html.php:3582
    -#: ../../mobile/operation/groups.php:125 ../../operation/tree.php:293
    -#: ../../enterprise/dashboard/widgets/tree_view.php:205
    -#: ../../enterprise/include/functions_reporting_csv.php:469
    +#: ../../godmode/db/db_main.php:98
    +#: ../../include/class/Diagnostics.class.php:225
    +msgid "Database size stats"
    +msgstr "データベースサイズ"
    +
    +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:745
    +#: ../../include/class/Diagnostics.class.php:540
    +#: ../../include/functions_reporting_html.php:4539
    +#: ../../include/functions_reporting.php:9105
    +#: ../../mobile/operation/groups.php:137 ../../operation/tree.php:355
    +#: ../../enterprise/dashboard/widgets/tree_view.php:240
    +#: ../../enterprise/include/functions_reporting_csv.php:838
    +#: ../../enterprise/operation/services/services.treeview_services.php:179
     msgid "Total agents"
     msgstr "エージェント数"
     
    -#: ../../godmode/db/db_main.php:105
    -#: ../../include/functions_reporting.php:10562
    +#: ../../godmode/db/db_main.php:108
    +#: ../../include/class/Diagnostics.class.php:560
    +#: ../../include/functions_reporting.php:11514
     msgid "Total events"
     msgstr "イベント数"
     
    -#: ../../godmode/db/db_main.php:111
    +#: ../../godmode/db/db_main.php:114
     msgid "Total data items (tagente_datos)"
     msgstr "データ要素数 (tagente_datos)"
     
    -#: ../../godmode/db/db_main.php:123
    +#: ../../godmode/db/db_main.php:127
     msgid "Total log4x items (tagente_datos_log4x)"
     msgstr "log4x 要素数 (tagente_datos_log4x)"
     
    -#: ../../godmode/db/db_main.php:135
    +#: ../../godmode/db/db_main.php:140
     msgid "Total data string items (tagente_datos_string)"
     msgstr "文字列データ要素数 (tagente_datos_string)"
     
    -#: ../../godmode/db/db_main.php:141
    +#: ../../godmode/db/db_main.php:146
     msgid "Total modules configured"
     msgstr "定義済モジュール数"
     
    -#: ../../godmode/db/db_main.php:149
    +#: ../../godmode/db/db_main.php:154
     msgid "Total agent access records"
     msgstr "エージェントアクセス数"
     
    -#: ../../godmode/db/db_main.php:164
    +#: ../../godmode/db/db_main.php:166
    +msgid "Database sanity"
    +msgstr "データベースの健全性"
    +
    +#: ../../godmode/db/db_main.php:170
     msgid "Total uknown agents"
     msgstr "不明なエージェント数"
     
    -#: ../../godmode/db/db_main.php:170
    +#: ../../godmode/db/db_main.php:176
     msgid "Total non-init modules"
     msgstr "未初期化モジュール数"
     
    -#: ../../godmode/db/db_main.php:179
    +#: ../../godmode/db/db_main.php:185
     msgid "Last time on DB maintance"
     msgstr "最終 DB メンテナンス日時"
     
    -#: ../../godmode/db/db_main.php:183
    -#: ../../godmode/snmpconsole/snmp_alert.php:1217
    -#: ../../include/functions_treeview.php:601 ../../include/functions_ui.php:454
    -#: ../../operation/agentes/estado_generalagente.php:239
    -#: ../../operation/gis_maps/ajax.php:323 ../../operation/gis_maps/ajax.php:334
    -#: ../../enterprise/extensions/cron/main.php:408
    -#: ../../enterprise/extensions/ipam/ipam_ajax.php:229
    -#: ../../enterprise/extensions/ipam/ipam_list.php:223
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1155
    +#: ../../godmode/db/db_main.php:189
    +#: ../../godmode/snmpconsole/snmp_alert.php:1316
    +#: ../../include/functions_cron.php:686
    +#: ../../include/functions_treeview.php:625 ../../include/functions_ui.php:538
    +#: ../../operation/agentes/estado_generalagente.php:303
    +#: ../../operation/gis_maps/ajax.php:351 ../../operation/gis_maps/ajax.php:362
    +#: ../../operation/gis_maps/ajax.php:468 ../../operation/gis_maps/ajax.php:479
    +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1772
    +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1773
    +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1774
    +#: ../../enterprise/extensions/ipam/ipam_ajax.php:291
    +#: ../../enterprise/extensions/ipam/ipam_list.php:169
    +#: ../../enterprise/include/functions_tasklist.php:439
     msgid "Never"
     msgstr "未実行"
     
    -#: ../../godmode/db/db_main.php:200
    +#: ../../godmode/db/db_main.php:208
    +#, php-format
     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 make sure your %s Server settings are correct and that the database "
    +"maintenance daemon is running. It's very important to keep your database up "
    +"to date in order to get the best performance and results from %s."
     msgstr ""
    -"Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてください。パフォーマンスを維持するためには、データベースを日々整理することが"
    -"重要です。"
    +"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されていることを確認してください。 %s "
    +"の最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つことが非常に重要です。"
     
    -#: ../../godmode/events/custom_events.php:68
    -#: ../../godmode/events/custom_events.php:152
    -#: ../../include/functions_events.php:34
    -#: ../../enterprise/meta/include/functions_events_meta.php:55
    -msgid "Event id"
    -msgstr "イベント ID"
    -
    -#: ../../godmode/events/custom_events.php:71
    -#: ../../godmode/events/custom_events.php:153
    -#: ../../include/functions_events.php:35
    -#: ../../include/functions_events.php:905
    -#: ../../include/functions_events.php:2448
    -#: ../../include/functions_reporting_html.php:1025
    -#: ../../include/functions_reporting_html.php:1035
    -#: ../../include/functions_reporting_html.php:2938
    -#: ../../enterprise/meta/include/functions_events_meta.php:58
    -msgid "Event name"
    -msgstr "イベント名"
    -
    -#: ../../godmode/events/custom_events.php:86
    -#: ../../godmode/events/custom_events.php:158 ../../godmode/setup/news.php:223
    -#: ../../include/ajax/events.php:514 ../../include/functions_events.php:40
    -#: ../../include/functions_events.php:912
    -#: ../../include/functions_events.php:2453
    -#: ../../include/functions_events.php:3641
    -#: ../../include/functions_netflow.php:287
    -#: ../../include/functions_reporting_html.php:816
    -#: ../../include/functions_reporting_html.php:825
    -#: ../../include/functions_reporting_html.php:1029
    -#: ../../include/functions_reporting_html.php:1038
    -#: ../../include/functions_reporting_html.php:1653
    -#: ../../include/functions_reporting_html.php:2940
    -#: ../../mobile/operation/events.php:473
    -#: ../../mobile/operation/modules.php:548
    -#: ../../mobile/operation/modules.php:756
    -#: ../../operation/agentes/estado_generalagente.php:431
    -#: ../../operation/agentes/exportdata.csv.php:77
    -#: ../../operation/agentes/exportdata.excel.php:76
    -#: ../../operation/agentes/exportdata.php:99
    -#: ../../operation/agentes/status_monitor.php:998
    -#: ../../operation/events/events.build_table.php:167
    -#: ../../operation/events/events.php:87
    -#: ../../operation/messages/message_list.php:127
    -#: ../../operation/search_modules.php:54
    -#: ../../operation/snmpconsole/snmp_view.php:731
    -#: ../../enterprise/include/functions_inventory.php:65
    -#: ../../enterprise/include/functions_inventory.php:242
    -#: ../../enterprise/include/functions_inventory.php:392
    -#: ../../enterprise/include/functions_reporting_csv.php:361
    -#: ../../enterprise/include/functions_reporting_csv.php:990
    -#: ../../enterprise/meta/include/functions_events_meta.php:73
    -#: ../../enterprise/operation/agentes/tag_view.php:539
    -msgid "Timestamp"
    -msgstr "タイムスタンプ"
    -
    -#: ../../godmode/events/custom_events.php:89
    -#: ../../godmode/events/custom_events.php:159
    -#: ../../godmode/events/event_edit_filter.php:235
    -#: ../../godmode/events/event_filter.php:110
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1479
    -#: ../../include/functions_events.php:41
    -#: ../../include/functions_events.php:3661
    -#: ../../operation/events/events.build_table.php:191
    -#: ../../operation/events/events_list.php:628
    -#: ../../enterprise/dashboard/widgets/events_list.php:36
    -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:210
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1789
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:414
    -#: ../../enterprise/include/functions_events.php:97
    -#: ../../enterprise/meta/include/functions_events_meta.php:76
    -msgid "Event type"
    -msgstr "イベントタイプ"
    -
    -#: ../../godmode/events/custom_events.php:92
    -#: ../../godmode/events/custom_events.php:160
    -#: ../../include/functions_events.php:42
    -#: ../../enterprise/meta/include/functions_events_meta.php:79
    -msgid "Agent module"
    -msgstr "エージェントモジュール"
    -
    -#: ../../godmode/events/custom_events.php:98
    -#: ../../godmode/events/custom_events.php:162
    -#: ../../godmode/events/event_edit_filter.php:239
    -#: ../../godmode/events/event_filter.php:112
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1467
    -#: ../../include/functions_events.php:44
    -#: ../../include/functions_events.php:898
    -#: ../../include/functions_events.php:2499
    -#: ../../include/functions_events.php:3678
    -#: ../../include/functions_reporting_html.php:814
    -#: ../../include/functions_reporting_html.php:823
    -#: ../../include/functions_reporting_html.php:1027
    -#: ../../include/functions_reporting_html.php:1037
    -#: ../../include/functions_reporting_html.php:1651
    -#: ../../include/functions_snmp.php:303 ../../mobile/operation/events.php:373
    -#: ../../mobile/operation/events.php:374 ../../mobile/operation/events.php:489
    -#: ../../mobile/operation/events.php:632 ../../mobile/operation/events.php:633
    -#: ../../operation/events/events.build_table.php:211
    -#: ../../operation/events/events_list.php:634
    -#: ../../operation/snmpconsole/snmp_view.php:456
    -#: ../../enterprise/dashboard/widgets/events_list.php:54
    -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1777
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:403
    -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:320
    -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74
    -#: ../../enterprise/include/functions_events.php:104
    -#: ../../enterprise/include/functions_reporting.php:1783
    -#: ../../enterprise/include/functions_reporting_pdf.php:1842
    -#: ../../enterprise/meta/include/functions_events_meta.php:85
    -msgid "Severity"
    -msgstr "重要度"
    -
    -#: ../../godmode/events/custom_events.php:101
    -#: ../../godmode/events/custom_events.php:163
    -#: ../../include/functions_events.php:45
    -#: ../../include/functions_events.php:1743
    -#: ../../include/functions_events.php:3683
    -#: ../../include/functions_events.php:4028
    -#: ../../operation/events/events.build_table.php:217
    -#: ../../operation/events/events.build_table.php:583
    -#: ../../enterprise/meta/include/functions_events_meta.php:88
    -msgid "Comment"
    -msgstr "コメント"
    -
    -#: ../../godmode/events/custom_events.php:110
    -#: ../../godmode/events/custom_events.php:166
    -#: ../../include/functions_events.php:48
    -#: ../../include/functions_events.php:2295
    -#: ../../enterprise/meta/include/functions_events_meta.php:97
    -msgid "Extra id"
    -msgstr "拡張 ID"
    -
    -#: ../../godmode/events/custom_events.php:116
    -#: ../../godmode/events/custom_events.php:168
    -#: ../../include/functions_events.php:50
    -#: ../../include/functions_events.php:3703
    -#: ../../operation/events/events.build_table.php:241
    -#: ../../enterprise/meta/include/functions_events_meta.php:103
    -msgid "ACK Timestamp"
    -msgstr "ACK タイムスタンプ"
    -
    -#: ../../godmode/events/custom_events.php:119
    -#: ../../godmode/events/custom_events.php:169
    -#: ../../include/functions_events.php:51
    -#: ../../include/functions_events.php:2290
    -#: ../../include/functions_events.php:3708
    -#: ../../operation/events/events.build_table.php:247
    -#: ../../enterprise/meta/include/functions_events_meta.php:106
    -msgid "Instructions"
    -msgstr "手順"
    -
    -#: ../../godmode/events/custom_events.php:122
    -#: ../../godmode/events/custom_events.php:170
    -#: ../../include/functions_events.php:52
    -#: ../../enterprise/godmode/setup/setup_metaconsole.php:171
    -#: ../../enterprise/godmode/setup/setup_metaconsole.php:247
    -#: ../../enterprise/meta/advanced/metasetup.consoles.php:307
    -#: ../../enterprise/meta/advanced/metasetup.consoles.php:387
    -#: ../../enterprise/meta/include/functions_events_meta.php:109
    -msgid "Server name"
    -msgstr "サーバ名"
    -
    -#: ../../godmode/events/custom_events.php:131
    -#: ../../enterprise/meta/event/custom_events.php:191
    +#: ../../godmode/events/custom_events.php:74
    +#: ../../enterprise/meta/event/custom_events.php:205
     msgid "Show event fields"
     msgstr "イベントフィールド表示"
     
    -#: ../../godmode/events/custom_events.php:133
    +#: ../../godmode/events/custom_events.php:76
     msgid "Load the fields from previous events"
     msgstr "前のイベントからフィールドをロード"
     
    -#: ../../godmode/events/custom_events.php:133
    +#: ../../godmode/events/custom_events.php:76
     msgid "Event fields will be loaded. Do you want to continue?"
     msgstr "イベントフィールドが読み込まれます。続けますか?"
     
    -#: ../../godmode/events/custom_events.php:181
    -#: ../../enterprise/meta/event/custom_events.php:169
    -msgid "Fields available"
    -msgstr "存在するフィールド"
    +#: ../../godmode/events/custom_events.php:94
    +#: ../../include/functions_events.php:226
    +#: ../../include/functions_events.php.orig:224
    +msgid "Event Id"
    +msgstr "イベント ID"
     
    -#: ../../godmode/events/custom_events.php:185
    -#: ../../enterprise/meta/event/custom_events.php:178
    -msgid "Add fields to select"
    -msgstr "フィールドを選択に加える"
    +#: ../../godmode/events/custom_events.php:95
    +#: ../../include/functions_events.php:229
    +#: ../../include/functions_events.php:6006
    +#: ../../include/functions_events.php.orig:227
    +#: ../../include/functions_events.php.orig:5910
    +#: ../../mobile/operation/events.php:124
    +#: ../../operation/events/events.build_table.php:172
    +msgid "Event Name"
    +msgstr "イベント名"
     
    -#: ../../godmode/events/custom_events.php:189
    -#: ../../enterprise/meta/event/custom_events.php:183
    -msgid "Delete fields to select"
    -msgstr "フィールドを選択から削除する"
    +#: ../../godmode/events/custom_events.php:96
    +#: ../../include/functions_events.php:232
    +#: ../../include/functions_events.php.orig:230
    +#: ../../operation/events/events.php:1606
    +msgid "Agent ID"
    +msgstr "エージェント ID"
     
    -#: ../../godmode/events/custom_events.php:193
    -#: ../../enterprise/meta/event/custom_events.php:171
    -msgid "Fields selected"
    -msgstr "選択されているフィールド"
    +#: ../../godmode/events/custom_events.php:97
    +msgid "Agent Name"
    +msgstr "エージェント名"
     
    -#: ../../godmode/events/event_edit_filter.php:166
    -#: ../../godmode/modules/manage_nc_groups.php:83
    -#: ../../godmode/netflow/nf_edit_form.php:110
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:120
    +#: ../../godmode/events/custom_events.php:102
    +#: ../../include/functions_events.php:253
    +#: ../../include/functions_events.php.orig:251
    +#: ../../operation/events/events.build_table.php:232
    +msgid "Event Type"
    +msgstr "イベントタイプ"
    +
    +#: ../../godmode/events/custom_events.php:103
    +#: ../../include/functions_events.php:256
    +#: ../../include/functions_events.php.orig:254
    +#: ../../operation/events/events.build_table.php:243
    +msgid "Module Name"
    +msgstr "モジュール名"
    +
    +#: ../../godmode/events/custom_events.php:105
    +#: ../../godmode/events/event_edit_filter.php:298
    +#: ../../godmode/events/event_filter.php:125
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2339
    +#: ../../include/functions_snmp.php:335 ../../include/functions_events.php:199
    +#: ../../include/functions_events.php:262
    +#: ../../include/functions_events.php:2380
    +#: ../../include/functions_events.php:4548
    +#: ../../include/functions_events.php:6063
    +#: ../../include/functions_events.php.orig:197
    +#: ../../include/functions_events.php.orig:260
    +#: ../../include/functions_events.php.orig:2286
    +#: ../../include/functions_events.php.orig:4442
    +#: ../../include/functions_events.php.orig:5967
    +#: ../../include/functions_reporting_html.php:966
    +#: ../../include/functions_reporting_html.php:974
    +#: ../../include/functions_reporting_html.php:1185
    +#: ../../include/functions_reporting_html.php:1193
    +#: ../../include/functions_reporting_html.php:1964
    +#: ../../mobile/operation/events.php:397 ../../mobile/operation/events.php:398
    +#: ../../mobile/operation/events.php:532 ../../mobile/operation/events.php:690
    +#: ../../mobile/operation/events.php:691
    +#: ../../operation/events/events.build_table.php:263
    +#: ../../operation/events/events.php:966
    +#: ../../operation/events/events_list.php:939
    +#: ../../operation/snmpconsole/snmp_view.php:548
    +#: ../../enterprise/dashboard/widgets/events_list.php:76
    +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:172
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2538
    +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:595
    +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:340
    +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:72
    +#: ../../enterprise/include/functions_events.php:137
    +#: ../../enterprise/include/functions_reporting.php:1849
    +#: ../../enterprise/meta/include/functions_events_meta.php:98
    +msgid "Severity"
    +msgstr "重要度"
    +
    +#: ../../godmode/events/custom_events.php:106
    +#: ../../godmode/events/event_edit_filter.php:599
    +#: ../../godmode/wizards/HostDevices.class.php:805
    +#: ../../include/class/CustomNetScan.class.php:467
    +#: ../../include/functions_events.php:200
    +#: ../../include/functions_events.php:265
    +#: ../../include/functions_events.php:3485
    +#: ../../include/functions_events.php:6069
    +#: ../../include/functions_events.php:6455
    +#: ../../include/functions_events.php.orig:198
    +#: ../../include/functions_events.php.orig:263
    +#: ../../include/functions_events.php.orig:3391
    +#: ../../include/functions_events.php.orig:5973
    +#: ../../include/functions_events.php.orig:6359
    +#: ../../operation/events/events.build_table.php:273
    +#: ../../operation/events/events.build_table.php:699
    +#: ../../operation/events/events.php:1017
    +#: ../../operation/events/events_list.php:989
    +#: ../../enterprise/meta/include/functions_events_meta.php:102
    +msgid "Comment"
    +msgstr "コメント"
    +
    +#: ../../godmode/events/custom_events.php:109
    +#: ../../include/functions_events.php:274
    +#: ../../include/functions_events.php.orig:272
    +msgid "Extra Id"
    +msgstr "追加 ID"
    +
    +#: ../../godmode/events/custom_events.php:111
    +#: ../../include/functions_events.php:205
    +#: ../../include/functions_events.php:280
    +#: ../../include/functions_events.php:6093
    +#: ../../include/functions_events.php.orig:203
    +#: ../../include/functions_events.php.orig:278
    +#: ../../include/functions_events.php.orig:5997
    +#: ../../operation/events/events.build_table.php:313
    +#: ../../enterprise/meta/include/functions_events_meta.php:122
    +msgid "ACK Timestamp"
    +msgstr "ACK タイムスタンプ"
    +
    +#: ../../godmode/events/custom_events.php:112
    +#: ../../include/functions_events.php:206
    +#: ../../include/functions_events.php:283
    +#: ../../include/functions_events.php:4263
    +#: ../../include/functions_events.php:6099
    +#: ../../include/functions_events.php.orig:204
    +#: ../../include/functions_events.php.orig:281
    +#: ../../include/functions_events.php.orig:4170
    +#: ../../include/functions_events.php.orig:6003
    +#: ../../operation/events/events.build_table.php:323
    +#: ../../operation/events/events.php:2479
    +#: ../../enterprise/meta/include/functions_events_meta.php:126
    +msgid "Instructions"
    +msgstr "手順"
    +
    +#: ../../godmode/events/custom_events.php:113
    +#: ../../include/functions_events.php:286
    +#: ../../include/functions_events.php.orig:284
    +msgid "Server Name"
    +msgstr "サーバ名"
    +
    +#: ../../godmode/events/custom_events.php:115
    +#: ../../godmode/massive/massive_delete_modules.php:412
    +#: ../../godmode/massive/massive_edit_modules.php:355
    +#: ../../include/functions_events.php:292
    +#: ../../include/functions_events.php.orig:290
    +#: ../../operation/events/events.build_table.php:340
    +msgid "Module Status"
    +msgstr "モジュールの状態"
    +
    +#: ../../godmode/events/custom_events.php:116
    +#: ../../include/functions_events.php:301
    +#: ../../include/functions_events.php.orig:299
    +msgid "Severity mini"
    +msgstr "重要度(縮小表示)"
    +
    +#: ../../godmode/events/event_edit_filter.php:181
    +#: ../../godmode/modules/manage_nc_groups.php:93
    +#: ../../godmode/netflow/nf_edit_form.php:118
    +#: ../../enterprise/godmode/reporting/graph_template_editor.php:123
     msgid "Not updated. Blank name"
     msgstr "更新できませんでした。名前が空です。"
     
    -#: ../../godmode/events/event_edit_filter.php:174
    -#: ../../godmode/modules/manage_nc_groups.php:99
    -#: ../../godmode/netflow/nf_edit_form.php:132 ../../godmode/setup/news.php:88
    +#: ../../godmode/events/event_edit_filter.php:192
    +#: ../../godmode/modules/manage_nc_groups.php:112
    +#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:100
     msgid "Not updated. Error updating data"
     msgstr "データの更新に失敗しました。"
     
    -#: ../../godmode/events/event_edit_filter.php:203
    +#: ../../godmode/events/event_edit_filter.php:221
     msgid "Update Filter"
     msgstr "フィルタ更新"
     
    -#: ../../godmode/events/event_edit_filter.php:206
    +#: ../../godmode/events/event_edit_filter.php:223
     msgid "Create Filter"
     msgstr "フィルタ作成"
     
    -#: ../../godmode/events/event_edit_filter.php:215
    -#: ../../operation/events/events_list.php:291
    +#: ../../godmode/events/event_edit_filter.php:233
    +#: ../../include/ajax/custom_fields.php:561
    +#: ../../include/ajax/custom_fields.php:608
    +#: ../../include/ajax/custom_fields.php:652 ../../include/ajax/events.php:556
    +#: ../../operation/events/events_list.php:421
     msgid "Filter name"
     msgstr "フィルタ名"
     
    -#: ../../godmode/events/event_edit_filter.php:219
    +#: ../../godmode/events/event_edit_filter.php:236
     msgid "Save in group"
     msgstr "保存グループ"
     
    -#: ../../godmode/events/event_edit_filter.php:220
    +#: ../../godmode/events/event_edit_filter.php:236
     msgid ""
     "This group will be use to restrict the visibility of this filter with ACLs"
     msgstr "このグループは、ACL でフィルタの表示を制限するのに利用されます"
     
    -#: ../../godmode/events/event_edit_filter.php:233
    -#: ../../godmode/massive/massive_copy_modules.php:81
    -#: ../../godmode/massive/massive_copy_modules.php:199
    -#: ../../godmode/massive/massive_delete_agents.php:117
    -#: ../../godmode/massive/massive_delete_modules.php:478
    -#: ../../godmode/massive/massive_delete_modules.php:492
    -#: ../../godmode/massive/massive_edit_agents.php:273
    -#: ../../godmode/massive/massive_edit_modules.php:309
    -#: ../../godmode/massive/massive_edit_modules.php:347
    -#: ../../include/functions.php:1083 ../../include/functions_events.php:1432
    -#: ../../mobile/operation/modules.php:43
    -#: ../../operation/agentes/estado_agente.php:218
    -#: ../../operation/agentes/status_monitor.php:301
    -#: ../../operation/events/events_list.php:631
    -#: ../../enterprise/dashboard/widgets/events_list.php:34
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:90
    -#: ../../enterprise/operation/agentes/tag_view.php:86
    +#: ../../godmode/events/event_edit_filter.php:281
    +#: ../../godmode/massive/massive_copy_modules.php:103
    +#: ../../godmode/massive/massive_copy_modules.php:263
    +#: ../../godmode/massive/massive_delete_agents.php:140
    +#: ../../godmode/massive/massive_delete_modules.php:398
    +#: ../../godmode/massive/massive_delete_modules.php:419
    +#: ../../godmode/massive/massive_edit_agents.php:427
    +#: ../../godmode/massive/massive_edit_modules.php:362
    +#: ../../godmode/massive/massive_edit_modules.php:447
    +#: ../../include/functions.php:1274 ../../include/functions_events.php:3051
    +#: ../../include/functions_events.php.orig:2957
    +#: ../../mobile/operation/modules.php:53
    +#: ../../operation/agentes/estado_agente.php:234
    +#: ../../operation/agentes/status_monitor.php:384
    +#: ../../operation/events/events.php:883
    +#: ../../operation/events/events_list.php:928
    +#: ../../enterprise/dashboard/widgets/events_list.php:35
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:106
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:223
    +#: ../../enterprise/operation/agentes/tag_view.php:109
     msgid "Not normal"
     msgstr "正常ではない"
     
    -#: ../../godmode/events/event_edit_filter.php:245
    -#: ../../godmode/events/event_filter.php:111
    -#: ../../operation/events/events_list.php:641
    -#: ../../enterprise/dashboard/widgets/events_list.php:46
    -#: ../../enterprise/include/functions_events.php:83
    +#: ../../godmode/events/event_edit_filter.php:283
    +#: ../../godmode/events/event_filter.php:123
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2366
    +#: ../../include/functions_events.php:196
    +#: ../../include/functions_events.php:6044
    +#: ../../include/functions_events.php.orig:194
    +#: ../../include/functions_events.php.orig:5948
    +#: ../../operation/events/events.php:893
    +#: ../../operation/events/events_list.php:923
    +#: ../../enterprise/dashboard/widgets/events_list.php:39
    +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:248
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2565
    +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:621
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1208
    +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1006
    +#: ../../enterprise/include/functions_events.php:127
    +#: ../../enterprise/meta/include/functions_events_meta.php:86
    +msgid "Event type"
    +msgstr "イベントタイプ"
    +
    +#: ../../godmode/events/event_edit_filter.php:316
    +#: ../../godmode/events/event_filter.php:124
    +#: ../../operation/events/events.php:907 ../../operation/events/events.php:1382
    +#: ../../operation/events/events_list.php:956
    +#: ../../enterprise/dashboard/widgets/events_list.php:60
    +#: ../../enterprise/include/functions_events.php:107
     msgid "Event status"
     msgstr "状態"
     
    -#: ../../godmode/events/event_edit_filter.php:249
    -#: ../../godmode/reporting/reporting_builder.item_editor.php:1593
    -#: ../../godmode/snmpconsole/snmp_alert.php:999
    -#: ../../include/ajax/module.php:185 ../../mobile/operation/agents.php:215
    -#: ../../mobile/operation/alerts.php:188 ../../mobile/operation/events.php:642
    -#: ../../mobile/operation/modules.php:254
    -#: ../../operation/events/events_list.php:477
    -#: ../../operation/snmpconsole/snmp_view.php:470
    -#: ../../enterprise/extensions/ipam/ipam_network.php:281
    -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:165
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:216
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2007
    -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:465
    -#: ../../enterprise/include/functions_events.php:90
    +#: ../../godmode/events/event_edit_filter.php:327
    +#: ../../godmode/reporting/reporting_builder.item_editor.php:2650
    +#: ../../godmode/snmpconsole/snmp_alert.php:1109
    +#: ../../include/ajax/module.php:247
    +#: ../../include/class/CredentialStore.class.php:773
    +#: ../../mobile/operation/agents.php:238 ../../mobile/operation/alerts.php:222
    +#: ../../mobile/operation/events.php:700 ../../mobile/operation/modules.php:293
    +#: ../../operation/events/events.php:944
    +#: ../../operation/events/events_list.php:753
    +#: ../../operation/snmpconsole/snmp_view.php:576
    +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1446
    +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:180
    +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:242
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2945
    +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:718
    +#: ../../enterprise/include/functions_events.php:117
     msgid "Free search"
     msgstr "検索語"
     
    -#: ../../godmode/events/event_edit_filter.php:253
    -#: ../../operation/events/events_list.php:479
    -#: ../../enterprise/meta/agentsearch.php:28
    -#: ../../enterprise/meta/agentsearch.php:32
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:242
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:331
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:401
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:509
    -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590
    +#: ../../godmode/events/event_edit_filter.php:337
    +#: ../../operation/events/events.php:1038
    +#: ../../operation/events/events_list.php:755
    +#: ../../enterprise/meta/agentsearch.php:33
    +#: ../../enterprise/meta/agentsearch.php:39
    +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:258
    +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354
    +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420
    +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530
    +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:609
     msgid "Agent search"
     msgstr "エージェント"
     
    -#: ../../godmode/events/event_edit_filter.php:276
    -#: ../../godmode/setup/setup_visuals.php:62
    -#: ../../godmode/users/configure_user.php:627
    -#: ../../include/functions_config.php:489
    -#: ../../operation/events/events_list.php:537
    -#: ../../operation/snmpconsole/snmp_view.php:445
    -#: ../../operation/users/user_edit.php:240
    -#: ../../enterprise/meta/advanced/metasetup.visual.php:121
    -#: ../../enterprise/meta/include/functions_meta.php:1165
    +#: ../../godmode/events/event_edit_filter.php:359
    +#: ../../godmode/setup/setup_visuals.php:60
    +#: ../../godmode/users/configure_user.php:882
    +#: ../../include/functions_config.php:912
    +#: ../../operation/events/events_list.php:838
    +#: ../../operation/snmpconsole/snmp_view.php:531
    +#: ../../operation/users/user_edit.php:290
    +#: ../../enterprise/meta/advanced/metasetup.visual.php:140
    +#: ../../enterprise/meta/include/functions_meta.php:1388
     msgid "Block size for pagination"
     msgstr "ページ毎の表示件数"
     
    -#: ../../godmode/events/event_edit_filter.php:285
    -#: ../../operation/events/events_list.php:499
    -#: ../../enterprise/include/functions_events.php:128
    +#: ../../godmode/events/event_edit_filter.php:380
    +#: ../../operation/events/events.php:1089
    +#: ../../operation/events/events_list.php:776
    +#: ../../enterprise/include/functions_events.php:168
     msgid "User ack."
     msgstr "承諾したユーザ"
     
    -#: ../../godmode/events/event_edit_filter.php:286
    +#: ../../godmode/events/event_edit_filter.php:380
     msgid "Choose between the users who have validated an event. "
     msgstr "イベントを承諾したユーザを選択します。 "
     
    -#: ../../godmode/events/event_edit_filter.php:299
    -#: ../../operation/events/events_list.php:647
    -#: ../../enterprise/godmode/setup/setup.php:90
    +#: ../../godmode/events/event_edit_filter.php:402
    +#: ../../operation/events/events.php:927
    +#: ../../operation/events/events_list.php:969
    +#: ../../enterprise/godmode/setup/setup.php:168
     msgid "All events"
     msgstr "全イベント一覧表示"
     
    -#: ../../godmode/events/event_edit_filter.php:300
    -#: ../../operation/events/events_list.php:648
    +#: ../../godmode/events/event_edit_filter.php:403
    +#: ../../operation/events/events.php:928 ../../operation/events/events.php:1432
    +#: ../../operation/events/events_list.php:970
     msgid "Group events"
     msgstr "グルーピング・回数表示"
     
    -#: ../../godmode/events/event_edit_filter.php:305
    -#: ../../operation/events/events_list.php:548
    -#: ../../enterprise/include/functions_events.php:135
    +#: ../../godmode/events/event_edit_filter.php:415
    +#: ../../operation/events/events.php:1147
    +#: ../../operation/events/events_list.php:857
    +#: ../../enterprise/include/functions_events.php:178
     msgid "Date from"
     msgstr "開始日"
     
    -#: ../../godmode/events/event_edit_filter.php:308
    -#: ../../operation/events/events_list.php:552
    -#: ../../enterprise/include/functions_events.php:142
    +#: ../../godmode/events/event_edit_filter.php:418
    +#: ../../operation/events/events.php:1198
    +#: ../../operation/events/events_list.php:861
    +#: ../../enterprise/include/functions_events.php:188
     msgid "Date to"
     msgstr "終了日"
     
    -#: ../../godmode/events/event_edit_filter.php:350
    -#: ../../operation/events/events_list.php:572
    -#: ../../operation/events/events_list.php:586
    -#: ../../enterprise/include/functions_events.php:180
    +#: ../../godmode/events/event_edit_filter.php:459
    +#: ../../operation/events/events.php:1230
    +#: ../../operation/events/events.php:1233
    +#: ../../operation/events/events_list.php:878
    +#: ../../operation/events/events_list.php:881
    +#: ../../enterprise/include/functions_events.php:251
     msgid "Events with following tags"
     msgstr "次のタグを含むイベント"
     
    -#: ../../godmode/events/event_edit_filter.php:365
    -#: ../../operation/events/events_list.php:578
    -#: ../../operation/events/events_list.php:592
    -#: ../../enterprise/include/functions_events.php:197
    +#: ../../godmode/events/event_edit_filter.php:512
    +#: ../../operation/events/events.php:1231
    +#: ../../operation/events/events.php:1234
    +#: ../../operation/events/events_list.php:879
    +#: ../../operation/events/events_list.php:882
    +#: ../../enterprise/include/functions_events.php:273
     msgid "Events without following tags"
     msgstr "次のタグを含まないイベント"
     
    -#: ../../godmode/events/event_edit_filter.php:379
    -#: ../../operation/events/events_list.php:530
    -#: ../../enterprise/include/functions_events.php:156
    +#: ../../godmode/events/event_edit_filter.php:564
    +#: ../../operation/events/events.php:1106
    +#: ../../operation/events/events_list.php:823
    +#: ../../enterprise/include/functions_events.php:208
     msgid "Alert events"
     msgstr "アラートイベント"
     
    -#: ../../godmode/events/event_edit_filter.php:383
    -#: ../../operation/events/events_list.php:533
    +#: ../../godmode/events/event_edit_filter.php:568
    +#: ../../operation/events/events.php:1096
    +#: ../../operation/events/events_list.php:826
     msgid "Filter alert events"
     msgstr "アラートイベントフィルター"
     
    -#: ../../godmode/events/event_edit_filter.php:384
    -#: ../../operation/events/events_list.php:534
    +#: ../../godmode/events/event_edit_filter.php:569
    +#: ../../operation/events/events.php:1097
    +#: ../../operation/events/events_list.php:827
     msgid "Only alert events"
     msgstr "アラートイベントのみ"
     
    -#: ../../godmode/events/event_edit_filter.php:388
    -#: ../../operation/events/events_list.php:511
    +#: ../../godmode/events/event_edit_filter.php:580
    +#: ../../operation/events/events.php:1055
    +#: ../../operation/events/events_list.php:795
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185
     msgid "Module search"
     msgstr "モジュール検索"
     
    -#: ../../godmode/events/event_filter.php:167
    -#: ../../godmode/netflow/nf_edit.php:163
    +#: ../../godmode/events/event_edit_filter.php:596
    +#: ../../include/functions_events.php:6087
    +#: ../../include/functions_events.php.orig:5991
    +#: ../../operation/events/events.build_table.php:303
    +#: ../../operation/events/events.php:1004
    +#: ../../operation/events/events_list.php:987
    +msgid "Extra ID"
    +msgstr "拡張 ID"
    +
    +#: ../../godmode/events/event_edit_filter.php:603
    +msgid "Id souce event"
    +msgstr "ソースイベントID"
    +
    +#: ../../godmode/events/event_filter.php:179
    +#: ../../godmode/netflow/nf_edit.php:187
     msgid "There are no defined filters"
     msgstr "定義済のフィルタがありません"
     
    -#: ../../godmode/events/event_filter.php:175
    -#: ../../godmode/netflow/nf_edit.php:168
    -#: ../../godmode/netflow/nf_edit_form.php:182
    -#: ../../godmode/snmpconsole/snmp_filters.php:38
    -#: ../../enterprise/meta/event/custom_events.php:43
    +#: ../../godmode/events/event_filter.php:189
    +#: ../../godmode/netflow/nf_edit.php:192
    +#: ../../godmode/netflow/nf_edit_form.php:189
    +#: ../../godmode/snmpconsole/snmp_filters.php:37
    +#: ../../include/ajax/custom_fields.php:642
    +#: ../../enterprise/meta/event/custom_events.php:44
     msgid "Create filter"
     msgstr "フィルタの作成"
     
    -#: ../../godmode/events/event_responses.editor.php:64
    +#: ../../godmode/events/event_responses.editor.php:63
     msgid "Edit event responses"
     msgstr "イベント応答の編集"
     
    -#: ../../godmode/events/event_responses.editor.php:94
    -#: ../../enterprise/extensions/ipam/ipam_editor.php:89
    -#: ../../enterprise/extensions/ipam/ipam_list.php:161
    -#: ../../enterprise/extensions/ipam/ipam_network.php:140
    +#: ../../godmode/events/event_responses.editor.php:105
    +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1217
    +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1679
    +#: ../../enterprise/extensions/ipam/ipam_editor.php:137
    +#: ../../enterprise/extensions/ipam/ipam_list.php:137
     msgid "Location"
     msgstr "場所"
     
    -#: ../../godmode/events/event_responses.editor.php:94
    +#: ../../godmode/events/event_responses.editor.php:105
     msgid "For Command type Modal Window mode is enforced"
     msgstr "種類がコマンドの場合は、専用ウインドウになります。"
     
    -#: ../../godmode/events/event_responses.editor.php:95
    +#: ../../godmode/events/event_responses.editor.php:107
     msgid "Modal window"
     msgstr "専用ウインドウ"
     
    -#: ../../godmode/events/event_responses.editor.php:95
    +#: ../../godmode/events/event_responses.editor.php:108
     msgid "New window"
     msgstr "新しいウィンドウ"
     
    -#: ../../godmode/events/event_responses.editor.php:105
    -#: ../../godmode/reporting/graph_builder.main.php:148
    -#: ../../godmode/reporting/visual_console_builder.wizard.php:134
    -#: ../../godmode/setup/gis_step_2.php:257
    -#: ../../include/functions_visual_map_editor.php:86
    -#: ../../include/functions_visual_map_editor.php:500
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:172
    +#: ../../godmode/events/event_responses.editor.php:121
    +#: ../../godmode/reporting/visual_console_builder.wizard.php:180
    +#: ../../godmode/setup/gis_step_2.php:278
    +#: ../../include/functions_visual_map_editor.php:98
    +#: ../../include/functions_visual_map_editor.php:600
    +#: ../../enterprise/godmode/reporting/graph_template_editor.php:176
     msgid "Width"
     msgstr "幅"
     
    -#: ../../godmode/events/event_responses.editor.php:107
    -#: ../../godmode/reporting/graph_builder.main.php:152
    -#: ../../godmode/reporting/visual_console_builder.wizard.php:137
    -#: ../../godmode/setup/gis_step_2.php:259
    -#: ../../include/functions_visual_map_editor.php:506
    -#: ../../enterprise/godmode/reporting/graph_template_editor.php:176
    +#: ../../godmode/events/event_responses.editor.php:123
    +#: ../../godmode/reporting/visual_console_builder.wizard.php:181
    +#: ../../godmode/setup/gis_step_2.php:278
    +#: ../../include/functions_visual_map_editor.php:605
    +#: ../../enterprise/godmode/reporting/graph_template_editor.php:180
     msgid "Height"
     msgstr "高さ"
     
    -#: ../../godmode/events/event_responses.editor.php:112
    -#: ../../include/functions_events.php:1809
    -#: ../../enterprise/extensions/cron/main.php:480
    +#: ../../godmode/events/event_responses.editor.php:128
    +#: ../../include/ajax/events.php:1681 ../../include/functions_events.php:3593
    +#: ../../include/functions_events.php.orig:3499
    +#: ../../operation/events/events.php:1569
    +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:532
    +#: ../../enterprise/meta/advanced/cron_main.php:412
     msgid "Parameters"
     msgstr "パラメータ"
     
    -#: ../../godmode/events/event_responses.list.php:38
    +#: ../../godmode/events/event_responses.editor.php:180
    +msgid "Command timeout (s)"
    +msgstr "コマンドタイムアウト: (s)"
    +
    +#: ../../godmode/events/event_responses.list.php:32
     msgid "No responses found"
     msgstr "応答がありません"
     
    -#: ../../godmode/events/event_responses.list.php:76
    +#: ../../godmode/events/event_responses.list.php:73
     msgid "Create response"
     msgstr "応答の作成"
     
    -#: ../../godmode/events/event_responses.php:63
    +#: ../../godmode/events/event_responses.php:50
     msgid "Response added succesfully"
     msgstr "応答を追加しました"
     
    -#: ../../godmode/events/event_responses.php:66
    +#: ../../godmode/events/event_responses.php:52
     msgid "Response cannot be added"
     msgstr "応答を追加できません"
     
    -#: ../../godmode/events/event_responses.php:103
    +#: ../../godmode/events/event_responses.php:75
     msgid "Response updated succesfully"
     msgstr "応答を更新しました"
     
    -#: ../../godmode/events/event_responses.php:106
    +#: ../../godmode/events/event_responses.php:77
     msgid "Response cannot be updated"
     msgstr "応答を更新できません"
     
    -#: ../../godmode/events/event_responses.php:115
    +#: ../../godmode/events/event_responses.php:87
     msgid "Response deleted succesfully"
     msgstr "応答を削除しました"
     
    -#: ../../godmode/events/event_responses.php:118
    +#: ../../godmode/events/event_responses.php:89
     msgid "Response cannot be deleted"
     msgstr "応答を削除できません"
     
     #: ../../godmode/events/events.php:37
    -#: ../../godmode/users/configure_user.php:588
    -#: ../../operation/events/events.php:360
    -#: ../../operation/users/user_edit.php:280
    +#: ../../godmode/users/configure_user.php:841
    +#: ../../operation/events/events.php:714
    +#: ../../operation/users/user_edit.php:340
     msgid "Event list"
     msgstr "イベント一覧"
     
    -#: ../../godmode/events/events.php:42
    -#: ../../godmode/netflow/nf_edit_form.php:55
    +#: ../../godmode/events/events.php:43 ../../godmode/netflow/nf_edit_form.php:53
     msgid "Filter list"
     msgstr "フィルタ一覧"
     
    -#: ../../godmode/events/events.php:48 ../../godmode/menu.php:187
    -#: ../../enterprise/meta/event/custom_events.php:48
    +#: ../../godmode/events/events.php:50 ../../godmode/menu.php:230
    +#: ../../enterprise/meta/event/custom_events.php:50
     msgid "Event responses"
     msgstr "イベント応答"
     
    -#: ../../godmode/events/events.php:65 ../../godmode/events/events.php:80
    -#: ../../godmode/reporting/reporting_builder.list_items.php:182
    -#: ../../enterprise/meta/event/custom_events.php:65
    -#: ../../enterprise/meta/event/custom_events.php:80
    -#: ../../enterprise/meta/general/main_header.php:214
    -msgid "Filters"
    -msgstr "フィルタ"
    -
    -#: ../../godmode/events/events.php:73 ../../include/ajax/events.php:351
    -#: ../../enterprise/meta/event/custom_events.php:73
    +#: ../../godmode/events/events.php:72 ../../include/ajax/events.php:1249
    +#: ../../enterprise/meta/event/custom_events.php:79
     msgid "Responses"
     msgstr "応答"
     
    -#: ../../godmode/events/events.php:85 ../../godmode/events/events.php:88
    -#: ../../godmode/users/configure_profile.php:283
    -#: ../../operation/events/events.php:391
    +#: ../../godmode/events/events.php:88 ../../godmode/events/events.php:96
    +#: ../../godmode/users/configure_profile.php:258
    +#: ../../operation/events/events.php:740
     msgid "Manage events"
     msgstr "イベント管理"
     
    -#: ../../godmode/extensions.php:27
    -#: ../../enterprise/meta/general/main_header.php:320
    +#: ../../godmode/extensions.php:26
    +#: ../../enterprise/meta/general/main_header.php:404
     msgid "Extensions"
     msgstr "拡張"
     
    -#: ../../godmode/extensions.php:27
    +#: ../../godmode/extensions.php:26
     msgid "Defined extensions"
     msgstr "定義されている拡張"
     
    -#: ../../godmode/extensions.php:32
    +#: ../../godmode/extensions.php:31
     msgid "There are no extensions defined"
     msgstr "「拡張」が定義されていません。"
     
    -#: ../../godmode/extensions.php:145 ../../enterprise/godmode/menu.php:165
    -#: ../../enterprise/include/functions_setup.php:27
    -#: ../../enterprise/include/functions_setup.php:55
    +#: ../../godmode/extensions.php:138 ../../godmode/setup/setup.php:199
    +#: ../../enterprise/godmode/menu.php:275
    +#: ../../enterprise/include/functions_setup.php:40
    +#: ../../enterprise/include/functions_setup.php:79
     msgid "Enterprise"
     msgstr "エンタープライズ"
     
    -#: ../../godmode/extensions.php:146
    +#: ../../godmode/extensions.php:139
     msgid "Godmode Function"
     msgstr "システム管理機能"
     
    -#: ../../godmode/extensions.php:147
    +#: ../../godmode/extensions.php:140
     msgid "Godmode Menu"
     msgstr "システム管理メニュー"
     
    -#: ../../godmode/extensions.php:148
    +#: ../../godmode/extensions.php:141
     msgid "Operation Menu"
     msgstr "操作メニュー"
     
    -#: ../../godmode/extensions.php:149
    +#: ../../godmode/extensions.php:142
     msgid "Operation Function"
     msgstr "操作機能"
     
    -#: ../../godmode/extensions.php:150
    +#: ../../godmode/extensions.php:143
     msgid "Login Function"
     msgstr "ログイン機能"
     
    -#: ../../godmode/extensions.php:151
    +#: ../../godmode/extensions.php:144
     msgid "Agent operation tab"
     msgstr "エージェント操作タブ"
     
    -#: ../../godmode/extensions.php:152
    +#: ../../godmode/extensions.php:145
     msgid "Agent godmode tab"
     msgstr "エージェント管理タブ"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:111
    +#: ../../godmode/gis_maps/configure_gis_map.php:143
     msgid "Map successfully created"
     msgstr "マップを作成しました。"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:112
    +#: ../../godmode/gis_maps/configure_gis_map.php:144
     msgid "Map could not be created"
     msgstr "マップを作成できませんでした。"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:201
    +#: ../../godmode/gis_maps/configure_gis_map.php:246
     msgid "Map successfully update"
     msgstr "マップを更新しました。"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:202
    +#: ../../godmode/gis_maps/configure_gis_map.php:247
     msgid "Map could not be updated"
     msgstr "マップを更新できませんでした"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:214
    -#: ../../operation/gis_maps/gis_map.php:29
    +#: ../../godmode/gis_maps/configure_gis_map.php:262
    +#: ../../operation/gis_maps/gis_map.php:30
     msgid "GIS Maps list"
     msgstr "GIS マップ一覧"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:219
    +#: ../../godmode/gis_maps/configure_gis_map.php:271
     msgid "View GIS"
     msgstr "GIS 表示"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:222
    +#: ../../godmode/gis_maps/configure_gis_map.php:277
     msgid "GIS Maps builder"
     msgstr "GIS マップビルダ"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:329
    +#: ../../godmode/gis_maps/configure_gis_map.php:326
    +msgid "Do you want to use the default data from the connection?"
    +msgstr "利用マップのデフォルトデータを利用しますか。"
    +
    +#: ../../godmode/gis_maps/configure_gis_map.php:360
    +msgid "The connection"
    +msgstr "利用マップ"
    +
    +#: ../../godmode/gis_maps/configure_gis_map.php:360
    +msgid "just added previously."
    +msgstr "すでに追加されています。"
    +
    +#: ../../godmode/gis_maps/configure_gis_map.php:423
     msgid "Map Name"
     msgstr "マップ名"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:329
    +#: ../../godmode/gis_maps/configure_gis_map.php:423
     msgid "Descriptive name for the map"
     msgstr "マップの名称"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:348
    +#: ../../godmode/gis_maps/configure_gis_map.php:442
     msgid "Add Map connection"
     msgstr "利用マップの追加"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:348
    +#: ../../godmode/gis_maps/configure_gis_map.php:442
     msgid ""
     "At least one map connection must be defined, it will be possible to change "
     "between the connections in the map"
     msgstr "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は可能です。"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:366
    +#: ../../godmode/gis_maps/configure_gis_map.php:462
     msgid "Group that owns the map"
     msgstr "マップを利用するグループ"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:369
    +#: ../../godmode/gis_maps/configure_gis_map.php:465
     msgid "Default zoom"
     msgstr "デフォルトの拡大率"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:369
    +#: ../../godmode/gis_maps/configure_gis_map.php:465
     msgid "Default zoom level when opening the map"
     msgstr "マップを開いた時のデフォルトの拡大レベル"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:372
    +#: ../../godmode/gis_maps/configure_gis_map.php:468
     msgid "Center Latitude"
     msgstr "中心の緯度"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:375
    +#: ../../godmode/gis_maps/configure_gis_map.php:471
     msgid "Center Longitude"
     msgstr "中心の経度"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:378
    +#: ../../godmode/gis_maps/configure_gis_map.php:474
     msgid "Center Altitude"
     msgstr "中心の高度"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:381
    +#: ../../godmode/gis_maps/configure_gis_map.php:477
     msgid "Default Latitude"
     msgstr "デフォルトの緯度"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:384
    +#: ../../godmode/gis_maps/configure_gis_map.php:480
     msgid "Default Longitude"
     msgstr "デフォルトの経度"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:387
    +#: ../../godmode/gis_maps/configure_gis_map.php:483
     msgid "Default Altitude"
     msgstr "デフォルトの高度"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:392
    +#: ../../godmode/gis_maps/configure_gis_map.php:488
    +#: ../../godmode/setup/gis_step_2.php:281
     msgid "Layers"
     msgstr "レイヤ"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:392
    +#: ../../godmode/gis_maps/configure_gis_map.php:488
     msgid ""
     "Each layer can show agents from one group or the agents added to that layer "
     "or both."
     msgstr "それぞれのレイヤは、グループに所属するエージェントまたはレイヤに個別に追加されたエージェントを表示できます。"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:398
    +#: ../../godmode/gis_maps/configure_gis_map.php:497
     msgid "List of layers"
     msgstr "レイヤ一覧"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:398
    +#: ../../godmode/gis_maps/configure_gis_map.php:497
     msgid "It is possible to edit, delete and reorder the layers."
     msgstr "編集、削除、レイヤの順番の変更ができます。"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:399
    +#: ../../godmode/gis_maps/configure_gis_map.php:498
     msgid "New layer"
     msgstr "新規レイヤ"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:407
    +#: ../../godmode/gis_maps/configure_gis_map.php:504
     msgid "Layer name"
     msgstr "レイヤ名"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:409
    +#: ../../godmode/gis_maps/configure_gis_map.php:506
     msgid "Visible"
     msgstr "可視化"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:413
    +#: ../../godmode/gis_maps/configure_gis_map.php:510
     msgid "Show agents from group"
     msgstr "表示するエージェントのグループ"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:425
    +#: ../../godmode/gis_maps/configure_gis_map.php:522
     msgid "Add agent"
     msgstr "エージェント追加"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:441
    +#: ../../godmode/gis_maps/configure_gis_map.php:541
     msgid "List of Agents to be shown in the layer"
     msgstr "レイヤ内に表示されるエージェント一覧"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:448
    -#: ../../godmode/gis_maps/configure_gis_map.php:624
    -#: ../../godmode/gis_maps/configure_gis_map.php:635
    +#: ../../godmode/gis_maps/configure_gis_map.php:570
    +msgid "Use the data of this agent"
    +msgstr "このエージェントのデータを利用"
    +
    +#: ../../godmode/gis_maps/configure_gis_map.php:578
    +msgid "List of groups to be shown in the layer"
    +msgstr "レイヤーに表示されるグループの一覧"
    +
    +#: ../../godmode/gis_maps/configure_gis_map.php:585
     msgid "Save Layer"
     msgstr "レイヤの保存"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:464
    -#: ../../godmode/gis_maps/configure_gis_map.php:471
    +#: ../../godmode/gis_maps/configure_gis_map.php:601
    +#: ../../godmode/gis_maps/configure_gis_map.php:608
     msgid "Save map"
     msgstr "マップの保存"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:467
    +#: ../../godmode/gis_maps/configure_gis_map.php:603
     msgid "Update map"
     msgstr "マップの更新"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:668
    -#: ../../godmode/gis_maps/configure_gis_map.php:724
    -msgid "Update Layer"
    -msgstr "レイヤの更新"
    +#: ../../godmode/gis_maps/configure_gis_map.php:975
    +msgid "Using data from"
    +msgstr ""
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:790
    -msgid "Do you want to use the default data from the connection?"
    -msgstr "利用マップのデフォルトデータを利用しますか。"
    +#: ../../godmode/gis_maps/configure_gis_map.php:1133
    +msgid "Empty layer names are not supported"
    +msgstr "空のレイヤ名には対応していません"
     
    -#: ../../godmode/gis_maps/configure_gis_map.php:825
    -msgid "The connection"
    -msgstr "利用マップ"
    -
    -#: ../../godmode/gis_maps/configure_gis_map.php:825
    -msgid "just added previously."
    -msgstr "すでに追加されています。"
    -
    -#: ../../godmode/groups/configure_group.php:70
    -#: ../../godmode/groups/configure_modu_group.php:51
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1256
    +#: ../../godmode/groups/configure_group.php:66
    +#: ../../godmode/groups/configure_modu_group.php:46
     msgid "There was a problem loading group"
     msgstr "グループの読み込みに失敗しました。"
     
    -#: ../../godmode/groups/configure_group.php:92
    +#: ../../godmode/groups/configure_group.php:85
     msgid "Update group"
     msgstr "グループ情報の更新"
     
    -#: ../../godmode/groups/configure_group.php:94
    -#: ../../godmode/groups/group_list.php:433
    +#: ../../godmode/groups/configure_group.php:87
    +#: ../../godmode/groups/group_list.php:683
     msgid "Create group"
     msgstr "グループの作成"
     
    @@ -12113,56 +13478,57 @@ msgstr "グループの更新"
     msgid "Create Group"
     msgstr "グループの作成"
     
    -#: ../../godmode/groups/configure_group.php:119
    -#: ../../godmode/groups/group_list.php:375
    +#: ../../godmode/groups/configure_group.php:121
    +#: ../../godmode/groups/group_list.php:580
     #: ../../godmode/modules/module_list.php:57
    -#: ../../godmode/reporting/visual_console_builder.elements.php:188
    -#: ../../godmode/setup/os.builder.php:39
    -#: ../../include/functions_visual_map.php:3947
    -#: ../../include/functions_visual_map_editor.php:61
    -#: ../../include/functions_visual_map_editor.php:872
    -#: ../../enterprise/dashboard/widgets/module_icon.php:84
    -#: ../../enterprise/dashboard/widgets/module_status.php:73
    -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:76
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1283
    +#: ../../godmode/reporting/visual_console_builder.elements.php:254
    +#: ../../godmode/setup/os.builder.php:37
    +#: ../../include/functions_visual_map.php:4308
    +#: ../../include/functions_visual_map_editor.php:68
    +#: ../../include/functions_visual_map_editor.php:1305
    +#: ../../enterprise/dashboard/widgets/module_icon.php:110
    +#: ../../enterprise/dashboard/widgets/module_status.php:97
    +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:87
     msgid "Icon"
     msgstr "アイコン"
     
    -#: ../../godmode/groups/configure_group.php:144
    +#: ../../godmode/groups/configure_group.php:146
     msgid "You have not access to the parent."
     msgstr "親へアクセスできません"
     
    -#: ../../godmode/groups/configure_group.php:166
    +#: ../../godmode/groups/configure_group.php:180
     msgid "Group Password"
     msgstr "グループパスワード"
     
    -#: ../../godmode/groups/configure_group.php:174
    +#: ../../godmode/groups/configure_group.php:188
     msgid "Propagate ACL"
     msgstr "ACL の伝播"
     
    -#: ../../godmode/groups/configure_group.php:174
    +#: ../../godmode/groups/configure_group.php:188
     msgid "Propagate the same ACL security into the child subgroups."
     msgstr "子のサブグループへ同じ ACL を適用します。"
     
    -#: ../../godmode/groups/configure_group.php:186
    +#: ../../godmode/groups/configure_group.php:200
    +#: ../../include/functions_events.php:4610
    +#: ../../include/functions_events.php.orig:4496
     msgid "Contact"
     msgstr "連絡先"
     
    -#: ../../godmode/groups/configure_group.php:186
    +#: ../../godmode/groups/configure_group.php:200
     msgid "Contact information accessible through the _groupcontact_ macro"
     msgstr "_groupcontact_ マクロで参照可能な連絡先情報"
     
    -#: ../../godmode/groups/configure_group.php:190
    +#: ../../godmode/groups/configure_group.php:204
     msgid "Information accessible through the _group_other_ macro"
     msgstr "_group_other_ マクロで参照可能な情報"
     
    -#: ../../godmode/groups/configure_group.php:196
    -#: ../../godmode/users/configure_user.php:572
    -#: ../../operation/users/user_edit.php:325
    +#: ../../godmode/groups/configure_group.php:210
    +#: ../../godmode/users/configure_user.php:807
    +#: ../../operation/users/user_edit.php:386
     msgid "Skin"
     msgstr "スキン"
     
    -#: ../../godmode/groups/configure_group.php:238
    +#: ../../godmode/groups/configure_group.php:251
     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 "
    @@ -12173,943 +13539,1130 @@ msgstr ""
     "このグループとそこに含まれるコンテンツはメタコンソールでは表示されません。\\n\\n "
     "表示されるグループを作成したい場合は、メタコンソールから実行し、ノードに伝播させる必要があります。 "
     
    -#: ../../godmode/groups/configure_modu_group.php:32
    +#: ../../godmode/groups/configure_modu_group.php:28
     msgid "Module group management"
     msgstr "モジュールグループ管理"
     
    -#: ../../godmode/groups/group_list.php:190
    +#: ../../godmode/groups/group_list.php:259
    +msgid "Tree Group view"
    +msgstr "グループツリー表示"
    +
    +#: ../../godmode/groups/group_list.php:270
    +#: ../../godmode/users/configure_user.php:842
    +#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:46
    +#: ../../operation/users/user_edit.php:341
    +#: ../../enterprise/meta/monitoring/group_view.php:55
    +msgid "Group view"
    +msgstr "グループ"
    +
    +#: ../../godmode/groups/group_list.php:281
    +msgid "Credential Store"
    +msgstr "認証情報ストア"
    +
    +#: ../../godmode/groups/group_list.php:288
    +#, php-format
    +msgid "Groups defined in %s"
    +msgstr "%s に定義済のグループ"
    +
    +#: ../../godmode/groups/group_list.php:297
    +msgid "Credential store"
    +msgstr "認証情報ストア"
    +
    +#: ../../godmode/groups/group_list.php:310
     msgid "Edit or delete groups can cause problems with synchronization"
     msgstr "グループの編集や削除は、同期で問題が発生する可能性があります。"
     
    -#: ../../godmode/groups/group_list.php:196
    -msgid "Groups defined in Pandora"
    -msgstr "定義済みグループ"
    -
    -#: ../../godmode/groups/group_list.php:242
    -#: ../../godmode/groups/modu_group_list.php:75
    +#: ../../godmode/groups/group_list.php:369
    +#: ../../godmode/groups/modu_group_list.php:101
     msgid "Group successfully created"
     msgstr "グループを作成しました。"
     
    -#: ../../godmode/groups/group_list.php:245
    -#: ../../godmode/groups/modu_group_list.php:78
    +#: ../../godmode/groups/group_list.php:371
    +#: ../../godmode/groups/modu_group_list.php:104
     msgid "There was a problem creating group"
     msgstr "グループの作成に失敗しました。"
     
    -#: ../../godmode/groups/group_list.php:249
    +#: ../../godmode/groups/group_list.php:374
     msgid "Each group must have a different name"
     msgstr "各グループは異なる名前でなければいけません"
     
    -#: ../../godmode/groups/group_list.php:254
    +#: ../../godmode/groups/group_list.php:377
     msgid "Group must have a name"
     msgstr "グループには名前が必要です"
     
    -#: ../../godmode/groups/group_list.php:298
    -#: ../../godmode/groups/modu_group_list.php:106
    +#: ../../godmode/groups/group_list.php:433
    +#: ../../godmode/groups/modu_group_list.php:137
     msgid "Group successfully updated"
     msgstr "グループを更新しました。"
     
    -#: ../../godmode/groups/group_list.php:301
    -#: ../../godmode/groups/modu_group_list.php:109
    +#: ../../godmode/groups/group_list.php:435
    +#: ../../godmode/groups/modu_group_list.php:140
     msgid "There was a problem modifying group"
     msgstr "グループの更新に失敗しました。"
     
    -#: ../../godmode/groups/group_list.php:326
    +#: ../../godmode/groups/group_list.php:468
     #, php-format
     msgid "The group is not empty. It is use in %s."
     msgstr "グループが空ではありません。%s で利用されています。"
     
    -#: ../../godmode/groups/group_list.php:330
    -#: ../../godmode/groups/modu_group_list.php:145
    +#: ../../godmode/groups/group_list.php:473
    +#: ../../godmode/groups/modu_group_list.php:211
     msgid "Group successfully deleted"
     msgstr "グループを削除しました。"
     
    -#: ../../godmode/groups/group_list.php:333
    -#: ../../godmode/groups/modu_group_list.php:143
    +#: ../../godmode/groups/group_list.php:475
    +#: ../../godmode/groups/modu_group_list.php:209
     msgid "There was a problem deleting group"
     msgstr "グループの削除に失敗しました。"
     
    -#: ../../godmode/groups/group_list.php:427
    +#: ../../godmode/groups/group_list.php:518
    +#: ../../godmode/groups/group_list.php:676
     msgid "There are no defined groups"
     msgstr "グループが定義されていません"
     
    -#: ../../godmode/groups/modu_group_list.php:55
    -msgid "Module groups defined in Pandora"
    -msgstr "Pandora に定義されているモジュールグループ"
    +#: ../../godmode/groups/group_list.php:641
    +msgid ""
    +"The child groups will be updated to use the parent id of the deleted group"
    +msgstr "削除されたグループの親 ID を使用するように、子グループが更新されます"
     
    -#: ../../godmode/groups/modu_group_list.php:82
    -#: ../../godmode/groups/modu_group_list.php:113
    +#: ../../godmode/groups/group_list.php:738 ../../operation/tree.php:348
    +#: ../../enterprise/dashboard/widgets/tree_view.php:233
    +#: ../../enterprise/operation/services/services.treeview_services.php:172
    +msgid "Found groups"
    +msgstr "見つかったグループ"
    +
    +#: ../../godmode/groups/group_list.php:746
    +#: ../../include/class/Diagnostics.class.php:544 ../../operation/tree.php:356
    +#: ../../enterprise/dashboard/widgets/tree_view.php:241
    +#: ../../enterprise/include/functions_reporting_csv.php:838
    +#: ../../enterprise/operation/services/services.treeview_services.php:180
    +msgid "Total modules"
    +msgstr "全モジュール"
    +
    +#: ../../godmode/groups/group_list.php:747
    +#: ../../include/functions_reporting_html.php:1886
    +#: ../../include/functions_reporting_html.php:1896
    +#: ../../operation/agentes/group_view.php:194 ../../operation/tree.php:357
    +#: ../../enterprise/dashboard/widgets/tree_view.php:242
    +#: ../../enterprise/include/functions_inventory.php:350
    +#: ../../enterprise/include/functions_inventory.php:489
    +#: ../../enterprise/meta/monitoring/group_view.php:188
    +#: ../../enterprise/operation/agentes/agent_inventory.php:240
    +#: ../../enterprise/operation/services/services.treeview_services.php:181
    +msgid "Total"
    +msgstr "合計"
    +
    +#: ../../godmode/groups/group_list.php:750
    +#: ../../godmode/groups/group_list.php:751
    +#: ../../godmode/groups/group_list.php:752
    +#: ../../include/functions_graph.php:2466
    +#: ../../include/functions_reporting.php:8973
    +#: ../../include/functions_reporting.php:8989 ../../operation/tree.php:360
    +#: ../../operation/tree.php:361 ../../operation/tree.php:362
    +#: ../../enterprise/dashboard/widgets/tree_view.php:245
    +#: ../../enterprise/dashboard/widgets/tree_view.php:246
    +#: ../../enterprise/dashboard/widgets/tree_view.php:247
    +#: ../../enterprise/include/functions_reporting_csv.php:838
    +#: ../../enterprise/operation/services/services.treeview_services.php:184
    +#: ../../enterprise/operation/services/services.treeview_services.php:185
    +#: ../../enterprise/operation/services/services.treeview_services.php:186
    +msgid "Fired alerts"
    +msgstr "発生したアラート"
    +
    +#: ../../godmode/groups/group_list.php:755 ../../operation/tree.php:365
    +#: ../../enterprise/dashboard/widgets/tree_view.php:250
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:523
    +#: ../../enterprise/operation/services/services.treeview_services.php:189
    +msgid "Critical agents"
    +msgstr "障害エージェント数"
    +
    +#: ../../godmode/groups/group_list.php:756
    +#: ../../mobile/operation/groups.php:161 ../../operation/tree.php:366
    +#: ../../enterprise/dashboard/widgets/tree_view.php:251
    +#: ../../enterprise/include/functions_reporting_csv.php:838
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:592
    +#: ../../enterprise/operation/services/services.treeview_services.php:190
    +msgid "Critical modules"
    +msgstr "障害モジュール"
    +
    +#: ../../godmode/groups/group_list.php:760 ../../operation/tree.php:370
    +#: ../../enterprise/dashboard/widgets/tree_view.php:255
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:533
    +#: ../../enterprise/operation/services/services.treeview_services.php:194
    +msgid "Warning agents"
    +msgstr "警告エージェント数"
    +
    +#: ../../godmode/groups/group_list.php:761
    +#: ../../mobile/operation/groups.php:158 ../../operation/tree.php:371
    +#: ../../enterprise/dashboard/widgets/tree_view.php:256
    +#: ../../enterprise/include/functions_reporting_csv.php:838
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:602
    +#: ../../enterprise/operation/services/services.treeview_services.php:195
    +msgid "Warning modules"
    +msgstr "警告モジュール"
    +
    +#: ../../godmode/groups/group_list.php:762
    +#: ../../godmode/massive/massive_copy_modules.php:100
    +#: ../../godmode/massive/massive_copy_modules.php:260
    +#: ../../godmode/massive/massive_delete_agents.php:137
    +#: ../../godmode/massive/massive_delete_modules.php:395
    +#: ../../godmode/massive/massive_delete_modules.php:416
    +#: ../../godmode/massive/massive_edit_agents.php:424
    +#: ../../godmode/massive/massive_edit_agents.php:682
    +#: ../../godmode/massive/massive_edit_modules.php:359
    +#: ../../godmode/massive/massive_edit_modules.php:444
    +#: ../../godmode/servers/plugin.php:602
    +#: ../../godmode/setup/setup_netflow.php:70
    +#: ../../include/class/Diagnostics.class.php:1800
    +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:388
    +#: ../../include/functions.php:1033 ../../include/functions.php:1270
    +#: ../../include/functions.php:1273 ../../include/functions.php:1312
    +#: ../../include/functions_events.php:3095
    +#: ../../include/functions_events.php.orig:3001
    +#: ../../include/functions_ui.php:291 ../../include/functions_ui.php:2563
    +#: ../../include/functions_graph.php:3482
    +#: ../../include/functions_graph.php:3483
    +#: ../../include/functions_graph.php:4883
    +#: ../../include/functions_reporting_html.php:1899
    +#: ../../mobile/operation/agents.php:41 ../../mobile/operation/modules.php:50
    +#: ../../operation/agentes/estado_agente.php:231
    +#: ../../operation/agentes/estado_monitores.php:516
    +#: ../../operation/agentes/group_view.php:198
    +#: ../../operation/agentes/group_view.php:203
    +#: ../../operation/agentes/status_monitor.php:381
    +#: ../../operation/agentes/tactical.php:148
    +#: ../../operation/gis_maps/render_view.php:152
    +#: ../../operation/netflow/nf_live_view.php:451 ../../operation/tree.php:160
    +#: ../../operation/tree.php:204 ../../operation/tree.php:372
    +#: ../../enterprise/dashboard/widgets/tree_view.php:70
    +#: ../../enterprise/dashboard/widgets/tree_view.php:88
    +#: ../../enterprise/dashboard/widgets/tree_view.php:257
    +#: ../../enterprise/dashboard/widgets/service_map.php:101
    +#: ../../enterprise/dashboard/widgets/system_group_status.php:49
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:103
    +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:48
    +#: ../../enterprise/godmode/reporting/cluster_list.php:132
    +#: ../../enterprise/godmode/reporting/cluster_list.php:247
    +#: ../../enterprise/godmode/reporting/cluster_view.php:344
    +#: ../../enterprise/godmode/reporting/cluster_view.php:430
    +#: ../../enterprise/godmode/services/services.service.php:415
    +#: ../../enterprise/godmode/services/services.service.php:573
    +#: ../../enterprise/include/functions_services.php:2316
    +#: ../../enterprise/include/functions_login.php:23
    +#: ../../enterprise/include/functions_reporting.php:4812
    +#: ../../enterprise/meta/advanced/collections.php:51
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:974
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1061
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1265
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1285
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1503
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1587
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1706
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:1726
    +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:123
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:220
    +#: ../../enterprise/meta/monitoring/group_view.php:192
    +#: ../../enterprise/meta/monitoring/group_view.php:198
    +#: ../../enterprise/meta/monitoring/tactical.php:240
    +#: ../../enterprise/operation/agentes/tag_view.php:106
    +#: ../../enterprise/operation/agentes/transactional_map.php:324
    +#: ../../enterprise/operation/services/services.list.php:190
    +#: ../../enterprise/operation/services/services.list.php:411
    +#: ../../enterprise/operation/services/services.list.php:478
    +#: ../../enterprise/operation/services/services.service.php:170
    +#: ../../enterprise/operation/services/services.service.php:225
    +#: ../../enterprise/operation/services/services.service_map.php:171
    +#: ../../enterprise/operation/services/services.table_services.php:169
    +#: ../../enterprise/operation/services/services.treeview_services.php:196
    +msgid "Warning"
    +msgstr "警告"
    +
    +#: ../../godmode/groups/group_list.php:765 ../../operation/tree.php:375
    +#: ../../enterprise/dashboard/widgets/tree_view.php:260
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:553
    +#: ../../enterprise/operation/services/services.treeview_services.php:199
    +msgid "Unknown agents"
    +msgstr "不明エージェント数"
    +
    +#: ../../godmode/groups/group_list.php:766
    +#: ../../mobile/operation/groups.php:149 ../../operation/tree.php:376
    +#: ../../enterprise/dashboard/widgets/tree_view.php:261
    +#: ../../enterprise/include/functions_reporting_csv.php:838
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:622
    +#: ../../enterprise/operation/services/services.treeview_services.php:200
    +msgid "Unknown modules"
    +msgstr "不明モジュール"
    +
    +#: ../../godmode/groups/group_list.php:770 ../../operation/tree.php:380
    +#: ../../enterprise/dashboard/widgets/tree_view.php:265
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:563
    +#: ../../enterprise/operation/services/services.treeview_services.php:204
    +msgid "Not init agents"
    +msgstr "未初期化エージェント数"
    +
    +#: ../../godmode/groups/group_list.php:771
    +#: ../../mobile/operation/groups.php:152 ../../operation/tree.php:381
    +#: ../../enterprise/dashboard/widgets/tree_view.php:266
    +#: ../../enterprise/include/functions_reporting_csv.php:838
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:632
    +#: ../../enterprise/operation/services/services.treeview_services.php:205
    +msgid "Not init modules"
    +msgstr "未初期化モジュール"
    +
    +#: ../../godmode/groups/group_list.php:772
    +#: ../../godmode/massive/massive_copy_modules.php:104
    +#: ../../godmode/massive/massive_copy_modules.php:264
    +#: ../../godmode/massive/massive_delete_agents.php:141
    +#: ../../godmode/massive/massive_delete_modules.php:399
    +#: ../../godmode/massive/massive_delete_modules.php:420
    +#: ../../godmode/massive/massive_edit_agents.php:428
    +#: ../../godmode/massive/massive_edit_modules.php:363
    +#: ../../godmode/massive/massive_edit_modules.php:448
    +#: ../../include/functions_reporting_html.php:592
    +#: ../../include/functions_reporting_html.php:1901
    +#: ../../include/functions_reporting_html.php:3408
    +#: ../../mobile/operation/modules.php:55
    +#: ../../operation/agentes/estado_agente.php:235
    +#: ../../operation/agentes/group_view.php:196
    +#: ../../operation/agentes/group_view.php:201
    +#: ../../operation/agentes/status_monitor.php:386
    +#: ../../operation/agentes/tactical.php:151 ../../operation/tree.php:163
    +#: ../../operation/tree.php:207 ../../operation/tree.php:382
    +#: ../../enterprise/dashboard/widgets/tree_view.php:73
    +#: ../../enterprise/dashboard/widgets/tree_view.php:91
    +#: ../../enterprise/dashboard/widgets/tree_view.php:267
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:107
    +#: ../../enterprise/godmode/reporting/cluster_list.php:135
    +#: ../../enterprise/godmode/reporting/cluster_list.php:256
    +#: ../../enterprise/godmode/reporting/cluster_view.php:299
    +#: ../../enterprise/godmode/reporting/cluster_view.php:362
    +#: ../../enterprise/godmode/reporting/cluster_view.php:463
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:225
    +#: ../../enterprise/meta/monitoring/group_view.php:190
    +#: ../../enterprise/meta/monitoring/group_view.php:196
    +#: ../../enterprise/meta/monitoring/tactical.php:243
    +#: ../../enterprise/operation/agentes/tag_view.php:111
    +#: ../../enterprise/operation/agentes/transactional_map.php:336
    +#: ../../enterprise/operation/services/services.treeview_services.php:206
    +msgid "Not init"
    +msgstr "未初期化"
    +
    +#: ../../godmode/groups/group_list.php:775 ../../operation/tree.php:385
    +#: ../../enterprise/dashboard/widgets/tree_view.php:270
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:543
    +#: ../../enterprise/operation/services/services.treeview_services.php:209
    +msgid "Normal agents"
    +msgstr "正常エージェント数"
    +
    +#: ../../godmode/groups/group_list.php:776
    +#: ../../mobile/operation/groups.php:155 ../../operation/tree.php:386
    +#: ../../enterprise/dashboard/widgets/tree_view.php:271
    +#: ../../enterprise/include/functions_reporting_csv.php:838
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:612
    +#: ../../enterprise/operation/services/services.treeview_services.php:210
    +msgid "Normal modules"
    +msgstr "正常モジュール"
    +
    +#: ../../godmode/groups/group_list.php:777
    +#: ../../godmode/massive/massive_copy_modules.php:99
    +#: ../../godmode/massive/massive_copy_modules.php:259
    +#: ../../godmode/massive/massive_delete_agents.php:136
    +#: ../../godmode/massive/massive_delete_modules.php:394
    +#: ../../godmode/massive/massive_delete_modules.php:415
    +#: ../../godmode/massive/massive_edit_agents.php:423
    +#: ../../godmode/massive/massive_edit_modules.php:358
    +#: ../../godmode/massive/massive_edit_modules.php:443
    +#: ../../godmode/netflow/nf_edit_form.php:225
    +#: ../../include/rest-api/models/VisualConsole/Items/Group.php:393
    +#: ../../include/functions.php:1029 ../../include/functions.php:1268
    +#: ../../include/functions.php:1275 ../../include/functions.php:1308
    +#: ../../include/functions_events.php:3091
    +#: ../../include/functions_events.php.orig:2997
    +#: ../../include/functions_graph.php:3472
    +#: ../../include/functions_graph.php:3473
    +#: ../../include/functions_graph.php:4879
    +#: ../../include/functions_reporting_html.php:1897
    +#: ../../mobile/operation/agents.php:40 ../../mobile/operation/modules.php:49
    +#: ../../operation/agentes/estado_agente.php:230
    +#: ../../operation/agentes/estado_monitores.php:514
    +#: ../../operation/agentes/group_view.php:197
    +#: ../../operation/agentes/group_view.php:202
    +#: ../../operation/agentes/status_monitor.php:380
    +#: ../../operation/agentes/tactical.php:149
    +#: ../../operation/netflow/nf_live_view.php:384 ../../operation/tree.php:159
    +#: ../../operation/tree.php:203 ../../operation/tree.php:387
    +#: ../../enterprise/dashboard/widgets/tree_view.php:69
    +#: ../../enterprise/dashboard/widgets/tree_view.php:87
    +#: ../../enterprise/dashboard/widgets/tree_view.php:272
    +#: ../../enterprise/dashboard/widgets/system_group_status.php:48
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102
    +#: ../../enterprise/godmode/reporting/cluster_list.php:131
    +#: ../../enterprise/godmode/reporting/cluster_list.php:251
    +#: ../../enterprise/godmode/reporting/cluster_view.php:368
    +#: ../../enterprise/godmode/reporting/cluster_view.php:474
    +#: ../../enterprise/include/functions_services.php:2304
    +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:113
    +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:136
    +#: ../../enterprise/meta/monitoring/custom_fields_view.php:219
    +#: ../../enterprise/meta/monitoring/group_view.php:191
    +#: ../../enterprise/meta/monitoring/group_view.php:197
    +#: ../../enterprise/meta/monitoring/tactical.php:241
    +#: ../../enterprise/operation/agentes/tag_view.php:105
    +#: ../../enterprise/operation/services/services.treeview_services.php:211
    +msgid "Normal"
    +msgstr "正常"
    +
    +#: ../../godmode/groups/modu_group_list.php:71
    +#, php-format
    +msgid "Module groups defined in %s"
    +msgstr "%s に定義済のモジュールグループ"
    +
    +#: ../../godmode/groups/modu_group_list.php:109
    +#: ../../godmode/groups/modu_group_list.php:145
    +#: ../../include/functions_api.php:9510
     msgid "Each module group must have a different name"
     msgstr "各モジュールグループは、異なる名前でなければいけません。"
     
    -#: ../../godmode/groups/modu_group_list.php:86
    -#: ../../godmode/groups/modu_group_list.php:117
    +#: ../../godmode/groups/modu_group_list.php:113
    +#: ../../godmode/groups/modu_group_list.php:149
    +#: ../../include/functions_api.php:9503
     msgid "Module group must have a name"
     msgstr "モジュールグループには名前が必要です"
     
    -#: ../../godmode/groups/modu_group_list.php:215
    +#: ../../godmode/groups/modu_group_list.php:265
     msgid "There are no defined module groups"
     msgstr "定義済のモジュールグループがありません"
     
    -#: ../../godmode/groups/modu_group_list.php:220
    +#: ../../godmode/groups/modu_group_list.php:273
     msgid "Create module group"
     msgstr "モジュールグループの作成"
     
    -#: ../../godmode/massive/massive_add_action_alerts.php:59
    -#: ../../godmode/massive/massive_add_alerts.php:73
    -#: ../../godmode/massive/massive_add_tags.php:33
    -#: ../../godmode/massive/massive_delete_agents.php:33
    -#: ../../godmode/massive/massive_delete_alerts.php:83
    -#: ../../godmode/massive/massive_delete_modules.php:61
    -#: ../../godmode/massive/massive_delete_tags.php:97
    -#: ../../godmode/massive/massive_edit_agents.php:92
    -#: ../../include/functions_visual_map.php:2552
    -#: ../../include/functions_visual_map.php:2883
    -#: ../../enterprise/godmode/policies/policy_agents.php:731
    +#: ../../godmode/massive/massive_add_action_alerts.php:60
    +#: ../../godmode/massive/massive_add_alerts.php:100
    +#: ../../godmode/massive/massive_delete_agents.php:35
    +#: ../../godmode/massive/massive_delete_alerts.php:98
    +#: ../../godmode/massive/massive_delete_modules.php:72
    +#: ../../godmode/massive/massive_edit_agents.php:136
    +#: ../../include/functions_visual_map.php:2655
    +#: ../../include/functions_visual_map.php:3042
    +#: ../../enterprise/godmode/policies/policy_agents.php:930
     msgid "No agents selected"
     msgstr "エージェントが選択されていません。"
     
    -#: ../../godmode/massive/massive_add_action_alerts.php:96
    +#: ../../godmode/massive/massive_add_action_alerts.php:99
     msgid "No alerts selected"
     msgstr "アラートが選択されていません。"
     
    -#: ../../godmode/massive/massive_add_action_alerts.php:120
    +#: ../../godmode/massive/massive_add_action_alerts.php:125
     msgid "No actions selected"
     msgstr "アクションが選択されていません"
     
    -#: ../../godmode/massive/massive_add_action_alerts.php:154
    -#: ../../godmode/massive/massive_add_alerts.php:154
    -#: ../../godmode/massive/massive_copy_modules.php:74
    -#: ../../godmode/massive/massive_copy_modules.php:190
    -#: ../../godmode/massive/massive_delete_action_alerts.php:154
    -#: ../../godmode/massive/massive_delete_agents.php:108
    -#: ../../godmode/massive/massive_delete_alerts.php:215
    -#: ../../godmode/massive/massive_delete_modules.php:457
    -#: ../../godmode/massive/massive_edit_agents.php:263
    -#: ../../godmode/massive/massive_edit_modules.php:295
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:138
    -#: ../../godmode/massive/massive_standby_alerts.php:139
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:82
    -#: ../../enterprise/godmode/policies/policy_agents.php:378
    -#: ../../enterprise/godmode/policies/policy_agents.php:394
    -#: ../../enterprise/godmode/policies/policy_agents.php:428
    -#: ../../enterprise/godmode/policies/policy_agents.php:558
    +#: ../../godmode/massive/massive_add_action_alerts.php:168
    +#: ../../godmode/massive/massive_add_alerts.php:200
    +#: ../../godmode/massive/massive_copy_modules.php:96
    +#: ../../godmode/massive/massive_copy_modules.php:249
    +#: ../../godmode/massive/massive_delete_action_alerts.php:175
    +#: ../../godmode/massive/massive_delete_agents.php:126
    +#: ../../godmode/massive/massive_delete_alerts.php:268
    +#: ../../godmode/massive/massive_delete_modules.php:362
    +#: ../../godmode/massive/massive_edit_agents.php:412
    +#: ../../godmode/massive/massive_edit_modules.php:343
    +#: ../../godmode/massive/massive_enable_disable_alerts.php:148
    +#: ../../godmode/massive/massive_standby_alerts.php:161
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:98
    +#: ../../enterprise/godmode/policies/policy_agents.php:470
    +#: ../../enterprise/godmode/policies/policy_agents.php:503
    +#: ../../enterprise/godmode/policies/policy_agents.php:542
    +#: ../../enterprise/godmode/policies/policy_agents.php:687
    +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:385
     msgid "Group recursion"
     msgstr "子グループを含める"
     
    -#: ../../godmode/massive/massive_add_action_alerts.php:157
    -#: ../../godmode/massive/massive_delete_action_alerts.php:158
    +#: ../../godmode/massive/massive_add_action_alerts.php:171
    +#: ../../godmode/massive/massive_delete_action_alerts.php:184
     msgid "Agents with templates"
     msgstr "テンプレートがあるエージェント"
     
    -#: ../../godmode/massive/massive_add_action_alerts.php:168
    -#: ../../godmode/massive/massive_add_alerts.php:167
    -#: ../../godmode/massive/massive_delete_action_alerts.php:169
    -#: ../../godmode/massive/massive_delete_alerts.php:227
    -#: ../../godmode/massive/massive_delete_modules.php:525
    -#: ../../godmode/massive/massive_edit_modules.php:366
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:225
    +#: ../../godmode/massive/massive_add_action_alerts.php:182
    +#: ../../godmode/massive/massive_add_alerts.php:232
    +#: ../../godmode/massive/massive_delete_action_alerts.php:195
    +#: ../../godmode/massive/massive_delete_alerts.php:298
    +#: ../../godmode/massive/massive_delete_modules.php:526
    +#: ../../godmode/massive/massive_edit_modules.php:496
    +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:230
     msgid "When select agents"
     msgstr "エージェント選択時の動作"
     
    -#: ../../godmode/massive/massive_add_action_alerts.php:172
    -#: ../../godmode/massive/massive_delete_action_alerts.php:173
    -#: ../../godmode/massive/massive_delete_modules.php:527
    -#: ../../godmode/massive/massive_edit_modules.php:370
    +#: ../../godmode/massive/massive_add_action_alerts.php:188
    +#: ../../godmode/massive/massive_delete_action_alerts.php:201
    +#: ../../godmode/massive/massive_delete_modules.php:532
    +#: ../../godmode/massive/massive_edit_modules.php:502
     msgid "Show unknown and not init modules"
     msgstr "不明および未初期化モジュールを表示"
     
    -#: ../../godmode/massive/massive_add_action_alerts.php:228
    -#: ../../godmode/massive/massive_add_alerts.php:213
    -#: ../../godmode/massive/massive_copy_modules.php:443
    -#: ../../godmode/massive/massive_delete_agents.php:163
    -#: ../../godmode/massive/massive_delete_alerts.php:266
    -#: ../../godmode/massive/massive_delete_modules.php:769
    -#: ../../godmode/massive/massive_edit_agents.php:583
    -#: ../../godmode/massive/massive_edit_modules.php:734
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:313
    +#: ../../godmode/massive/massive_add_action_alerts.php:259
    +#: ../../godmode/massive/massive_add_alerts.php:295
    +#: ../../godmode/massive/massive_copy_modules.php:525
    +#: ../../godmode/massive/massive_delete_agents.php:215
    +#: ../../godmode/massive/massive_delete_alerts.php:347
    +#: ../../godmode/massive/massive_delete_modules.php:802
    +#: ../../godmode/massive/massive_edit_agents.php:918
    +#: ../../godmode/massive/massive_edit_modules.php:1211
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:342
     msgid ""
     "Unsucessful sending the data, please contact with your administrator or make "
     "with less elements."
     msgstr "データ処理に失敗しました。管理者に連絡するか要素を少なくしてください。"
     
    -#: ../../godmode/massive/massive_add_alerts.php:78
    -#: ../../godmode/massive/massive_delete_alerts.php:78
    +#: ../../godmode/massive/massive_add_alerts.php:105
    +#: ../../godmode/massive/massive_delete_alerts.php:93
     msgid "No alert selected"
     msgstr "アラートが選択されていません。"
     
    -#: ../../godmode/massive/massive_add_profiles.php:72
    +#: ../../godmode/massive/massive_add_alerts.php:249
    +#: ../../godmode/massive/massive_delete_alerts.php:234
    +#: ../../godmode/massive/massive_enable_disable_alerts.php:166
    +#: ../../godmode/massive/massive_standby_alerts.php:178
    +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:97
    +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:109
    +#: ../../enterprise/godmode/policies/policy_alerts.php:576
    +msgid "Alert template"
    +msgstr "アラートテンプレート"
    +
    +#: ../../godmode/massive/massive_add_profiles.php:82
     msgid "Profiles added successfully"
     msgstr "プロファイルを追加しました。"
     
    -#: ../../godmode/massive/massive_add_profiles.php:73
    +#: ../../godmode/massive/massive_add_profiles.php:83
     msgid "Profiles cannot be added"
     msgstr "プロファイルの追加ができませんでした。"
     
    -#: ../../godmode/massive/massive_add_profiles.php:88
    -#: ../../godmode/massive/massive_delete_profiles.php:102
    -#: ../../godmode/users/configure_profile.php:242
    -#: ../../godmode/users/configure_user.php:737
    -#: ../../operation/users/user_edit.php:515
    -#: ../../enterprise/godmode/setup/setup_acl.php:432
    +#: ../../godmode/massive/massive_add_profiles.php:101
    +#: ../../godmode/massive/massive_delete_profiles.php:108
    +#: ../../godmode/users/configure_profile.php:217
    +#: ../../include/functions_profile.php:211
    +#: ../../operation/users/user_edit.php:753
    +#: ../../enterprise/godmode/setup/setup_acl.php:493
     msgid "Profile name"
     msgstr "プロファイル名"
     
    -#: ../../godmode/massive/massive_add_profiles.php:90
    -#: ../../godmode/massive/massive_delete_profiles.php:104
    -#: ../../include/functions_reporting.php:7976
    -#: ../../operation/search_results.php:84
    -#: ../../enterprise/meta/advanced/synchronizing.user.php:531
    +#: ../../godmode/massive/massive_add_profiles.php:103
    +#: ../../godmode/massive/massive_delete_profiles.php:110
    +#: ../../include/functions_reporting.php:9169
    +#: ../../operation/search_results.php:92
    +#: ../../enterprise/meta/advanced/synchronizing.user.php:586
     msgid "Users"
     msgstr "ユーザ"
     
    -#: ../../godmode/massive/massive_add_tags.php:43
    -msgid "No tags selected"
    -msgstr "タグが選択されていません"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:77
    -#: ../../godmode/massive/massive_copy_modules.php:195
    -#: ../../godmode/massive/massive_delete_agents.php:113
    -#: ../../godmode/massive/massive_delete_modules.php:474
    -#: ../../godmode/massive/massive_delete_modules.php:488
    -#: ../../godmode/massive/massive_edit_agents.php:269
    -#: ../../godmode/massive/massive_edit_modules.php:305
    -#: ../../godmode/massive/massive_edit_modules.php:343
    -#: ../../godmode/netflow/nf_edit_form.php:207 ../../include/functions.php:873
    -#: ../../include/functions.php:1077 ../../include/functions.php:1084
    -#: ../../include/functions.php:1114 ../../include/functions_events.php:1469
    -#: ../../include/functions_graph.php:2666
    -#: ../../include/functions_graph.php:3767
    -#: ../../include/functions_graph.php:3768
    -#: ../../include/functions_graph.php:6079
    -#: ../../include/functions_groups.php:815
    -#: ../../include/functions_groups.php:817
    -#: ../../include/functions_groups.php:819
    -#: ../../include/functions_groups.php:820
    -#: ../../include/functions_groups.php:821
    -#: ../../include/functions_groups.php:829
    -#: ../../include/functions_reporting_html.php:1576
    -#: ../../mobile/operation/agents.php:34 ../../mobile/operation/modules.php:39
    -#: ../../operation/agentes/estado_agente.php:214
    -#: ../../operation/agentes/estado_monitores.php:463
    -#: ../../operation/agentes/group_view.php:171
    -#: ../../operation/agentes/status_monitor.php:297
    -#: ../../operation/agentes/tactical.php:152
    -#: ../../operation/netflow/nf_live_view.php:322 ../../operation/tree.php:137
    -#: ../../operation/tree.php:169 ../../operation/tree.php:325
    -#: ../../enterprise/dashboard/widgets/tree_view.php:55
    -#: ../../enterprise/dashboard/widgets/tree_view.php:68
    -#: ../../enterprise/dashboard/widgets/tree_view.php:237
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:86
    -#: ../../enterprise/godmode/reporting/cluster_view.php:335
    -#: ../../enterprise/godmode/reporting/cluster_view.php:412
    -#: ../../enterprise/godmode/reporting/cluster_list.php:115
    -#: ../../enterprise/godmode/reporting/cluster_list.php:250
    -#: ../../enterprise/include/functions_reporting_pdf.php:753
    -#: ../../enterprise/include/functions_services.php:1347
    -#: ../../enterprise/meta/monitoring/group_view.php:152
    -#: ../../enterprise/meta/monitoring/tactical.php:280
    -#: ../../enterprise/operation/agentes/tag_view.php:82
    -msgid "Normal"
    -msgstr "正常"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:78
    -#: ../../godmode/massive/massive_copy_modules.php:196
    -#: ../../godmode/massive/massive_delete_agents.php:114
    -#: ../../godmode/massive/massive_delete_modules.php:475
    -#: ../../godmode/massive/massive_delete_modules.php:489
    -#: ../../godmode/massive/massive_edit_agents.php:270
    -#: ../../godmode/massive/massive_edit_agents.php:463
    -#: ../../godmode/massive/massive_edit_modules.php:306
    -#: ../../godmode/massive/massive_edit_modules.php:344
    -#: ../../godmode/servers/manage_recontask_form.php:193
    -#: ../../godmode/setup/setup_netflow.php:70 ../../include/functions.php:876
    -#: ../../include/functions.php:1079 ../../include/functions.php:1082
    -#: ../../include/functions.php:1117 ../../include/functions_ui.php:239
    -#: ../../include/functions_ui.php:2057 ../../include/functions_events.php:1472
    -#: ../../include/functions_graph.php:2665
    -#: ../../include/functions_graph.php:3775
    -#: ../../include/functions_graph.php:3776
    -#: ../../include/functions_graph.php:6082
    -#: ../../include/functions_groups.php:824
    -#: ../../include/functions_groups.php:826
    -#: ../../include/functions_groups.php:828
    -#: ../../include/functions_groups.php:829
    -#: ../../include/functions_groups.php:830
    -#: ../../include/functions_reporting_html.php:1580
    -#: ../../mobile/operation/agents.php:35 ../../mobile/operation/modules.php:40
    -#: ../../operation/agentes/estado_agente.php:215
    -#: ../../operation/agentes/estado_monitores.php:465
    -#: ../../operation/agentes/group_view.php:172
    -#: ../../operation/agentes/status_monitor.php:298
    -#: ../../operation/agentes/tactical.php:151
    -#: ../../operation/gis_maps/render_view.php:150
    -#: ../../operation/netflow/nf_live_view.php:273 ../../operation/tree.php:138
    -#: ../../operation/tree.php:170 ../../operation/tree.php:310
    -#: ../../enterprise/dashboard/widgets/service_map.php:85
    -#: ../../enterprise/dashboard/widgets/tree_view.php:56
    -#: ../../enterprise/dashboard/widgets/tree_view.php:69
    -#: ../../enterprise/dashboard/widgets/tree_view.php:222
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:87
    -#: ../../enterprise/godmode/reporting/cluster_view.php:315
    -#: ../../enterprise/godmode/reporting/cluster_view.php:392
    -#: ../../enterprise/godmode/reporting/cluster_list.php:116
    -#: ../../enterprise/godmode/reporting/cluster_list.php:230
    -#: ../../enterprise/godmode/services/services.service.php:314
    -#: ../../enterprise/include/functions_login.php:22
    -#: ../../enterprise/include/functions_reporting.php:4167
    -#: ../../enterprise/include/functions_reporting_pdf.php:755
    -#: ../../enterprise/include/functions_reporting_pdf.php:2444
    -#: ../../enterprise/include/functions_services.php:1356
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:839
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:925
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1126
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1146
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1342
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1423
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1539
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1559
    -#: ../../enterprise/meta/monitoring/group_view.php:153
    -#: ../../enterprise/meta/monitoring/tactical.php:279
    -#: ../../enterprise/operation/agentes/tag_view.php:83
    -#: ../../enterprise/operation/agentes/transactional_map.php:265
    -#: ../../enterprise/operation/services/services.list.php:171
    -#: ../../enterprise/operation/services/services.list.php:340
    -#: ../../enterprise/operation/services/services.list.php:409
    -#: ../../enterprise/operation/services/services.service.php:136
    -#: ../../enterprise/operation/services/services.service.php:188
    -#: ../../enterprise/operation/services/services.service_map.php:125
    -#: ../../enterprise/operation/services/services.table_services.php:140
    -msgid "Warning"
    -msgstr "警告"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:79
    -#: ../../godmode/massive/massive_copy_modules.php:197
    -#: ../../godmode/massive/massive_delete_agents.php:115
    -#: ../../godmode/massive/massive_delete_modules.php:476
    -#: ../../godmode/massive/massive_delete_modules.php:490
    -#: ../../godmode/massive/massive_edit_agents.php:271
    -#: ../../godmode/massive/massive_edit_modules.php:307
    -#: ../../godmode/massive/massive_edit_modules.php:345
    -#: ../../include/functions.php:879 ../../include/functions.php:1081
    -#: ../../include/functions.php:1082 ../../include/functions.php:1084
    -#: ../../include/functions.php:1120 ../../include/functions_ui.php:2057
    -#: ../../include/functions_events.php:1475
    -#: ../../include/functions_graph.php:2664
    -#: ../../include/functions_graph.php:3783
    -#: ../../include/functions_graph.php:3784
    -#: ../../include/functions_graph.php:6085
    -#: ../../include/functions_groups.php:833
    -#: ../../include/functions_groups.php:835
    -#: ../../include/functions_groups.php:837
    -#: ../../include/functions_groups.php:838
    -#: ../../include/functions_groups.php:839
    -#: ../../include/functions_reporting_html.php:683
    -#: ../../include/functions_reporting_html.php:1578
    -#: ../../include/functions_reporting_html.php:2602
    -#: ../../mobile/operation/agents.php:33 ../../mobile/operation/modules.php:41
    -#: ../../operation/agentes/estado_agente.php:216
    -#: ../../operation/agentes/estado_monitores.php:461
    -#: ../../operation/agentes/group_view.php:168
    -#: ../../operation/agentes/group_view.php:173
    -#: ../../operation/agentes/status_monitor.php:299
    -#: ../../operation/agentes/tactical.php:150
    -#: ../../operation/gis_maps/render_view.php:149 ../../operation/tree.php:139
    -#: ../../operation/tree.php:171 ../../operation/tree.php:305
    -#: ../../enterprise/dashboard/widgets/service_map.php:84
    -#: ../../enterprise/dashboard/widgets/tree_view.php:57
    -#: ../../enterprise/dashboard/widgets/tree_view.php:70
    -#: ../../enterprise/dashboard/widgets/tree_view.php:217
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:88
    -#: ../../enterprise/godmode/reporting/cluster_view.php:310
    -#: ../../enterprise/godmode/reporting/cluster_view.php:387
    -#: ../../enterprise/godmode/reporting/cluster_list.php:117
    -#: ../../enterprise/godmode/reporting/cluster_list.php:225
    -#: ../../enterprise/godmode/services/services.elements.php:406
    -#: ../../enterprise/godmode/services/services.service.php:310
    -#: ../../enterprise/include/functions_reporting.php:2666
    -#: ../../enterprise/include/functions_reporting.php:3435
    -#: ../../enterprise/include/functions_reporting.php:4172
    -#: ../../enterprise/include/functions_reporting_pdf.php:754
    -#: ../../enterprise/include/functions_reporting_pdf.php:1585
    -#: ../../enterprise/include/functions_reporting_pdf.php:2444
    -#: ../../enterprise/include/functions_services.php:1353
    -#: ../../enterprise/include/functions_services.php:1512
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:848
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:934
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1135
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1152
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1351
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1432
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1548
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:1566
    -#: ../../enterprise/meta/monitoring/group_view.php:154
    -#: ../../enterprise/meta/monitoring/tactical.php:278
    -#: ../../enterprise/operation/agentes/tag_view.php:84
    -#: ../../enterprise/operation/services/services.list.php:172
    -#: ../../enterprise/operation/services/services.list.php:339
    -#: ../../enterprise/operation/services/services.list.php:404
    -#: ../../enterprise/operation/services/services.service.php:135
    -#: ../../enterprise/operation/services/services.service.php:183
    -#: ../../enterprise/operation/services/services.service_map.php:124
    -#: ../../enterprise/operation/services/services.table_services.php:141
    -msgid "Critical"
    -msgstr "障害"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:82
    -#: ../../godmode/massive/massive_copy_modules.php:200
    -#: ../../godmode/massive/massive_delete_agents.php:118
    -#: ../../godmode/massive/massive_delete_modules.php:479
    -#: ../../godmode/massive/massive_delete_modules.php:493
    -#: ../../godmode/massive/massive_edit_agents.php:274
    -#: ../../godmode/massive/massive_edit_modules.php:310
    -#: ../../godmode/massive/massive_edit_modules.php:348
    -#: ../../include/functions_graph.php:2670
    -#: ../../include/functions_groups.php:806
    -#: ../../include/functions_groups.php:808
    -#: ../../include/functions_groups.php:810
    -#: ../../include/functions_groups.php:811
    -#: ../../include/functions_groups.php:812
    -#: ../../include/functions_reporting_html.php:1584
    -#: ../../mobile/operation/modules.php:44
    -#: ../../operation/agentes/estado_agente.php:219
    -#: ../../operation/agentes/group_view.php:167
    -#: ../../operation/agentes/status_monitor.php:302
    -#: ../../operation/agentes/tactical.php:154 ../../operation/tree.php:141
    -#: ../../operation/tree.php:173 ../../operation/tree.php:320
    -#: ../../enterprise/dashboard/widgets/tree_view.php:59
    -#: ../../enterprise/dashboard/widgets/tree_view.php:72
    -#: ../../enterprise/dashboard/widgets/tree_view.php:232
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:91
    -#: ../../enterprise/godmode/reporting/cluster_view.php:269
    -#: ../../enterprise/godmode/reporting/cluster_view.php:330
    -#: ../../enterprise/godmode/reporting/cluster_view.php:407
    -#: ../../enterprise/godmode/reporting/cluster_list.php:119
    -#: ../../enterprise/godmode/reporting/cluster_list.php:245
    -#: ../../enterprise/include/functions_reporting_pdf.php:757
    -#: ../../enterprise/meta/monitoring/group_view.php:147
    -#: ../../enterprise/meta/monitoring/group_view.php:151
    -#: ../../enterprise/meta/monitoring/tactical.php:282
    -#: ../../enterprise/operation/agentes/tag_view.php:87
    -#: ../../enterprise/operation/agentes/transactional_map.php:275
    -msgid "Not init"
    -msgstr "未初期化"
    -
    -#: ../../godmode/massive/massive_copy_modules.php:141
    -#: ../../enterprise/godmode/policies/policy_modules.php:1346
    +#: ../../godmode/massive/massive_copy_modules.php:172
    +#: ../../enterprise/godmode/policies/policy_modules.php:1655
     msgid "Copy modules"
     msgstr "モジュールのコピー"
     
    -#: ../../godmode/massive/massive_copy_modules.php:146
    +#: ../../godmode/massive/massive_copy_modules.php:177
     msgid "Copy alerts"
     msgstr "アラートのコピー"
     
    -#: ../../godmode/massive/massive_copy_modules.php:155
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:143
    +#: ../../godmode/massive/massive_copy_modules.php:180
    +#: ../../godmode/massive/massive_delete_modules.php:434
    +#: ../../godmode/massive/massive_edit_modules.php:393
    +msgid "Filter Modules"
    +msgstr "モジュールフィルタ"
    +
    +#: ../../godmode/massive/massive_copy_modules.php:197
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:173
     msgid "No modules for this agent"
     msgstr "このエージェントにはモジュールがありません。"
     
    -#: ../../godmode/massive/massive_copy_modules.php:164
    +#: ../../godmode/massive/massive_copy_modules.php:214
     msgid "No alerts for this agent"
     msgstr "このエージェントにはアラートが定義されていません。"
     
    -#: ../../godmode/massive/massive_copy_modules.php:173
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:152
    -#: ../../enterprise/meta/advanced/policymanager.sync.php:304
    -#: ../../enterprise/meta/advanced/synchronizing.alert.php:344
    -#: ../../enterprise/meta/advanced/synchronizing.component.php:320
    -#: ../../enterprise/meta/advanced/synchronizing.group.php:194
    -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:85
    -#: ../../enterprise/meta/advanced/synchronizing.os.php:85
    -#: ../../enterprise/meta/advanced/synchronizing.tag.php:101
    +#: ../../godmode/massive/massive_copy_modules.php:223
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:182
    +#: ../../enterprise/meta/advanced/policymanager.sync.php:321
    +#: ../../enterprise/meta/advanced/synchronizing.alert.php:333
    +#: ../../enterprise/meta/advanced/synchronizing.component.php:311
    +#: ../../enterprise/meta/advanced/synchronizing.group.php:216
    +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:86
    +#: ../../enterprise/meta/advanced/synchronizing.os.php:82
    +#: ../../enterprise/meta/advanced/synchronizing.tag.php:99
     msgid "Targets"
     msgstr "対象"
     
    -#: ../../godmode/massive/massive_copy_modules.php:222
    +#: ../../godmode/massive/massive_copy_modules.php:276
    +#: ../../godmode/massive/massive_delete_modules.php:506
    +msgid "Filter Agents"
    +msgstr "エージェントフィルタ"
    +
    +#: ../../godmode/massive/massive_copy_modules.php:293
     msgid "To agent(s)"
     msgstr "適用先エージェント"
     
    -#: ../../godmode/massive/massive_copy_modules.php:453
    -#: ../../include/functions_agents.php:553
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:320
    +#: ../../godmode/massive/massive_copy_modules.php:535
    +#: ../../include/functions_agents.php:716
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:349
     msgid "No source agent to copy"
     msgstr "コピー元エージェントがありません。"
     
    -#: ../../godmode/massive/massive_copy_modules.php:461
    +#: ../../godmode/massive/massive_copy_modules.php:543
     msgid "No operation selected"
     msgstr "操作が選択されていません。"
     
    -#: ../../godmode/massive/massive_copy_modules.php:466
    -#: ../../include/functions_agents.php:583
    -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:325
    +#: ../../godmode/massive/massive_copy_modules.php:548
    +#: ../../include/functions_agents.php:747
    +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:354
     msgid "No modules have been selected"
     msgstr "モジュールが選択されていません。"
     
    -#: ../../godmode/massive/massive_copy_modules.php:471
    -#: ../../include/functions_agents.php:558
    +#: ../../godmode/massive/massive_copy_modules.php:553
    +#: ../../include/functions_agents.php:721
     msgid "No destiny agent(s) to copy"
     msgstr "コピー先エージェントがありません。"
     
    -#: ../../godmode/massive/massive_delete_action_alerts.php:56
    +#: ../../godmode/massive/massive_delete_action_alerts.php:60
     msgid "Could not be deleted. No agents selected"
     msgstr "削除できません。エージェントが選択されていません。"
     
    -#: ../../godmode/massive/massive_delete_action_alerts.php:81
    +#: ../../godmode/massive/massive_delete_action_alerts.php:88
     msgid "Could not be deleted. No alerts selected"
     msgstr "削除できません。アラートが選択されていません。"
     
    -#: ../../godmode/massive/massive_delete_action_alerts.php:124
    +#: ../../godmode/massive/massive_delete_action_alerts.php:135
     msgid "Could not be deleted. No action selected"
     msgstr "削除できません。アクションが選択されていません。"
     
    -#: ../../godmode/massive/massive_delete_agents.php:57
    +#: ../../godmode/massive/massive_delete_agents.php:60
     #, php-format
     msgid ""
     "There was an error deleting the agent, the operation has been cancelled "
     "Could not delete agent %s"
     msgstr "エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェント %s は削除できません。"
     
    -#: ../../godmode/massive/massive_delete_agents.php:63
    +#: ../../godmode/massive/massive_delete_agents.php:70
     #, php-format
     msgid "Successfully deleted (%s)"
     msgstr "削除しました。(%s)"
     
    -#: ../../godmode/massive/massive_delete_agents.php:123
    -#: ../../godmode/massive/massive_edit_agents.php:278
    +#: ../../godmode/massive/massive_delete_agents.php:153
    +#: ../../godmode/massive/massive_edit_agents.php:439
     msgid "Show agents"
     msgstr "エージェント表示"
     
    -#: ../../godmode/massive/massive_delete_modules.php:56
    +#: ../../godmode/massive/massive_delete_alerts.php:264
    +msgid "Show alerts on disabled modules"
    +msgstr "無効化モジュールのアラート表示"
    +
    +#: ../../godmode/massive/massive_delete_modules.php:67
     msgid "No module selected"
     msgstr "モジュールが選択されていません。"
     
    -#: ../../godmode/massive/massive_delete_modules.php:244
    +#: ../../godmode/massive/massive_delete_modules.php:137
     msgid ""
     "There was an error deleting the modules, the operation has been cancelled"
     msgstr "モジュール削除でエラーが発生しました。操作はキャンセルされます。"
     
    -#: ../../godmode/massive/massive_delete_modules.php:412
    -#: ../../godmode/massive/massive_edit_modules.php:249
    +#: ../../godmode/massive/massive_delete_modules.php:294
    +#: ../../godmode/massive/massive_edit_modules.php:274
     msgid "Selection mode"
     msgstr "選択モード"
     
    -#: ../../godmode/massive/massive_delete_modules.php:413
    -#: ../../godmode/massive/massive_edit_modules.php:250
    +#: ../../godmode/massive/massive_delete_modules.php:295
    +#: ../../godmode/massive/massive_edit_modules.php:275
     msgid "Select modules first "
     msgstr "モジュールを先に選択 "
     
    -#: ../../godmode/massive/massive_delete_modules.php:415
    -#: ../../godmode/massive/massive_edit_modules.php:252
    +#: ../../godmode/massive/massive_delete_modules.php:296
    +#: ../../godmode/massive/massive_edit_modules.php:276
     msgid "Select agents first "
     msgstr "エージェントを先に選択 "
     
    -#: ../../godmode/massive/massive_delete_modules.php:421
    -#: ../../godmode/massive/massive_edit_modules.php:259
    -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1387
    -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:144
    +#: ../../godmode/massive/massive_delete_modules.php:299
    +#: ../../godmode/massive/massive_edit_modules.php:279
    +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148
     msgid "Module type"
     msgstr "モジュールタイプ"
     
    -#: ../../godmode/massive/massive_delete_modules.php:430
    -#: ../../godmode/massive/massive_edit_modules.php:268
    +#: ../../godmode/massive/massive_delete_modules.php:319
    +#: ../../godmode/massive/massive_edit_modules.php:298
     msgid "Select all modules of this type"
     msgstr "このタイプの全てのモジュールを選択"
     
    -#: ../../godmode/massive/massive_delete_modules.php:451
    -#: ../../godmode/massive/massive_edit_modules.php:289
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:202
    +#: ../../godmode/massive/massive_delete_modules.php:348
    +#: ../../godmode/massive/massive_edit_modules.php:329
    +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:189
     msgid "Agent group"
     msgstr "エージェントグループ"
     
    -#: ../../godmode/massive/massive_delete_modules.php:459
    -#: ../../godmode/massive/massive_edit_modules.php:297
    +#: ../../godmode/massive/massive_delete_modules.php:363
    +#: ../../godmode/massive/massive_edit_modules.php:344
     msgid "Select all modules of this group"
     msgstr "このグループの全てのモジュールを選択"
     
    -#: ../../godmode/massive/massive_delete_modules.php:485
    -#: ../../godmode/massive/massive_edit_modules.php:302
    -msgid "Module Status"
    -msgstr "モジュールの状態"
    -
    -#: ../../godmode/massive/massive_delete_modules.php:504
    -#: ../../godmode/massive/massive_edit_modules.php:327
    +#: ../../godmode/massive/massive_delete_modules.php:455
    +#: ../../godmode/massive/massive_edit_modules.php:410
     msgid "When select modules"
     msgstr "モジュール選択時の動作"
     
    -#: ../../godmode/massive/massive_delete_modules.php:507
    -#: ../../godmode/massive/massive_edit_modules.php:330
    +#: ../../godmode/massive/massive_delete_modules.php:459
    +#: ../../godmode/massive/massive_edit_modules.php:414
     msgid "Show common agents"
     msgstr "共通エージェントの表示"
     
    -#: ../../godmode/massive/massive_delete_modules.php:508
    -#: ../../godmode/massive/massive_edit_modules.php:331
    +#: ../../godmode/massive/massive_delete_modules.php:460
    +#: ../../godmode/massive/massive_edit_modules.php:415
     msgid "Show all agents"
     msgstr "全エージェント表示"
     
    -#: ../../godmode/massive/massive_delete_profiles.php:61
    +#: ../../godmode/massive/massive_delete_modules.php:572
    +#: ../../godmode/massive/massive_edit_modules.php:1182
    +msgid "Please, select an agent first"
    +msgstr "エージェントを先に選択してください"
    +
    +#: ../../godmode/massive/massive_delete_profiles.php:60
     msgid "Not deleted. You must select an existing user"
     msgstr "削除できませんでした存在するユーザを選択してください。"
     
    -#: ../../godmode/massive/massive_delete_profiles.php:87
    +#: ../../godmode/massive/massive_delete_profiles.php:90
     msgid "Profiles deleted successfully"
     msgstr "プロファイルを削除しました。"
     
    -#: ../../godmode/massive/massive_delete_profiles.php:88
    +#: ../../godmode/massive/massive_delete_profiles.php:91
     msgid "Profiles cannot be deleted"
     msgstr "プロファイルを削除できませんでした。"
     
    -#: ../../godmode/massive/massive_delete_tags.php:107
    -msgid "No tag selected"
    -msgstr "タグが選択されていません"
    -
    -#: ../../godmode/massive/massive_edit_agents.php:97
    +#: ../../godmode/massive/massive_edit_agents.php:140
     msgid "No values changed"
     msgstr "値が変更されていません。"
     
    -#: ../../godmode/massive/massive_edit_agents.php:126
    +#: ../../godmode/massive/massive_edit_agents.php:185
     msgid "Configuration files deleted successfully"
     msgstr "設定ファイルを削除しました。"
     
    -#: ../../godmode/massive/massive_edit_agents.php:127
    +#: ../../godmode/massive/massive_edit_agents.php:186
     msgid "Configuration files cannot be deleted"
     msgstr "設定ファイルを削除できませんでした。"
     
    -#: ../../godmode/massive/massive_edit_agents.php:238
    +#: ../../godmode/massive/massive_edit_agents.php:376
     msgid "Agents updated successfully"
     msgstr "エージェントを更新しました。"
     
    -#: ../../godmode/massive/massive_edit_agents.php:239
    +#: ../../godmode/massive/massive_edit_agents.php:377
     msgid "Agents cannot be updated (maybe there was no field to update)"
     msgstr "エージェントが更新できません (更新するフィールドがない可能性があります)"
     
    -#: ../../godmode/massive/massive_edit_agents.php:349
    -#: ../../godmode/massive/massive_edit_agents.php:354
    -#: ../../godmode/massive/massive_edit_agents.php:358
    -#: ../../godmode/massive/massive_edit_agents.php:362
    -#: ../../godmode/massive/massive_edit_agents.php:373
    -#: ../../godmode/massive/massive_edit_agents.php:412
    -#: ../../godmode/massive/massive_edit_agents.php:419
    -#: ../../godmode/massive/massive_edit_agents.php:458
    -#: ../../godmode/massive/massive_edit_agents.php:467
    -#: ../../godmode/massive/massive_edit_agents.php:474
    -#: ../../godmode/massive/massive_edit_modules.php:426
    -#: ../../godmode/massive/massive_edit_modules.php:471
    -#: ../../godmode/massive/massive_edit_modules.php:486
    -#: ../../godmode/massive/massive_edit_modules.php:490
    -#: ../../godmode/massive/massive_edit_modules.php:516
    -#: ../../godmode/massive/massive_edit_modules.php:522
    -#: ../../godmode/massive/massive_edit_modules.php:530
    -#: ../../godmode/massive/massive_edit_modules.php:534
    -#: ../../godmode/massive/massive_edit_modules.php:537
    -#: ../../godmode/massive/massive_edit_modules.php:550
    -#: ../../godmode/massive/massive_edit_modules.php:569
    -#: ../../godmode/massive/massive_edit_modules.php:577
    -#: ../../godmode/massive/massive_edit_modules.php:590
    -#: ../../godmode/massive/massive_edit_modules.php:598
    -#: ../../godmode/massive/massive_edit_modules.php:604
    -#: ../../godmode/massive/massive_edit_modules.php:616
    -#: ../../godmode/massive/massive_edit_modules.php:635
    -#: ../../include/functions_html.php:637 ../../include/functions_html.php:715
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:27
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:259
    -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:278
    +#: ../../godmode/massive/massive_edit_agents.php:543
    +#: ../../godmode/massive/massive_edit_agents.php:551
    +#: ../../godmode/massive/massive_edit_agents.php:555
    +#: ../../godmode/massive/massive_edit_agents.php:563
    +#: ../../godmode/massive/massive_edit_agents.php:587
    +#: ../../godmode/massive/massive_edit_agents.php:634
    +#: ../../godmode/massive/massive_edit_agents.php:641
    +#: ../../godmode/massive/massive_edit_agents.php:682
    +#: ../../godmode/massive/massive_edit_agents.php:686
    +#: ../../godmode/massive/massive_edit_agents.php:695
    +#: ../../godmode/massive/massive_edit_agents.php:723
    +#: ../../godmode/massive/massive_edit_agents.php:794
    +#: ../../godmode/massive/massive_edit_modules.php:587
    +#: ../../godmode/massive/massive_edit_modules.php:656
    +#: ../../godmode/massive/massive_edit_modules.php:687
    +#: ../../godmode/massive/massive_edit_modules.php:696
    +#: ../../godmode/massive/massive_edit_modules.php:755
    +#: ../../godmode/massive/massive_edit_modules.php:773
    +#: ../../godmode/massive/massive_edit_modules.php:792
    +#: ../../godmode/massive/massive_edit_modules.php:796
    +#: ../../godmode/massive/massive_edit_modules.php:807
    +#: ../../godmode/massive/massive_edit_modules.php:827
    +#: ../../godmode/massive/massive_edit_modules.php:852
    +#: ../../godmode/massive/massive_edit_modules.php:864
    +#: ../../godmode/massive/massive_edit_modules.php:925
    +#: ../../godmode/massive/massive_edit_modules.php:971
    +#: ../../godmode/massive/massive_edit_modules.php:989
    +#: ../../godmode/massive/massive_edit_modules.php:995
    +#: ../../godmode/massive/massive_edit_modules.php:1008
    +#: ../../godmode/massive/massive_edit_modules.php:1036
    +#: ../../include/functions_html.php:802 ../../include/functions_html.php:903
    +#: ../../include/functions_html.php:1035
    +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:493
    +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:507
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:438
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:507
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:538
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:547
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:606
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:629
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:650
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:654
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:665
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:685
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:710
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:726
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:787
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:828
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:847
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:875
    +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:28
    +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:300
    +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:315
     msgid "No change"
     msgstr "変更無し"
     
    -#: ../../godmode/massive/massive_edit_agents.php:427
    +#: ../../godmode/massive/massive_edit_agents.php:643
    +msgid "Active"
    +msgstr "有効"
    +
    +#: ../../godmode/massive/massive_edit_agents.php:649
     msgid "Delete available remote configurations"
     msgstr "リモート設定の削除"
     
    -#: ../../godmode/massive/massive_edit_agents.php:459
    +#: ../../godmode/massive/massive_edit_agents.php:682
     msgid "Without status"
     msgstr "状態不明"
     
    -#: ../../godmode/massive/massive_edit_agents.php:461
    -#: ../../godmode/update_manager/update_manager.offline.php:73
    -#: ../../include/functions_config.php:596
    -#: ../../include/functions_config.php:1793
    -#: ../../include/functions_update_manager.php:373
    -#: ../../operation/gis_maps/render_view.php:151
    -#: ../../enterprise/dashboard/widgets/service_map.php:86
    -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:355
    -#: ../../enterprise/include/functions_update_manager.php:205
    -#: ../../enterprise/load_enterprise.php:386
    -#: ../../enterprise/load_enterprise.php:804
    -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:37
    -#: ../../enterprise/operation/agentes/transactional_map.php:255
    -#: ../../enterprise/operation/services/services.list.php:170
    -#: ../../enterprise/operation/services/services.list.php:399
    -#: ../../enterprise/operation/services/services.service.php:177
    -#: ../../enterprise/operation/services/services.service_map.php:126
    -#: ../../enterprise/operation/services/services.table_services.php:139
    +#: ../../godmode/massive/massive_edit_agents.php:682
    +#: ../../godmode/update_manager/update_manager.offline.php:95
    +#: ../../include/functions_config.php:1167
    +#: ../../include/functions_config.php:2796
    +#: ../../include/functions_update_manager.php:1399
    +#: ../../operation/gis_maps/render_view.php:153
    +#: ../../enterprise/dashboard/widgets/service_map.php:102
    +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:415
    +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2722
    +#: ../../enterprise/include/class/Omnishell.class.php:1446
    +#: ../../enterprise/include/functions_update_manager.php:245
    +#: ../../enterprise/load_enterprise.php:424
    +#: ../../enterprise/load_enterprise.php:919
    +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:47
    +#: ../../enterprise/operation/agentes/transactional_map.php:312
    +#: ../../enterprise/operation/services/services.list.php:189
    +#: ../../enterprise/operation/services/services.list.php:466
    +#: ../../enterprise/operation/services/services.service.php:212
    +#: ../../enterprise/operation/services/services.service_map.php:172
    +#: ../../enterprise/operation/services/services.table_services.php:168
     msgid "Ok"
     msgstr "正常"
     
    -#: ../../godmode/massive/massive_edit_agents.php:462
    -#: ../../enterprise/dashboard/widgets/maps_status.php:77
    +#: ../../godmode/massive/massive_edit_agents.php:682
    +#: ../../enterprise/dashboard/widgets/maps_status.php:90
     msgid "Bad"
     msgstr "障害"
     
    -#: ../../godmode/massive/massive_edit_modules.php:115
    +#: ../../godmode/massive/massive_edit_agents.php:709
    +#, php-format
    +msgid ""
    +"This mode allow %s to disable all modules \n"
    +"of this agent while the selected module is on CRITICAL status"
    +msgstr "このモードは、選択したモジュールが障害状態の際に、%s がこのエージェントの全モジュールを無効化します。"
    +
    +#: ../../godmode/massive/massive_edit_modules.php:119
     msgid "Error updating the modules from a module type"
     msgstr "モジュールタイプからのモジュール更新エラー"
     
    -#: ../../godmode/massive/massive_edit_modules.php:137
    +#: ../../godmode/massive/massive_edit_modules.php:142
     msgid "Error updating the modules from an agent group"
     msgstr "エージェントグループからのモジュール更新エラー"
     
    -#: ../../godmode/massive/massive_edit_modules.php:157
    +#: ../../godmode/massive/massive_edit_modules.php:160
     msgid "Error updating the modules (maybe there was no field to update)"
     msgstr "モジュール更新エラー (更新するフィールドがない可能性があります)"
     
    -#: ../../godmode/massive/massive_edit_modules.php:340
    +#: ../../godmode/massive/massive_edit_modules.php:440
    +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:98
     msgid "Agent Status"
     msgstr "エージェントの状態"
     
    -#: ../../godmode/massive/massive_edit_modules.php:377
    -#: ../../godmode/modules/manage_network_components_form_common.php:107
    -#: ../../enterprise/godmode/modules/configure_local_component.php:226
    +#: ../../godmode/massive/massive_edit_modules.php:478
    +#: ../../enterprise/dashboard/widgets/tree_view.php:80
    +msgid "Filter agents"
    +msgstr "エージェントフィルタ"
    +
    +#: ../../godmode/massive/massive_edit_modules.php:524
    +#: ../../godmode/modules/manage_network_components_form_common.php:157
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:375
    +#: ../../enterprise/godmode/modules/configure_local_component.php:286
     msgid "Dynamic Interval"
     msgstr "動的間隔"
     
    -#: ../../godmode/massive/massive_edit_modules.php:379
    +#: ../../godmode/massive/massive_edit_modules.php:526
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:377
     msgid "Dynamic Min."
     msgstr "動的最小値"
     
    -#: ../../godmode/massive/massive_edit_modules.php:382
    -#: ../../godmode/modules/manage_network_components_form_common.php:113
    -#: ../../enterprise/godmode/modules/configure_local_component.php:232
    +#: ../../godmode/massive/massive_edit_modules.php:528
    +#: ../../godmode/modules/manage_network_components_form_common.php:163
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:379
    +#: ../../enterprise/godmode/modules/configure_local_component.php:292
     msgid "Dynamic Max."
     msgstr "動的最大値"
     
    -#: ../../godmode/massive/massive_edit_modules.php:385
    -#: ../../godmode/modules/manage_network_components_form_common.php:115
    -#: ../../enterprise/godmode/modules/configure_local_component.php:234
    +#: ../../godmode/massive/massive_edit_modules.php:530
    +#: ../../godmode/modules/manage_network_components_form_common.php:165
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:381
    +#: ../../enterprise/godmode/modules/configure_local_component.php:294
     msgid "Dynamic Two Tailed: "
     msgstr "2つの動的しきい値 "
     
    -#: ../../godmode/massive/massive_edit_modules.php:501
    +#: ../../godmode/massive/massive_edit_modules.php:724
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575
     msgid "SMNP community"
     msgstr "SNMPコミュニティ"
     
    -#: ../../godmode/massive/massive_edit_modules.php:603
    +#: ../../godmode/massive/massive_edit_modules.php:926
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:788
    +msgid "Active Counters"
    +msgstr "アクティブカウンター"
    +
    +#: ../../godmode/massive/massive_edit_modules.php:927
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:789
    +msgid "Inactive Counters"
    +msgstr "非アクティブカウンター"
    +
    +#: ../../godmode/massive/massive_edit_modules.php:994
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833
     msgid "Policy linking status"
     msgstr "ポリシーリンク状態"
     
    -#: ../../godmode/massive/massive_edit_modules.php:603
    +#: ../../godmode/massive/massive_edit_modules.php:994
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:833
     msgid "This field only has sense in modules adopted by a policy."
     msgstr "このフィールドは、ポリシーに関連づけられたモジュールにのみ影響します。"
     
    -#: ../../godmode/massive/massive_edit_modules.php:604
    +#: ../../godmode/massive/massive_edit_modules.php:995
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:834
     msgid "Linked"
     msgstr "リンク済"
     
    -#: ../../godmode/massive/massive_edit_modules.php:634
    +#: ../../godmode/massive/massive_edit_modules.php:1033
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:872
     msgid "The module still store data but the alerts and events will be stop"
     msgstr "モジュールはデータを保存しますが、アラートとイベントは停止します"
     
    -#: ../../godmode/massive/massive_edit_modules.php:650
    -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:60
    -#: ../../enterprise/include/functions_enterprise.php:295
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:493
    -#: ../../enterprise/meta/include/functions_wizard_meta.php:544
    +#: ../../godmode/massive/massive_edit_modules.php:1069
    +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:63
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:909
    +#: ../../enterprise/include/functions_enterprise.php:321
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:609
    +#: ../../enterprise/meta/include/functions_wizard_meta.php:666
     msgid "Web checks"
     msgstr "ウェブチェック"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:151
    +#: ../../godmode/massive/massive_edit_modules.php:1141
    +#: ../../godmode/modules/manage_network_components_form_network.php:246
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:978
    +msgid "Linux"
    +msgstr "Linux"
    +
    +#: ../../godmode/massive/massive_edit_modules.php:1142
    +#: ../../godmode/modules/manage_network_components_form_network.php:247
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:979
    +msgid "Windows"
    +msgstr "Windows"
    +
    +#: ../../godmode/massive/massive_edit_modules.php:1145
    +#: ../../godmode/modules/manage_network_components_form_network.php:250
    +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:982
    +msgid "Target OS"
    +msgstr "対象 OS"
    +
    +#: ../../godmode/massive/massive_edit_plugins.php:162
     msgid "Error retrieving the plugin macros"
     msgstr "プラグインマクロ検索エラー"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:158
    +#: ../../godmode/massive/massive_edit_plugins.php:170
     msgid "Error retrieving the modified macros"
     msgstr "編集済マクロ検索エラー"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:172
    +#: ../../godmode/massive/massive_edit_plugins.php:193
     msgid "Error retrieving the module plugin macros"
     msgstr "モジュールプラグインマクロ検索エラー"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:190
    +#: ../../godmode/massive/massive_edit_plugins.php:211
     msgid "Error retrieving the module plugin macros data"
     msgstr "モジュールプラグインマクロデータ検索エラー"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:224
    +#: ../../godmode/massive/massive_edit_plugins.php:249
     msgid "Error building the new macros"
     msgstr "新規マクロ作成エラー"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:253
    +#: ../../godmode/massive/massive_edit_plugins.php:278
     #, php-format
     msgid "%d modules updated"
     msgstr "%d個のモジュールを更新しました。"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:272
    +#: ../../godmode/massive/massive_edit_plugins.php:299
     msgid "There are not registered plugins"
     msgstr "登録済のプラグインがありません"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:421
    +#: ../../godmode/massive/massive_edit_plugins.php:476
     msgid "Invalid plugin data"
     msgstr "不正なプラグインデータ"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:528
    +#: ../../godmode/massive/massive_edit_plugins.php:583
     msgid "Clear"
     msgstr "消去"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:556
    +#: ../../godmode/massive/massive_edit_plugins.php:611
     msgid "Invalid macros array"
     msgstr "マクロ配列が不正です"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:581
    +#: ../../godmode/massive/massive_edit_plugins.php:636
     msgid "Multiple values"
     msgstr "複数の値"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:613
    -#: ../../godmode/massive/massive_edit_plugins.php:750
    -#: ../../godmode/massive/massive_edit_plugins.php:766
    +#: ../../godmode/massive/massive_edit_plugins.php:668
    +#: ../../godmode/massive/massive_edit_plugins.php:804
    +#: ../../godmode/massive/massive_edit_plugins.php:820
     msgid "Invalid agents array"
     msgstr "エージェント配列が不正です"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:629
    +#: ../../godmode/massive/massive_edit_plugins.php:684
     msgid "Invalid agent element"
     msgstr "エージェントの要素が不正です"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:640
    +#: ../../godmode/massive/massive_edit_plugins.php:695
     msgid "Invalid modules array"
     msgstr "モジュール配列が不正です"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:668
    +#: ../../godmode/massive/massive_edit_plugins.php:723
     msgid "Invalid module element"
     msgstr "モジュールの要素が不正です"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:813
    -#: ../../godmode/massive/massive_edit_plugins.php:814
    -#: ../../include/ajax/double_auth.ajax.php:250
    -#: ../../include/ajax/double_auth.ajax.php:347
    -#: ../../include/ajax/double_auth.ajax.php:392
    -#: ../../include/ajax/double_auth.ajax.php:507
    -#: ../../include/functions.php:1043 ../../include/functions_ui.php:233
    -#: ../../include/functions_events.php:1176
    -#: ../../include/functions_events.php:1426
    -#: ../../operation/users/user_edit.php:707
    -#: ../../operation/users/user_edit.php:772
    -#: ../../enterprise/dashboard/main_dashboard.php:380
    -#: ../../enterprise/dashboard/main_dashboard.php:476
    -#: ../../enterprise/include/functions_login.php:98
    -#: ../../enterprise/meta/include/functions_ui_meta.php:779
    +#: ../../godmode/massive/massive_edit_plugins.php:867
    +#: ../../godmode/massive/massive_edit_plugins.php:868
    +#: ../../include/ajax/double_auth.ajax.php:246
    +#: ../../include/ajax/double_auth.ajax.php:343
    +#: ../../include/ajax/double_auth.ajax.php:388
    +#: ../../include/ajax/double_auth.ajax.php:503
    +#: ../../include/class/Diagnostics.class.php:1818
    +#: ../../include/functions.php:1234 ../../include/functions_events.php:2693
    +#: ../../include/functions_events.php:3043
    +#: ../../include/functions_events.php.orig:2599
    +#: ../../include/functions_events.php.orig:2949
    +#: ../../include/functions_ui.php:283 ../../operation/users/user_edit.php:980
    +#: ../../operation/users/user_edit.php:1046
    +#: ../../enterprise/dashboard/main_dashboard.php:421
    +#: ../../enterprise/dashboard/main_dashboard.php:509
    +#: ../../enterprise/include/functions_login.php:104
    +#: ../../enterprise/meta/include/functions_ui_meta.php:875
     msgid "Error"
     msgstr "エラー"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:876
    +#: ../../godmode/massive/massive_edit_plugins.php:930
     msgid "There are no modules using this plugin"
     msgstr "このプラグインを使っているモジュールはありません"
     
    -#: ../../godmode/massive/massive_edit_plugins.php:959
    +#: ../../godmode/massive/massive_edit_plugins.php:1013
     msgid "There was a problem loading the module plugin macros data"
     msgstr "モジュールプラグインマクロデータのロード中に問題が発生しました"
     
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:154
    +#: ../../godmode/massive/massive_enable_disable_alerts.php:172
     msgid "Enabled alerts"
     msgstr "有効なアラート"
     
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:154
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:171
    -#: ../../godmode/massive/massive_standby_alerts.php:154
    -#: ../../godmode/massive/massive_standby_alerts.php:171
    -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:93
    +#: ../../godmode/massive/massive_enable_disable_alerts.php:172
    +#: ../../godmode/massive/massive_enable_disable_alerts.php:207
    +#: ../../godmode/massive/massive_standby_alerts.php:184
    +#: ../../godmode/massive/massive_standby_alerts.php:219
    +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:121
     msgid "Format"
     msgstr "フォーマット"
     
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:165
    +#: ../../godmode/massive/massive_enable_disable_alerts.php:201
     msgid "Disable selected alerts"
     msgstr "選択したアラートを無効にする"
     
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:169
    +#: ../../godmode/massive/massive_enable_disable_alerts.php:205
     msgid "Enable selected alerts"
     msgstr "選択したアラートを有効にする"
     
    -#: ../../godmode/massive/massive_enable_disable_alerts.php:171
    +#: ../../godmode/massive/massive_enable_disable_alerts.php:207
     msgid "Disabled alerts"
     msgstr "無効なアラート"
     
    -#: ../../godmode/massive/massive_operations.php:36
    +#: ../../godmode/massive/massive_operations.php:37
     msgid "Bulk alert add"
     msgstr "一括アラート追加"
     
    -#: ../../godmode/massive/massive_operations.php:37
    +#: ../../godmode/massive/massive_operations.php:38
     msgid "Bulk alert delete"
     msgstr "一括アラート削除"
     
    -#: ../../godmode/massive/massive_operations.php:38
    +#: ../../godmode/massive/massive_operations.php:39
     msgid "Bulk alert actions add"
     msgstr "一括アラートアクション追加"
     
    -#: ../../godmode/massive/massive_operations.php:39
    +#: ../../godmode/massive/massive_operations.php:40
     msgid "Bulk alert actions delete"
     msgstr "一括アラートアクション削除"
     
    -#: ../../godmode/massive/massive_operations.php:40
    +#: ../../godmode/massive/massive_operations.php:41
     msgid "Bulk alert enable/disable"
     msgstr "一括アラート有効化/無効化"
     
    -#: ../../godmode/massive/massive_operations.php:41
    +#: ../../godmode/massive/massive_operations.php:42
     msgid "Bulk alert setting standby"
     msgstr "一括アラートスタンバイ設定"
     
    -#: ../../godmode/massive/massive_operations.php:44
    +#: ../../godmode/massive/massive_operations.php:46
     msgid "Bulk agent edit"
     msgstr "一括エージェント編集"
     
    -#: ../../godmode/massive/massive_operations.php:45
    +#: ../../godmode/massive/massive_operations.php:47
     msgid "Bulk agent delete"
     msgstr "一括エージェント削除"
     
    -#: ../../godmode/massive/massive_operations.php:49
    +#: ../../godmode/massive/massive_operations.php:52
     msgid "Bulk profile add"
     msgstr "一括プロファイル追加"
     
    -#: ../../godmode/massive/massive_operations.php:50
    +#: ../../godmode/massive/massive_operations.php:53
     msgid "Bulk profile delete"
     msgstr "一括プロファイル削除"
     
    -#: ../../godmode/massive/massive_operations.php:57
    -msgid "Bulk module delete"
    -msgstr "一括モジュール削除"
    -
    -#: ../../godmode/massive/massive_operations.php:58
    +#: ../../godmode/massive/massive_operations.php:60
     msgid "Bulk module edit"
     msgstr "一括モジュール編集"
     
    -#: ../../godmode/massive/massive_operations.php:59
    +#: ../../godmode/massive/massive_operations.php:61
     msgid "Bulk module copy"
     msgstr "一括モジュールコピー"
     
     #: ../../godmode/massive/massive_operations.php:62
    +msgid "Bulk module delete"
    +msgstr "一括モジュール削除"
    +
    +#: ../../godmode/massive/massive_operations.php:66
     msgid "Bulk plugin edit"
     msgstr "一括プラグイン編集"
     
    -#: ../../godmode/massive/massive_operations.php:155 ../../godmode/menu.php:122
    +#: ../../godmode/massive/massive_operations.php:165 ../../godmode/menu.php:168
     msgid "Alerts operations"
     msgstr "アラート操作"
     
    -#: ../../godmode/massive/massive_operations.php:160 ../../godmode/menu.php:120
    +#: ../../godmode/massive/massive_operations.php:173 ../../godmode/menu.php:165
     msgid "Users operations"
     msgstr "ユーザ操作"
     
    -#: ../../godmode/massive/massive_operations.php:165 ../../godmode/menu.php:116
    +#: ../../godmode/massive/massive_operations.php:181 ../../godmode/menu.php:161
     msgid "Agents operations"
     msgstr "エージェント操作"
     
    -#: ../../godmode/massive/massive_operations.php:170 ../../godmode/menu.php:117
    +#: ../../godmode/massive/massive_operations.php:189 ../../godmode/menu.php:162
     msgid "Modules operations"
     msgstr "モジュール操作"
     
    -#: ../../godmode/massive/massive_operations.php:175 ../../godmode/menu.php:118
    +#: ../../godmode/massive/massive_operations.php:197 ../../godmode/menu.php:163
     msgid "Plugins operations"
     msgstr "プラグイン操作"
     
    -#: ../../godmode/massive/massive_operations.php:215 ../../godmode/menu.php:111
    +#: ../../godmode/massive/massive_operations.php:243 ../../godmode/menu.php:156
     msgid "Bulk operations"
     msgstr "一括操作"
     
    -#: ../../godmode/massive/massive_operations.php:223
    -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:203
    +#: ../../godmode/massive/massive_operations.php:258
    +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200
     msgid ""
     "In order to perform massive operations, PHP needs a correct configuration in "
     "timeout parameters. Please, open your PHP configuration file (php.ini) for "
    @@ -13121,289 +14674,324 @@ msgstr ""
     "/etc/php5/apache2/php.ini;
    )タイムアウトパラメータを次のように設定してください。
    " "max_execution_time = 0max_input_time = -1" -#: ../../godmode/massive/massive_operations.php:239 +#: ../../godmode/massive/massive_operations.php:263 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:25 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:27 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:28 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:25 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:27 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:27 +#: ../../enterprise/godmode/policies/policies.php:292 +msgid "" +"This node is configured with centralized mode. All policies information is " +"read only. Go to metaconsole to manage it." +msgstr "このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専用です。管理はメタコンソールで行います。" + +#: ../../godmode/massive/massive_operations.php:279 msgid "Please wait..." msgstr "お待ちください..." -#: ../../godmode/massive/massive_operations.php:276 +#: ../../godmode/massive/massive_operations.php:325 msgid "The blank fields will not be updated" msgstr "未入力の項目は更新されません。" -#: ../../godmode/massive/massive_standby_alerts.php:154 +#: ../../godmode/massive/massive_standby_alerts.php:184 msgid "Not standby alerts" msgstr "非スタンバイ状態アラート" -#: ../../godmode/massive/massive_standby_alerts.php:165 -#: ../../godmode/massive/massive_standby_alerts.php:169 +#: ../../godmode/massive/massive_standby_alerts.php:213 +#: ../../godmode/massive/massive_standby_alerts.php:217 msgid "Set standby selected alerts" msgstr "選択したアラートをスタンバイ状態にする" -#: ../../godmode/massive/massive_standby_alerts.php:171 +#: ../../godmode/massive/massive_standby_alerts.php:219 msgid "Standby alerts" msgstr "スタンバイ状態アラート" -#: ../../godmode/menu.php:29 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:200 -msgid "Manage agents" -msgstr "エージェント管理" +#: ../../godmode/menu.php:31 ../../godmode/setup/setup_ehorus.php:111 +#: ../../godmode/setup/setup_integria.php:496 +#: ../../operation/users/user_edit.php:700 +#: ../../enterprise/dashboard/main_dashboard.php:554 +#: ../../enterprise/include/functions_dashboard.php:1122 +#: ../../enterprise/operation/agentes/transactional_map.php:361 +msgid "Start" +msgstr "開始" -#: ../../godmode/menu.php:39 -#: ../../enterprise/meta/include/functions_components_meta.php:48 -#: ../../enterprise/meta/include/functions_components_meta.php:66 +#: ../../godmode/menu.php:33 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:101 +msgid "Task list" +msgstr "タスク一覧" + +#: ../../godmode/menu.php:41 +msgid "Network scan" +msgstr "ネットワークスキャン" + +#: ../../godmode/menu.php:43 +msgid "Custom network scan" +msgstr "カスタムネットワークスキャン" + +#: ../../godmode/menu.php:47 +msgid "Manage scan scripts" +msgstr "スキャンスクリプト管理" + +#: ../../godmode/menu.php:50 ../../godmode/wizards/HostDevices.class.php:203 +msgid "Host & devices" +msgstr "ホスト & デバイス" + +#: ../../godmode/menu.php:62 ../../godmode/servers/discovery.php:54 +#: ../../godmode/wizards/HostDevices.class.php:189 +#: ../../enterprise/godmode/wizards/Applications.class.php:148 +#: ../../enterprise/godmode/wizards/Cloud.class.php:178 +#: ../../enterprise/include/class/Aws.cloud.php:137 +#: ../../enterprise/include/class/Azure.cloud.php:179 +#: ../../enterprise/include/class/DeploymentCenter.class.php:549 +msgid "Discovery" +msgstr "自動検出" + +#: ../../godmode/menu.php:80 +#: ../../enterprise/meta/include/functions_components_meta.php:56 +#: ../../enterprise/meta/include/functions_components_meta.php:80 msgid "Component groups" msgstr "コンポーネントグループ管理" -#: ../../godmode/menu.php:42 +#: ../../godmode/menu.php:83 msgid "Module categories" msgstr "モジュールカテゴリ" -#: ../../godmode/menu.php:46 +#: ../../godmode/menu.php:87 msgid "Module types" msgstr "モジュールタイプ" -#: ../../godmode/menu.php:56 ../../godmode/netflow/nf_edit.php:48 -#: ../../godmode/netflow/nf_edit.php:52 -#: ../../godmode/netflow/nf_edit_form.php:66 -#: ../../godmode/netflow/nf_edit_form.php:71 +#: ../../godmode/menu.php:97 ../../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 msgid "Netflow filters" msgstr "Netflow フィルタ" -#: ../../godmode/menu.php:62 -msgid "Resources" -msgstr "リソース" - -#: ../../godmode/menu.php:70 +#: ../../godmode/menu.php:111 msgid "Manage agents groups" msgstr "エージェントグループ管理" -#: ../../godmode/menu.php:76 -#: ../../enterprise/extensions/disabled/check_acls.php:122 +#: ../../godmode/menu.php:117 +#: ../../enterprise/extensions/disabled/check_acls.php:140 msgid "Module tags" msgstr "モジュールタグ" -#: ../../godmode/menu.php:83 ../../godmode/users/profile_list.php:312 -#: ../../enterprise/extensions/disabled/check_acls.php:51 -#: ../../enterprise/extensions/disabled/check_acls.php:131 +#: ../../godmode/menu.php:125 ../../godmode/users/profile_list.php:286 +#: ../../enterprise/extensions/disabled/check_acls.php:56 +#: ../../enterprise/extensions/disabled/check_acls.php:149 msgid "Users management" msgstr "ユーザ管理" -#: ../../godmode/menu.php:85 ../../godmode/users/configure_profile.php:45 -#: ../../godmode/users/configure_user.php:88 -#: ../../godmode/users/profile_list.php:49 -#: ../../godmode/users/user_list.php:117 -#: ../../enterprise/meta/include/functions_users_meta.php:172 -#: ../../enterprise/meta/include/functions_users_meta.php:193 +#: ../../godmode/menu.php:127 ../../godmode/users/configure_profile.php:44 +#: ../../godmode/users/configure_user.php:87 +#: ../../godmode/users/profile_list.php:48 +#: ../../godmode/users/user_list.php:139 +#: ../../enterprise/meta/include/functions_users_meta.php:186 +#: ../../enterprise/meta/include/functions_users_meta.php:212 msgid "Profile management" msgstr "プロファイル管理" -#: ../../godmode/menu.php:91 ../../godmode/users/profile_list.php:302 -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 -#: ../../enterprise/meta/advanced/synchronizing.user.php:578 +#: ../../godmode/menu.php:133 ../../godmode/users/profile_list.php:276 +#: ../../enterprise/godmode/setup/setup_auth.php:224 +#: ../../enterprise/godmode/setup/setup_auth.php:977 +#: ../../enterprise/meta/advanced/synchronizing.user.php:635 msgid "Profiles" msgstr "プロファイル" -#: ../../godmode/menu.php:98 -#: ../../enterprise/meta/include/functions_components_meta.php:56 -#: ../../enterprise/meta/include/functions_components_meta.php:72 +#: ../../godmode/menu.php:140 +#: ../../enterprise/meta/include/functions_components_meta.php:64 +#: ../../enterprise/meta/include/functions_components_meta.php:88 msgid "Network components" msgstr "コンポーネント管理" -#: ../../godmode/menu.php:145 +#: ../../godmode/menu.php:192 msgid "List of Alerts" msgstr "アラート一覧" -#: ../../godmode/menu.php:160 -#: ../../enterprise/meta/include/functions_alerts_meta.php:115 -#: ../../enterprise/meta/include/functions_alerts_meta.php:131 +#: ../../godmode/menu.php:204 +#: ../../enterprise/meta/include/functions_alerts_meta.php:129 +#: ../../enterprise/meta/include/functions_alerts_meta.php:148 msgid "Commands" msgstr "コマンド" -#: ../../godmode/menu.php:170 ../../include/functions_menu.php:533 +#: ../../godmode/menu.php:212 ../../include/functions_menu.php:544 msgid "SNMP alerts" msgstr "SNMPアラート" -#: ../../godmode/menu.php:180 +#: ../../godmode/menu.php:223 msgid "Event filters" msgstr "イベントフィルタ" -#: ../../godmode/menu.php:185 +#: ../../godmode/menu.php:228 msgid "Custom events" msgstr "カスタムイベント" -#: ../../godmode/menu.php:192 ../../include/functions_graph.php:846 -#: ../../include/functions_graph.php:4622 -#: ../../include/functions_graph.php:5507 -#: ../../include/functions_reporting_html.php:1624 -#: ../../include/functions_reports.php:621 -#: ../../include/functions_reports.php:623 -#: ../../include/functions_reports.php:625 -#: ../../mobile/include/functions_web.php:24 -#: ../../mobile/operation/events.php:564 ../../mobile/operation/home.php:44 -#: ../../operation/events/events.php:446 ../../operation/events/events.php:455 -#: ../../operation/menu.php:305 -#: ../../enterprise/dashboard/widgets/events_list.php:26 -#: ../../enterprise/extensions/ipam/ipam_massive.php:76 -#: ../../enterprise/extensions/ipam/ipam_network.php:539 -#: ../../enterprise/godmode/reporting/cluster_view.php:443 -#: ../../enterprise/include/functions_reporting_pdf.php:799 -#: ../../enterprise/meta/general/logon_ok.php:43 -#: ../../enterprise/meta/general/main_header.php:123 -#: ../../enterprise/meta/monitoring/tactical.php:312 +#: ../../godmode/menu.php:235 ../../include/functions.php:3781 +#: ../../include/functions_reports.php:827 +#: ../../include/functions_reports.php:831 +#: ../../include/functions_reports.php:835 +#: ../../include/functions_reporting_html.php:1927 +#: ../../mobile/include/functions_web.php:23 +#: ../../mobile/operation/events.php:609 ../../mobile/operation/home.php:51 +#: ../../operation/events/events.php:791 ../../operation/events/events.php:806 +#: ../../operation/menu.php:360 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../enterprise/extensions/ipam/ipam_network.php:327 +#: ../../enterprise/godmode/reporting/cluster_view.php:504 +#: ../../enterprise/meta/general/logon_ok.php:57 +#: ../../enterprise/meta/general/main_header.php:145 +#: ../../enterprise/meta/monitoring/tactical.php:272 msgid "Events" msgstr "イベント" -#: ../../godmode/menu.php:201 -#: ../../godmode/reporting/visual_console_builder.wizard.php:246 -#: ../../mobile/include/functions_web.php:27 -#: ../../enterprise/meta/advanced/policymanager.apply.php:202 +#: ../../godmode/menu.php:244 +#: ../../godmode/reporting/visual_console_builder.wizard.php:353 +#: ../../mobile/include/functions_web.php:26 +#: ../../enterprise/meta/advanced/policymanager.apply.php:200 msgid "Servers" msgstr "サーバ" -#: ../../godmode/menu.php:207 +#: ../../godmode/menu.php:251 msgid "Manage servers" msgstr "サーバ管理" -#: ../../godmode/menu.php:212 ../../include/functions_groups.php:92 -#: ../../operation/agentes/pandora_networkmap.editor.php:249 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:106 -msgid "Recon task" -msgstr "自動検出タスク" - -#: ../../godmode/menu.php:215 -#: ../../enterprise/godmode/agentes/plugins_manager.php:143 -#: ../../enterprise/godmode/policies/policy_plugins.php:87 +#: ../../godmode/menu.php:259 +#: ../../enterprise/godmode/agentes/plugins_manager.php:120 +#: ../../enterprise/godmode/policies/policies.php:551 +#: ../../enterprise/godmode/policies/policy_plugins.php:119 msgid "Plugins" msgstr "プラグイン" -#: ../../godmode/menu.php:218 -#: ../../godmode/servers/manage_recontask_form.php:281 -msgid "Recon script" -msgstr "自動検出スクリプト" - -#: ../../godmode/menu.php:244 +#: ../../godmode/menu.php:285 +#: ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "基本設定" -#: ../../godmode/menu.php:253 ../../godmode/setup/setup.php:82 -#: ../../godmode/setup/setup.php:116 -#: ../../enterprise/meta/advanced/metasetup.php:70 -#: ../../enterprise/meta/advanced/metasetup.php:127 +#: ../../godmode/menu.php:294 ../../godmode/setup/setup.php:98 +#: ../../godmode/setup/setup.php:155 +#: ../../enterprise/meta/advanced/metasetup.php:74 +#: ../../enterprise/meta/advanced/metasetup.php:168 msgid "Authentication" msgstr "認証" -#: ../../godmode/menu.php:256 ../../godmode/setup/setup.php:86 -#: ../../godmode/setup/setup.php:120 -#: ../../enterprise/meta/advanced/metasetup.performance.php:73 +#: ../../godmode/menu.php:297 ../../godmode/setup/setup.php:103 +#: ../../godmode/setup/setup.php:160 +#: ../../enterprise/meta/advanced/metasetup.performance.php:71 msgid "Performance" msgstr "パフォーマンス" -#: ../../godmode/menu.php:259 ../../godmode/setup/setup.php:90 -#: ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:300 ../../godmode/setup/setup.php:108 +#: ../../godmode/setup/setup.php:166 +#: ../../enterprise/meta/advanced/metasetup.visual.php:90 msgid "Visual styles" msgstr "画面設定" -#: ../../godmode/menu.php:264 ../../godmode/setup/setup.php:96 -#: ../../godmode/setup/setup.php:129 ../../include/functions_reports.php:642 -#: ../../include/functions_reports.php:644 -#: ../../include/functions_reports.php:646 -#: ../../include/functions_reports.php:648 -#: ../../include/functions_reports.php:650 -#: ../../enterprise/include/functions_enterprise.php:289 -#: ../../enterprise/meta/general/main_header.php:199 +#: ../../godmode/menu.php:305 ../../godmode/setup/setup.php:115 +#: ../../godmode/setup/setup.php:171 ../../include/functions_reports.php:862 +#: ../../include/functions_reports.php:866 +#: ../../include/functions_reports.php:870 +#: ../../enterprise/include/functions_enterprise.php:313 +#: ../../enterprise/meta/general/main_header.php:264 msgid "Netflow" msgstr "Netflow" -#: ../../godmode/menu.php:269 ../../godmode/setup/setup.php:102 -#: ../../godmode/setup/setup.php:133 -#: ../../operation/agentes/ver_agente.php:1183 +#: ../../godmode/menu.php:310 ../../godmode/setup/setup.php:127 +#: ../../godmode/setup/setup.php:176 +#: ../../operation/agentes/ver_agente.php:1301 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:273 ../../godmode/setup/gis.php:32 +#: ../../godmode/menu.php:313 ../../godmode/setup/setup.php:122 +#: ../../godmode/setup/setup.php:182 ../../godmode/setup/setup_integria.php:510 +msgid "Integria IMS" +msgstr "Integria IMS" + +#: ../../godmode/menu.php:316 ../../godmode/setup/setup.php:133 +#: ../../godmode/setup/setup.php:188 +msgid "Notifications" +msgstr "通知" + +#: ../../godmode/menu.php:319 +msgid "Websocket Engine" +msgstr "Websocket エンジン" + +#: ../../godmode/menu.php:323 ../../godmode/setup/gis.php:33 msgid "Map conections GIS" msgstr "GIS 利用マップ" -#: ../../godmode/menu.php:277 ../../godmode/setup/os.php:143 +#: ../../godmode/menu.php:327 ../../godmode/setup/os.php:147 msgid "Edit OS" msgstr "OS の編集" -#: ../../godmode/menu.php:279 -#: ../../enterprise/meta/general/main_header.php:288 +#: ../../godmode/menu.php:329 ../../enterprise/meta/general/main_header.php:364 msgid "License" msgstr "ライセンス" -#: ../../godmode/menu.php:289 +#: ../../godmode/menu.php:338 msgid "Admin tools" msgstr "管理ツール" -#: ../../godmode/menu.php:297 +#: ../../godmode/menu.php:346 msgid "System audit log" msgstr "システム監査ログ" -#: ../../godmode/menu.php:301 +#: ../../godmode/menu.php:350 msgid "Diagnostic info" msgstr "診断情報" -#: ../../godmode/menu.php:303 +#: ../../godmode/menu.php:354 msgid "Site news" msgstr "サイトニュース" -#: ../../godmode/menu.php:305 ../../godmode/setup/file_manager.php:30 -#: ../../enterprise/meta/advanced/metasetup.php:85 -#: ../../enterprise/meta/advanced/metasetup.php:136 +#: ../../godmode/menu.php:356 ../../godmode/setup/file_manager.php:28 +#: ../../enterprise/meta/advanced/metasetup.php:100 +#: ../../enterprise/meta/advanced/metasetup.php:180 msgid "File manager" msgstr "ファイルマネージャ" -#: ../../godmode/menu.php:309 +#: ../../godmode/menu.php:360 msgid "DB Schema Check" msgstr "DB スキーマチェック" -#: ../../godmode/menu.php:312 +#: ../../godmode/menu.php:363 msgid "DB Interface" msgstr "DB インタフェース" -#: ../../godmode/menu.php:405 +#: ../../godmode/menu.php:448 msgid "Extension manager view" msgstr "拡張マネージャ表示" -#: ../../godmode/menu.php:409 +#: ../../godmode/menu.php:452 msgid "Extension manager" msgstr "拡張マネージャ" -#: ../../godmode/menu.php:439 +#: ../../godmode/menu.php:483 msgid "Update manager" msgstr "アップデートマネージャ" -#: ../../godmode/menu.php:445 +#: ../../godmode/menu.php:489 msgid "Update Manager offline" msgstr "オフラインアップデートマネージャ" -#: ../../godmode/menu.php:448 +#: ../../godmode/menu.php:493 msgid "Update Manager online" msgstr "オンラインアップデートマネージャ" -#: ../../godmode/menu.php:450 +#: ../../godmode/menu.php:495 msgid "Update Manager options" msgstr "アップデートマネージャオプション" -#: ../../godmode/menu.php:463 ../../operation/menu.php:410 -#: ../../operation/messages/message_edit.php:46 -#: ../../operation/messages/message_list.php:43 -msgid "Messages" -msgstr "メッセージ" - #: ../../godmode/modules/manage_nc_groups.php:40 -#: ../../godmode/modules/manage_network_components.php:50 +#: ../../godmode/modules/manage_network_components.php:69 #: ../../godmode/modules/manage_network_templates.php:39 #: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/module_list.php:28 -#: ../../enterprise/godmode/modules/local_components.php:89 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:28 -#: ../../enterprise/meta/general/main_header.php:253 +#: ../../godmode/modules/module_list.php:26 +#: ../../enterprise/godmode/modules/local_components.php:99 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../enterprise/meta/general/main_header.php:322 msgid "Module management" msgstr "モジュール管理" @@ -13411,27 +14999,29 @@ msgstr "モジュール管理" msgid "Component group management" msgstr "コンポーネントグループ管理" -#: ../../godmode/modules/manage_nc_groups.php:58 +#: ../../godmode/modules/manage_nc_groups.php:63 msgid "Could not be created. Blank name" msgstr "作成できませんでした。名前が空です。" -#: ../../godmode/modules/manage_nc_groups.php:154 -#: ../../godmode/modules/manage_network_components.php:399 -#: ../../godmode/modules/manage_network_templates.php:85 -#: ../../enterprise/godmode/modules/local_components.php:355 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:136 +#: ../../godmode/modules/manage_nc_groups.php:184 +#: ../../godmode/modules/manage_network_components.php:449 +#: ../../godmode/modules/manage_network_templates.php:95 +#: ../../enterprise/godmode/modules/local_components.php:385 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:207 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:240 msgid "Successfully multiple deleted" msgstr "複数削除しました" -#: ../../godmode/modules/manage_nc_groups.php:155 -#: ../../godmode/modules/manage_network_components.php:400 -#: ../../godmode/modules/manage_network_templates.php:86 -#: ../../enterprise/godmode/modules/local_components.php:356 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:137 +#: ../../godmode/modules/manage_nc_groups.php:185 +#: ../../godmode/modules/manage_network_components.php:450 +#: ../../godmode/modules/manage_network_templates.php:96 +#: ../../enterprise/godmode/modules/local_components.php:386 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:208 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:241 msgid "Not deleted. Error deleting multiple data" msgstr "削除できませんでした。複数データの削除でエラーです。" -#: ../../godmode/modules/manage_nc_groups.php:238 +#: ../../godmode/modules/manage_nc_groups.php:276 msgid "There are no defined component groups" msgstr "定義済のコンポーネントグループがありません" @@ -13439,91 +15029,92 @@ msgstr "定義済のコンポーネントグループがありません" msgid "Update Group Component" msgstr "グループコンポーネント更新" -#: ../../godmode/modules/manage_nc_groups_form.php:57 +#: ../../godmode/modules/manage_nc_groups_form.php:56 msgid "Create Group Component" msgstr "グループコンポーネント作成" -#: ../../godmode/modules/manage_network_components.php:51 +#: ../../godmode/modules/manage_network_components.php:69 msgid "Network component management" msgstr "ネットワークコンポーネント管理" -#: ../../godmode/modules/manage_network_components.php:261 -#: ../../godmode/servers/recon_script.php:320 -#: ../../enterprise/godmode/modules/local_components.php:253 +#: ../../godmode/modules/manage_network_components.php:312 +#: ../../include/class/ManageNetScanScripts.class.php:216 +#: ../../enterprise/godmode/modules/local_components.php:276 msgid "Created successfully" msgstr "作成しました。" -#: ../../godmode/modules/manage_network_components.php:352 -#: ../../godmode/servers/recon_script.php:274 -#: ../../enterprise/godmode/modules/local_components.php:315 +#: ../../godmode/modules/manage_network_components.php:393 +#: ../../include/class/ManageNetScanScripts.class.php:303 +#: ../../enterprise/godmode/modules/local_components.php:344 msgid "Updated successfully" msgstr "更新しました。" -#: ../../godmode/modules/manage_network_components.php:516 -#: ../../enterprise/godmode/modules/local_components.php:440 +#: ../../godmode/modules/manage_network_components.php:583 +#: ../../enterprise/godmode/modules/local_components.php:485 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2536 msgid "Free Search" msgstr "検索文字列" -#: ../../godmode/modules/manage_network_components.php:517 +#: ../../godmode/modules/manage_network_components.php:584 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "名前、説明、tcp送受信による検索にマッチした一覧を表示" -#: ../../godmode/modules/manage_network_components.php:569 +#: ../../godmode/modules/manage_network_components.php:674 msgid "Max/Min" msgstr "最大/最小" -#: ../../godmode/modules/manage_network_components.php:595 +#: ../../godmode/modules/manage_network_components.php:710 msgid "Network module" msgstr "ネットワークモジュール" -#: ../../godmode/modules/manage_network_components.php:599 +#: ../../godmode/modules/manage_network_components.php:718 msgid "WMI module" msgstr "WMIモジュール" -#: ../../godmode/modules/manage_network_components.php:603 +#: ../../godmode/modules/manage_network_components.php:726 msgid "Plug-in module" msgstr "プラグインモジュール" -#: ../../godmode/modules/manage_network_components.php:634 +#: ../../godmode/modules/manage_network_components.php:773 msgid "There are no defined network components" msgstr "定義済のネットワークコンポーネントがありません" -#: ../../godmode/modules/manage_network_components.php:641 +#: ../../godmode/modules/manage_network_components.php:783 msgid "Create a new network component" msgstr "ネットワークコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components.php:642 +#: ../../godmode/modules/manage_network_components.php:784 msgid "Create a new plugin component" msgstr "プラグインコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components.php:643 +#: ../../godmode/modules/manage_network_components.php:785 msgid "Create a new WMI component" msgstr "WMIコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components_form.php:253 +#: ../../godmode/modules/manage_network_components_form.php:285 msgid "Update Network Component" msgstr "ネットワークコンポーネント更新" -#: ../../godmode/modules/manage_network_components_form.php:256 +#: ../../godmode/modules/manage_network_components_form.php:287 msgid "Create Network Component" msgstr "ネットワークコンポーネント作成" -#: ../../godmode/modules/manage_network_components_form_common.php:111 -#: ../../enterprise/godmode/modules/configure_local_component.php:230 +#: ../../godmode/modules/manage_network_components_form_common.php:161 +#: ../../enterprise/godmode/modules/configure_local_component.php:290 msgid "Dynamic Min. " msgstr "動的最小値 " -#: ../../godmode/modules/manage_network_components_form_common.php:165 -#: ../../enterprise/godmode/modules/configure_local_component.php:289 +#: ../../godmode/modules/manage_network_components_form_common.php:300 +#: ../../enterprise/godmode/modules/configure_local_component.php:433 msgid "Any value below this number is discarted" msgstr "この値よりも小さい値は削除されます。" -#: ../../godmode/modules/manage_network_components_form_common.php:167 -#: ../../enterprise/godmode/modules/configure_local_component.php:294 +#: ../../godmode/modules/manage_network_components_form_common.php:302 +#: ../../enterprise/godmode/modules/configure_local_component.php:438 msgid "Any value over this number is discarted" msgstr "この値よりも大きい値は削除されます。" -#: ../../godmode/modules/manage_network_components_form_network.php:47 +#: ../../godmode/modules/manage_network_components_form_network.php:72 msgid "SNMP Enterprise String" msgstr "SNMP Enterprise 文字列" @@ -13532,142 +15123,144 @@ msgstr "SNMP Enterprise 文字列" msgid "Module template management" msgstr "モジュールテンプレート管理" -#: ../../godmode/modules/manage_network_templates.php:61 +#: ../../godmode/modules/manage_network_templates.php:70 msgid "Template successfully deleted" msgstr "テンプレートを削除しました" -#: ../../godmode/modules/manage_network_templates.php:62 +#: ../../godmode/modules/manage_network_templates.php:71 msgid "Error deleting template" msgstr "テンプレートの削除に失敗しました。" -#: ../../godmode/modules/manage_network_templates.php:94 +#: ../../godmode/modules/manage_network_templates.php:105 msgid "This template does not exist" msgstr "このテンプレートは存在しません" -#: ../../godmode/modules/manage_network_templates.php:232 +#: ../../godmode/modules/manage_network_templates.php:279 msgid "There are no defined network profiles" msgstr "ネットワークプロファイルが定義されていません。" -#: ../../godmode/modules/manage_network_templates_form.php:54 +#: ../../godmode/modules/manage_network_templates_form.php:59 msgid "Successfully deleted module from profile" msgstr "プロファイルからモジュールを削除しました。" -#: ../../godmode/modules/manage_network_templates_form.php:55 +#: ../../godmode/modules/manage_network_templates_form.php:60 msgid "Error deleting module from profile" msgstr "プロファイルからのモジュール削除に失敗しました。" -#: ../../godmode/modules/manage_network_templates_form.php:70 +#: ../../godmode/modules/manage_network_templates_form.php:79 msgid "Successfully added module to profile" msgstr "プロファイルにモジュールを追加しました。" -#: ../../godmode/modules/manage_network_templates_form.php:71 +#: ../../godmode/modules/manage_network_templates_form.php:80 msgid "Error adding module to profile" msgstr "プロファイルへのモジュール追加に失敗しました。" -#: ../../godmode/modules/manage_network_templates_form.php:96 +#: ../../godmode/modules/manage_network_templates_form.php:107 msgid "Successfully updated network profile" msgstr "ネットワークプロファイルを更新しました。" -#: ../../godmode/modules/manage_network_templates_form.php:97 +#: ../../godmode/modules/manage_network_templates_form.php:108 msgid "Error updating network profile" msgstr "ネットワークプロファイルの更新に失敗しました。" -#: ../../godmode/modules/manage_network_templates_form.php:112 +#: ../../godmode/modules/manage_network_templates_form.php:126 msgid "Successfully added network profile" msgstr "ネットワークプロファイルを追加しました。" -#: ../../godmode/modules/manage_network_templates_form.php:113 +#: ../../godmode/modules/manage_network_templates_form.php:127 msgid "Error adding network profile" msgstr "ネットワークプロファイルの追加に失敗しました。" -#: ../../godmode/modules/manage_network_templates_form.php:118 +#: ../../godmode/modules/manage_network_templates_form.php:133 msgid "Cannot create a template without name" msgstr "名前無しではテンプレートを作成できません" -#: ../../godmode/modules/manage_network_templates_form.php:186 +#: ../../godmode/modules/manage_network_templates_form.php:207 msgid "No modules for this profile" msgstr "このプロファイルにはモジュールがありません。" -#: ../../godmode/modules/manage_network_templates_form.php:226 -#: ../../enterprise/dashboard/widgets/top_n.php:346 +#: ../../godmode/modules/manage_network_templates_form.php:248 +#: ../../enterprise/dashboard/widgets/top_n.php:411 msgid "Add modules" msgstr "モジュール追加" -#: ../../godmode/modules/manage_network_templates_form.php:304 -#: ../../enterprise/meta/include/functions_wizard_meta.php:239 +#: ../../godmode/modules/manage_network_templates_form.php:329 +#: ../../enterprise/meta/include/functions_wizard_meta.php:307 msgid "Components" msgstr "コンポーネント" -#: ../../godmode/modules/module_list.php:28 +#: ../../godmode/modules/module_list.php:26 msgid "Defined modules" msgstr "定義済みモジュール" -#: ../../godmode/modules/module_list.php:50 +#: ../../godmode/modules/module_list.php:48 msgid "Problem modifying module" msgstr "モジュールの更新に失敗しました。" -#: ../../godmode/modules/module_list.php:52 +#: ../../godmode/modules/module_list.php:50 msgid "Module updated successfully" msgstr "モジュールを更新しました。" -#: ../../godmode/netflow/nf_edit.php:39 +#: ../../godmode/netflow/nf_edit.php:38 msgid "Manage Netflow Filter" msgstr "Netflow フィルタ管理" -#: ../../godmode/netflow/nf_edit.php:43 -#: ../../godmode/setup/setup_general.php:110 -#: ../../operation/netflow/nf_live_view.php:113 -#: ../../enterprise/extensions/backup/main.php:67 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:31 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:33 -#: ../../enterprise/operation/log/log_viewer.php:167 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../godmode/setup/setup_general.php:174 +#: ../../operation/netflow/nf_live_view.php:133 +#: ../../enterprise/extensions/backup/main.php:85 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:82 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 +#: ../../enterprise/operation/log/log_viewer.php:320 msgid "Not supported in Windows systems" msgstr "Windows システムでは対応していません" -#: ../../godmode/netflow/nf_edit.php:47 -#: ../../godmode/netflow/nf_edit_form.php:65 -#: ../../godmode/netflow/nf_item_list.php:57 -#: ../../operation/agentes/ver_agente.php:1036 -#: ../../operation/netflow/nf_live_view.php:132 -#: ../../enterprise/meta/advanced/agents_setup.php:35 -#: ../../enterprise/meta/advanced/policymanager.php:35 -#: ../../enterprise/meta/advanced/synchronizing.php:33 -#: ../../enterprise/meta/agentsearch.php:26 -#: ../../enterprise/meta/general/logon_ok.php:15 -#: ../../enterprise/meta/index.php:698 -#: ../../enterprise/meta/monitoring/group_view.php:32 -#: ../../enterprise/meta/monitoring/tactical.php:35 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:37 +#: ../../godmode/netflow/nf_edit.php:53 +#: ../../godmode/netflow/nf_edit_form.php:69 +#: ../../godmode/netflow/nf_item_list.php:51 +#: ../../operation/agentes/ver_agente.php:1162 +#: ../../operation/netflow/nf_live_view.php:141 +#: ../../enterprise/meta/advanced/agents_setup.php:34 +#: ../../enterprise/meta/advanced/policymanager.php:54 +#: ../../enterprise/meta/advanced/synchronizing.php:32 +#: ../../enterprise/meta/agentsearch.php:29 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../enterprise/meta/index.php:790 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:44 +#: ../../enterprise/meta/monitoring/group_view.php:34 +#: ../../enterprise/meta/monitoring/tactical.php:36 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:38 msgid "Main" msgstr "メイン" -#: ../../godmode/netflow/nf_edit_form.php:59 -#: ../../godmode/netflow/nf_edit_form.php:67 +#: ../../godmode/netflow/nf_edit_form.php:55 +#: ../../godmode/netflow/nf_edit_form.php:77 msgid "Add filter" msgstr "フィルタの追加" -#: ../../godmode/netflow/nf_edit_form.php:62 +#: ../../godmode/netflow/nf_edit_form.php:58 msgid "Netflow Filter" msgstr "Netflow フィルタ" -#: ../../godmode/netflow/nf_edit_form.php:180 +#: ../../godmode/netflow/nf_edit_form.php:187 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../operation/events/events_list.php:285 -#: ../../operation/events/events_list.php:318 +#: ../../include/ajax/custom_fields.php:697 ../../include/ajax/events.php:549 +#: ../../include/ajax/events.php:609 ../../operation/events/events_list.php:414 +#: ../../operation/events/events_list.php:467 msgid "Update filter" msgstr "フィルタの更新" -#: ../../godmode/netflow/nf_edit_form.php:206 +#: ../../godmode/netflow/nf_edit_form.php:224 msgid "Filter:" msgstr "フィルタ:" -#: ../../godmode/netflow/nf_edit_form.php:210 -#: ../../operation/netflow/nf_live_view.php:349 +#: ../../godmode/netflow/nf_edit_form.php:228 +#: ../../operation/netflow/nf_live_view.php:406 msgid "Dst Ip" msgstr "宛先 IP" -#: ../../godmode/netflow/nf_edit_form.php:210 -#: ../../operation/netflow/nf_live_view.php:349 +#: ../../godmode/netflow/nf_edit_form.php:228 +#: ../../operation/netflow/nf_live_view.php:406 msgid "" "Destination IP. A comma separated list of destination ip. If we leave the " "field blank, will show all ip. Example filter by " @@ -13676,13 +15269,13 @@ msgstr "" "宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によるフィルタ例: " "
    25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:213 -#: ../../operation/netflow/nf_live_view.php:358 +#: ../../godmode/netflow/nf_edit_form.php:231 +#: ../../operation/netflow/nf_live_view.php:414 msgid "Src Ip" msgstr "送信元IP" -#: ../../godmode/netflow/nf_edit_form.php:213 -#: ../../operation/netflow/nf_live_view.php:358 +#: ../../godmode/netflow/nf_edit_form.php:231 +#: ../../operation/netflow/nf_live_view.php:414 msgid "" "Source IP. A comma separated list of source ip. If we leave the field blank, " "will show all ip. Example filter by ip:
    25.46.157.214,160.253.135.249" @@ -13690,15 +15283,15 @@ msgstr "" "カンマ区切りの発信元 IP " "一覧です。何も入力しない場合は全てのIPを表示します。IPによるフィルタ例:
    25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:216 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:370 -#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:234 +#: ../../godmode/netflow/nf_edit_form.php:247 +#: ../../operation/netflow/nf_live_view.php:342 +#: ../../operation/netflow/nf_live_view.php:425 msgid "Dst Port" msgstr "宛先ポート" -#: ../../godmode/netflow/nf_edit_form.php:216 -#: ../../operation/netflow/nf_live_view.php:370 +#: ../../godmode/netflow/nf_edit_form.php:234 +#: ../../operation/netflow/nf_live_view.php:425 msgid "" "Destination port. A comma separated list of destination ports. If we leave " "the field blank, will show all ports. Example filter by ports 80 and " @@ -13706,82 +15299,51 @@ msgid "" msgstr "" "宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。ポート 80 および 22 のフィルタ例:
    80,22" -#: ../../godmode/netflow/nf_edit_form.php:219 -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:379 -#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../godmode/netflow/nf_edit_form.php:246 +#: ../../operation/netflow/nf_live_view.php:341 +#: ../../operation/netflow/nf_live_view.php:433 msgid "Src Port" msgstr "送信元ポート" -#: ../../godmode/netflow/nf_edit_form.php:219 -#: ../../operation/netflow/nf_live_view.php:379 +#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../operation/netflow/nf_live_view.php:433 msgid "" "Source port. A comma separated list of source ports. If we leave the field " "blank, will show all ports. Example filter by ports 80 and 22:
    80,22" msgstr "" "カンマ区切りの発信元ポート一覧です。何も入力しない場合は全てのポートを表示します。ポート 80 と 22 でのフィルタ例:
    80,22" -#: ../../godmode/netflow/nf_edit_form.php:225 -#: ../../operation/netflow/nf_live_view.php:397 +#: ../../godmode/netflow/nf_edit_form.php:242 +#: ../../operation/netflow/nf_live_view.php:336 msgid "Aggregate by" msgstr "集約" -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../include/functions_netflow.php:1660 -#: ../../operation/netflow/nf_live_view.php:399 -msgid "Protocol" -msgstr "プロトコル" - -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:244 +#: ../../operation/netflow/nf_live_view.php:339 msgid "Src Ip Address" msgstr "送信元 IP アドレス" -#: ../../godmode/netflow/nf_edit_form.php:226 -#: ../../operation/netflow/nf_live_view.php:399 +#: ../../godmode/netflow/nf_edit_form.php:245 +#: ../../operation/netflow/nf_live_view.php:340 msgid "Dst Ip Address" msgstr "宛先 IP アドレス" -#: ../../godmode/netflow/nf_edit_form.php:230 -#: ../../operation/netflow/nf_live_view.php:405 -msgid "Output format" -msgstr "出力フォーマット" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Kilobytes" -msgstr "キロバイト" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Megabytes" -msgstr "メガバイト" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Kilobytes per second" -msgstr "キロバイト毎秒" - -#: ../../godmode/netflow/nf_edit_form.php:231 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Megabytes per second" -msgstr "メガバイト毎秒" - -#: ../../godmode/netflow/nf_item_list.php:39 -#: ../../operation/reporting/reporting_viewer.php:77 +#: ../../godmode/netflow/nf_item_list.php:36 +#: ../../operation/reporting/reporting_viewer.php:79 msgid "Report list" msgstr "レポート一覧" -#: ../../godmode/netflow/nf_item_list.php:44 -#: ../../godmode/netflow/nf_item_list.php:54 +#: ../../godmode/netflow/nf_item_list.php:39 +#: ../../godmode/netflow/nf_item_list.php:46 msgid "Report items" msgstr "レポートアイテム" -#: ../../godmode/netflow/nf_item_list.php:49 +#: ../../godmode/netflow/nf_item_list.php:42 msgid "Edit report" msgstr "レポートの編集" -#: ../../godmode/netflow/nf_item_list.php:58 +#: ../../godmode/netflow/nf_item_list.php:55 msgid "Netflow reports" msgstr "Netflow レポート" @@ -13789,452 +15351,454 @@ msgstr "Netflow レポート" msgid "Item list" msgstr "アイテム一覧" -#: ../../godmode/netflow/nf_item_list.php:147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1320 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1567 -#: ../../enterprise/dashboard/widgets/top_n.php:69 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:242 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1666 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1855 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 +#: ../../godmode/netflow/nf_item_list.php:175 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1964 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2543 +#: ../../enterprise/dashboard/widgets/top_n.php:81 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2163 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2686 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 msgid "Order" msgstr "順番" -#: ../../godmode/netflow/nf_item_list.php:150 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1342 -#: ../../operation/netflow/nf_live_view.php:258 +#: ../../godmode/netflow/nf_item_list.php:178 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2008 +#: ../../operation/netflow/nf_live_view.php:322 msgid "Max. values" msgstr "最大値" -#: ../../godmode/netflow/nf_item_list.php:151 -#: ../../operation/agentes/graphs.php:179 +#: ../../godmode/netflow/nf_item_list.php:179 +#: ../../operation/agentes/graphs.php:226 msgid "Chart type" msgstr "グラフタイプ" -#: ../../godmode/netflow/nf_item_list.php:203 -#: ../../godmode/netflow/nf_item_list.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:300 +#: ../../godmode/netflow/nf_item_list.php:228 +#: ../../godmode/netflow/nf_item_list.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:372 msgid "Move to down" msgstr "下へ" -#: ../../godmode/netflow/nf_item_list.php:206 -#: ../../godmode/netflow/nf_item_list.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:290 +#: ../../godmode/netflow/nf_item_list.php:230 +#: ../../godmode/netflow/nf_item_list.php:232 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:362 msgid "Move to up" msgstr "上へ" -#: ../../godmode/netflow/nf_item_list.php:255 +#: ../../godmode/netflow/nf_item_list.php:279 msgid "There are no defined items" msgstr "定義済のアイテムがありません" -#: ../../godmode/netflow/nf_item_list.php:260 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1680 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2095 +#: ../../godmode/netflow/nf_item_list.php:284 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2796 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3096 msgid "Create item" msgstr "アイテムの作成" -#: ../../godmode/reporting/create_container.php:190 -#: ../../godmode/reporting/graph_container.php:73 +#: ../../godmode/reporting/create_container.php:176 +#: ../../godmode/reporting/graph_container.php:72 #: ../../godmode/reporting/graph_container.php:75 -#: ../../enterprise/godmode/reporting/graph_template_list.php:70 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:98 +#: ../../enterprise/godmode/reporting/graph_template_list.php:75 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:100 msgid "Graph container" msgstr "グラフコンテナ" -#: ../../godmode/reporting/create_container.php:193 +#: ../../godmode/reporting/create_container.php:180 #: ../../godmode/reporting/graph_container.php:84 msgid "Create container" msgstr "コンテナ作成" -#: ../../godmode/reporting/create_container.php:196 +#: ../../godmode/reporting/create_container.php:183 msgid "Container stored successfully" msgstr "コンテナを保存しました" -#: ../../godmode/reporting/create_container.php:196 +#: ../../godmode/reporting/create_container.php:183 msgid "There was a problem storing container" msgstr "コンテナの保存に問題が発生しました" -#: ../../godmode/reporting/create_container.php:200 +#: ../../godmode/reporting/create_container.php:187 msgid "Update the container" msgstr "コンテナの更新" -#: ../../godmode/reporting/create_container.php:200 +#: ../../godmode/reporting/create_container.php:187 msgid "Bad update the container" msgstr "コンテナの更新に失敗しました" -#: ../../godmode/reporting/create_container.php:259 +#: ../../godmode/reporting/create_container.php:248 msgid "Parent container" msgstr "親コンテナ" -#: ../../godmode/reporting/create_container.php:262 -#: ../../godmode/reporting/create_container.php:265 -#: ../../include/ajax/graph.ajax.php:129 ../../include/functions_html.php:634 -#: ../../operation/events/events_list.php:1174 -#: ../../operation/events/events_list.php:1260 -#: ../../enterprise/godmode/setup/setup.php:257 +#: ../../godmode/reporting/create_container.php:255 +#: ../../godmode/reporting/create_container.php:271 +#: ../../godmode/setup/setup_general.php:385 ../../include/ajax/events.php:799 +#: ../../include/ajax/graph.ajax.php:141 ../../include/functions_html.php:799 +#: ../../operation/events/events_list.php:1592 +#: ../../operation/events/events_list.php:1683 msgid "none" msgstr "なし" -#: ../../godmode/reporting/create_container.php:292 -#: ../../include/functions.php:2050 +#: ../../godmode/reporting/create_container.php:306 +#: ../../include/functions.php:2524 msgid "custom" msgstr "カスタム" -#: ../../godmode/reporting/create_container.php:293 -#: ../../godmode/setup/performance.php:105 -#: ../../include/ajax/graph.ajax.php:130 ../../include/ajax/module.php:139 -#: ../../include/functions.php:2057 ../../include/functions.php:2616 -#: ../../include/functions_netflow.php:1052 -#: ../../include/functions_netflow.php:1085 -#: ../../operation/gis_maps/render_view.php:142 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:63 -#: ../../enterprise/dashboard/widgets/sla_percent.php:62 -#: ../../enterprise/dashboard/widgets/top_n.php:61 -#: ../../enterprise/godmode/agentes/inventory_manager.php:176 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:190 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:181 +#: ../../godmode/reporting/create_container.php:307 +#: ../../godmode/setup/performance.php:589 +#: ../../include/ajax/graph.ajax.php:142 ../../include/ajax/module.php:165 +#: ../../include/functions.php:2535 ../../include/functions.php:3198 +#: ../../operation/gis_maps/render_view.php:143 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:80 +#: ../../enterprise/dashboard/widgets/sla_percent.php:79 +#: ../../enterprise/dashboard/widgets/top_n.php:65 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 msgid "1 hour" msgstr "1時間" -#: ../../godmode/reporting/create_container.php:294 -#: ../../godmode/reporting/create_container.php:295 -#: ../../godmode/reporting/create_container.php:296 -#: ../../include/ajax/graph.ajax.php:131 ../../include/ajax/graph.ajax.php:132 -#: ../../include/ajax/graph.ajax.php:133 ../../include/functions.php:2058 -#: ../../include/functions.php:2059 +#: ../../godmode/reporting/create_container.php:308 +#: ../../godmode/reporting/create_container.php:309 +#: ../../godmode/reporting/create_container.php:310 +#: ../../include/ajax/graph.ajax.php:143 ../../include/ajax/graph.ajax.php:144 +#: ../../include/ajax/graph.ajax.php:145 ../../include/functions.php:2536 +#: ../../include/functions.php:2537 #, php-format msgid "%s hours" msgstr "%s 時間" -#: ../../godmode/reporting/create_container.php:297 -#: ../../include/ajax/graph.ajax.php:134 ../../include/ajax/module.php:142 -#: ../../include/functions.php:2060 ../../include/functions_netflow.php:1056 -#: ../../include/functions_netflow.php:1089 -#: ../../enterprise/dashboard/widgets/top_n.php:65 -#: ../../enterprise/godmode/agentes/inventory_manager.php:180 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:194 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 +#: ../../godmode/reporting/create_container.php:311 +#: ../../include/ajax/graph.ajax.php:146 ../../include/ajax/module.php:168 +#: ../../include/functions.php:2538 +#: ../../include/functions_notifications.php:724 +#: ../../enterprise/dashboard/widgets/top_n.php:69 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 msgid "1 day" msgstr "1日" -#: ../../godmode/reporting/create_container.php:298 -#: ../../godmode/reporting/create_container.php:299 -#: ../../include/ajax/graph.ajax.php:135 ../../include/ajax/graph.ajax.php:136 +#: ../../godmode/reporting/create_container.php:312 +#: ../../godmode/reporting/create_container.php:313 +#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148 #, php-format msgid "%s days" msgstr "%s 日" -#: ../../godmode/reporting/create_container.php:300 -#: ../../include/ajax/graph.ajax.php:137 ../../include/ajax/module.php:143 -#: ../../include/functions.php:2061 ../../include/functions_netflow.php:1093 +#: ../../godmode/reporting/create_container.php:314 +#: ../../include/ajax/graph.ajax.php:149 ../../include/ajax/module.php:169 +#: ../../include/functions.php:2539 +#: ../../include/functions_notifications.php:725 msgid "1 week" msgstr "1週間" -#: ../../godmode/reporting/create_container.php:301 -#: ../../include/ajax/graph.ajax.php:138 ../../include/ajax/module.php:144 -#: ../../include/functions.php:2062 ../../include/functions_netflow.php:1059 -#: ../../include/functions_netflow.php:1092 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:197 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:190 +#: ../../godmode/reporting/create_container.php:315 +#: ../../include/ajax/graph.ajax.php:150 ../../include/ajax/module.php:170 +#: ../../include/functions.php:2540 +#: ../../include/functions_notifications.php:726 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 msgid "15 days" msgstr "15日" -#: ../../godmode/reporting/create_container.php:302 -#: ../../include/ajax/graph.ajax.php:139 ../../include/ajax/module.php:145 -#: ../../include/functions.php:2063 ../../include/functions_netflow.php:1094 -#: ../../enterprise/godmode/agentes/inventory_manager.php:184 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:198 +#: ../../godmode/reporting/create_container.php:316 +#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/module.php:171 +#: ../../include/functions.php:2541 +#: ../../include/functions_notifications.php:727 msgid "1 month" msgstr "1ヵ月" -#: ../../godmode/reporting/create_container.php:305 -#: ../../godmode/reporting/graph_builder.main.php:168 -#: ../../godmode/setup/setup_visuals.php:523 -#: ../../godmode/setup/setup_visuals.php:532 -#: ../../include/functions_visual_map_editor.php:439 -#: ../../operation/agentes/graphs.php:181 -#: ../../operation/agentes/graphs.php:184 -#: ../../operation/agentes/graphs.php:333 -#: ../../operation/agentes/graphs.php:352 -#: ../../operation/reporting/graph_viewer.php:229 -#: ../../enterprise/dashboard/widgets/custom_graph.php:39 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../enterprise/meta/advanced/metasetup.visual.php:151 +#: ../../godmode/reporting/create_container.php:319 +#: ../../godmode/reporting/graph_builder.main.php:151 +#: ../../godmode/setup/setup_visuals.php:829 +#: ../../godmode/setup/setup_visuals.php:846 +#: ../../include/functions_visual_map_editor.php:502 +#: ../../operation/agentes/graphs.php:229 +#: ../../operation/agentes/graphs.php:236 +#: ../../operation/agentes/graphs.php:402 +#: ../../operation/agentes/graphs.php:421 +#: ../../operation/reporting/graph_viewer.php:262 +#: ../../enterprise/dashboard/widgets/custom_graph.php:48 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:213 +#: ../../enterprise/meta/advanced/metasetup.visual.php:205 msgid "Area" msgstr "塗り潰し" -#: ../../godmode/reporting/create_container.php:306 -#: ../../godmode/reporting/graph_builder.main.php:170 -#: ../../godmode/reporting/visual_console_builder.elements.php:203 -#: ../../godmode/setup/setup_visuals.php:526 -#: ../../godmode/setup/setup_visuals.php:535 -#: ../../include/functions_visual_map_editor.php:65 -#: ../../include/functions_visual_map_editor.php:438 -#: ../../include/functions_visual_map_editor.php:876 -#: ../../operation/agentes/graphs.php:181 -#: ../../operation/agentes/graphs.php:184 -#: ../../operation/agentes/graphs.php:341 -#: ../../operation/agentes/graphs.php:356 -#: ../../operation/reporting/graph_viewer.php:231 -#: ../../enterprise/dashboard/widgets/custom_graph.php:41 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:210 -#: ../../enterprise/meta/advanced/metasetup.visual.php:154 +#: ../../godmode/reporting/create_container.php:320 +#: ../../godmode/reporting/graph_builder.main.php:153 +#: ../../godmode/reporting/visual_console_builder.elements.php:278 +#: ../../godmode/setup/setup_visuals.php:836 +#: ../../godmode/setup/setup_visuals.php:853 +#: ../../include/functions_visual_map_editor.php:72 +#: ../../include/functions_visual_map_editor.php:501 +#: ../../include/functions_visual_map_editor.php:1309 +#: ../../operation/agentes/graphs.php:231 +#: ../../operation/agentes/graphs.php:237 +#: ../../operation/agentes/graphs.php:410 +#: ../../operation/agentes/graphs.php:425 +#: ../../operation/reporting/graph_viewer.php:264 +#: ../../enterprise/dashboard/widgets/custom_graph.php:50 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:215 +#: ../../enterprise/meta/advanced/metasetup.visual.php:212 msgid "Line" msgstr "線" -#: ../../godmode/reporting/create_container.php:311 -#: ../../godmode/reporting/create_container.php:416 -#: ../../godmode/reporting/create_container.php:471 -#: ../../godmode/reporting/reporting_builder.item_editor.php:744 -#: ../../godmode/reporting/reporting_builder.list_items.php:305 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:251 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:107 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:106 +#: ../../godmode/reporting/create_container.php:325 +#: ../../godmode/reporting/create_container.php:434 +#: ../../godmode/reporting/create_container.php:488 +#: ../../godmode/reporting/reporting_builder.item_editor.php:984 +#: ../../godmode/reporting/reporting_builder.list_items.php:388 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1560 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:313 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:109 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:121 msgid "Time lapse" msgstr "時間経過" -#: ../../godmode/reporting/create_container.php:312 -#: ../../godmode/reporting/create_container.php:417 -#: ../../godmode/reporting/create_container.php:472 +#: ../../godmode/reporting/create_container.php:326 +#: ../../godmode/reporting/create_container.php:435 +#: ../../godmode/reporting/create_container.php:489 msgid "" "This is the interval or period of time with which the graph data will be " "obtained. For example, a week means data from a week ago from now. " msgstr "グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味します。 " -#: ../../godmode/reporting/create_container.php:353 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1053 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1850 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1885 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2046 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2074 -#: ../../enterprise/dashboard/widgets/top_n.php:179 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2452 +#: ../../godmode/reporting/create_container.php:379 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3113 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3149 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3453 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3503 +#: ../../enterprise/dashboard/widgets/top_n.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3571 msgid "Select an Agent first" msgstr "最初にエージェントを選択してください。" -#: ../../godmode/reporting/create_container.php:362 -#: ../../godmode/reporting/create_container.php:518 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1370 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1702 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:364 -msgid "Only average" -msgstr "平均のみ" - -#: ../../godmode/reporting/create_container.php:371 -#: ../../godmode/reporting/create_container.php:512 -#: ../../godmode/reporting/graph_builder.main.php:162 -#: ../../include/functions_visual_map_editor.php:436 +#: ../../godmode/reporting/create_container.php:389 +#: ../../godmode/reporting/create_container.php:544 +#: ../../godmode/reporting/graph_builder.main.php:145 +#: ../../include/functions_visual_map_editor.php:498 msgid "Type of graph" msgstr "グラフのタイプ" -#: ../../godmode/reporting/create_container.php:380 -#: ../../godmode/reporting/create_container.php:437 -#: ../../godmode/reporting/create_container.php:524 -#: ../../godmode/reporting/graph_builder.main.php:198 -#: ../../operation/agentes/interface_traffic_graph_win.php:274 -#: ../../operation/agentes/stat_win.php:428 +#: ../../godmode/reporting/create_container.php:398 +#: ../../godmode/reporting/create_container.php:455 +#: ../../godmode/reporting/create_container.php:550 +#: ../../godmode/reporting/graph_builder.main.php:184 +#: ../../operation/agentes/interface_traffic_graph_win.php:222 +#: ../../operation/agentes/stat_win.php:367 msgid "Show full scale graph (TIP)" msgstr "詳細グラフ表示 (TIP)" -#: ../../godmode/reporting/create_container.php:391 -#: ../../godmode/reporting/create_container.php:445 -#: ../../godmode/reporting/create_container.php:532 +#: ../../godmode/reporting/create_container.php:409 +#: ../../godmode/reporting/create_container.php:462 +#: ../../godmode/reporting/create_container.php:557 msgid "Add item" msgstr "アイテムの追加" -#: ../../godmode/reporting/create_container.php:423 -#: ../../godmode/reporting/create_container.php:558 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1190 -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.elements.php:385 -#: ../../include/functions_reporting.php:6408 -#: ../../include/functions_visual_map_editor.php:312 -#: ../../include/functions_visual_map_editor.php:322 -#: ../../include/functions_reports.php:429 -#: ../../include/functions_reports.php:505 -#: ../../include/functions_reports.php:507 -#: ../../enterprise/dashboard/widgets/custom_graph.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1577 +#: ../../godmode/reporting/create_container.php:441 +#: ../../godmode/reporting/create_container.php:583 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1720 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.elements.php:481 +#: ../../include/functions_reports.php:554 +#: ../../include/functions_reports.php:641 +#: ../../include/functions_reports.php:647 +#: ../../include/functions_visual_map_editor.php:363 +#: ../../include/functions_visual_map_editor.php:366 +#: ../../include/functions_reporting.php:7568 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1954 msgid "Custom graph" msgstr "カスタムグラフ" -#: ../../godmode/reporting/create_container.php:504 -#: ../../godmode/reporting/create_container.php:563 -#: ../../mobile/operation/modules.php:151 -#: ../../mobile/operation/modules.php:152 -#: ../../mobile/operation/modules.php:244 -#: ../../mobile/operation/modules.php:245 -#: ../../operation/agentes/group_view.php:255 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:410 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:309 +#: ../../godmode/reporting/create_container.php:527 +#: ../../godmode/reporting/create_container.php:588 +#: ../../mobile/operation/modules.php:170 +#: ../../mobile/operation/modules.php:171 +#: ../../mobile/operation/modules.php:283 +#: ../../mobile/operation/modules.php:284 +#: ../../operation/agentes/group_view.php:283 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:404 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:175 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:324 msgid "Tag" msgstr "タグ" -#: ../../godmode/reporting/create_container.php:548 +#: ../../godmode/reporting/create_container.php:573 msgid "There are no defined item container" msgstr "定義済のアイテムコンテナがありません。" -#: ../../godmode/reporting/create_container.php:557 +#: ../../godmode/reporting/create_container.php:582 msgid "Agent/Module" msgstr "エージェント/モジュール" -#: ../../godmode/reporting/create_container.php:560 +#: ../../godmode/reporting/create_container.php:585 msgid "M.Group" msgstr "モジュールグループ" -#: ../../godmode/reporting/graph_builder.graph_editor.php:206 -#: ../../godmode/reporting/reporting_builder.item_editor.php:709 -#: ../../godmode/reporting/visual_console_builder.elements.php:77 -#: ../../godmode/reporting/visual_console_builder.elements.php:183 -#: ../../godmode/reporting/visual_console_builder.wizard.php:300 -#: ../../include/functions_visual_map.php:3939 -#: ../../include/functions_visual_map_editor.php:60 -#: ../../include/functions_visual_map_editor.php:169 -#: ../../include/functions_visual_map_editor.php:571 -#: ../../include/functions_visual_map_editor.php:871 -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:38 -#: ../../enterprise/dashboard/widgets/module_icon.php:49 -#: ../../enterprise/dashboard/widgets/module_status.php:38 -#: ../../enterprise/dashboard/widgets/module_value.php:49 -#: ../../enterprise/dashboard/widgets/sla_percent.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1302 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:342 +#: ../../godmode/reporting/graph_builder.graph_editor.php:200 +#: ../../godmode/reporting/reporting_builder.item_editor.php:933 +#: ../../godmode/reporting/visual_console_builder.elements.php:104 +#: ../../godmode/reporting/visual_console_builder.elements.php:246 +#: ../../godmode/reporting/visual_console_builder.wizard.php:466 +#: ../../include/functions_visual_map.php:4293 +#: ../../include/functions_visual_map_editor.php:67 +#: ../../include/functions_visual_map_editor.php:194 +#: ../../include/functions_visual_map_editor.php:711 +#: ../../include/functions_visual_map_editor.php:1304 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:41 +#: ../../enterprise/dashboard/widgets/module_icon.php:54 +#: ../../enterprise/dashboard/widgets/module_status.php:41 +#: ../../enterprise/dashboard/widgets/module_value.php:54 +#: ../../enterprise/dashboard/widgets/sla_percent.php:40 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1547 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:519 +#: ../../enterprise/include/functions_reporting_csv.php:951 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:622 msgid "Label" msgstr "ラベル" -#: ../../godmode/reporting/graph_builder.graph_editor.php:207 -#: ../../godmode/reporting/graph_builder.graph_editor.php:322 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:147 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:205 +#: ../../godmode/reporting/graph_builder.graph_editor.php:201 +#: ../../godmode/reporting/graph_builder.graph_editor.php:370 +#: ../../enterprise/extensions/visual_console_manager.php:263 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:154 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:208 msgid "Weight" msgstr "ウエイト" -#: ../../godmode/reporting/graph_builder.graph_editor.php:209 -#: ../../godmode/reporting/graph_builder.graph_editor.php:290 -#: ../../godmode/reporting/reporting_builder.list_items.php:314 -#: ../../godmode/reporting/reporting_builder.list_items.php:520 -#: ../../enterprise/extensions/ipam/ipam_network.php:269 -#: ../../enterprise/godmode/alerts/alert_events_list.php:420 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:406 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:217 -#: ../../enterprise/meta/include/functions_autoprovision.php:381 -#: ../../enterprise/meta/include/functions_autoprovision.php:538 +#: ../../godmode/reporting/graph_builder.graph_editor.php:203 +#: ../../godmode/reporting/graph_builder.graph_editor.php:304 +#: ../../godmode/reporting/reporting_builder.list_items.php:404 +#: ../../godmode/reporting/reporting_builder.list_items.php:639 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1434 +#: ../../enterprise/godmode/alerts/alert_events_list.php:499 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:400 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:272 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2622 +#: ../../enterprise/meta/include/functions_autoprovision.php:447 +#: ../../enterprise/meta/include/functions_autoprovision.php:612 msgid "Sort" msgstr "並べ替え" -#: ../../godmode/reporting/graph_builder.graph_editor.php:276 -#: ../../godmode/reporting/graph_builder.graph_editor.php:281 -#: ../../godmode/reporting/reporting_builder.list_items.php:506 -#: ../../godmode/reporting/reporting_builder.list_items.php:511 +#: ../../godmode/reporting/graph_builder.graph_editor.php:270 +#: ../../godmode/reporting/graph_builder.graph_editor.php:274 +#: ../../godmode/reporting/reporting_builder.list_items.php:605 +#: ../../godmode/reporting/reporting_builder.list_items.php:609 msgid "Sort items" msgstr "アイテムの並び替え" -#: ../../godmode/reporting/graph_builder.graph_editor.php:283 +#: ../../godmode/reporting/graph_builder.graph_editor.php:277 msgid "Sort selected items" msgstr "選択アイテムの並べ替え" -#: ../../godmode/reporting/graph_builder.graph_editor.php:285 +#: ../../godmode/reporting/graph_builder.graph_editor.php:280 msgid "before to" -msgstr "" +msgstr "この前へ:" -#: ../../godmode/reporting/graph_builder.graph_editor.php:285 +#: ../../godmode/reporting/graph_builder.graph_editor.php:281 msgid "after to" -msgstr "" +msgstr "この後へ:" -#: ../../godmode/reporting/graph_builder.graph_editor.php:306 -#: ../../operation/events/events_list.php:296 -#: ../../enterprise/godmode/policies/policy_agents.php:368 -#: ../../enterprise/godmode/policies/policy_agents.php:385 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:155 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:94 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:342 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:111 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:102 -#: ../../enterprise/meta/event/custom_events.php:149 +#: ../../godmode/reporting/graph_builder.graph_editor.php:320 +#: ../../include/ajax/events.php:561 ../../operation/events/events_list.php:426 +#: ../../enterprise/godmode/policies/policy_agents.php:448 +#: ../../enterprise/godmode/policies/policy_agents.php:482 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:391 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:159 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:543 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:353 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:117 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 msgid "Filter group" msgstr "フィルターグループ" -#: ../../godmode/reporting/graph_builder.graph_editor.php:351 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:357 +#: ../../godmode/reporting/graph_builder.graph_editor.php:334 +#: ../../godmode/reporting/visual_console_builder.wizard.php:428 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:220 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:191 +msgid "" +"If you select several agents, only the common modules will be displayed" +msgstr "複数のエージェントを選択すると、共通のモジュールのみ表示されます。" + +#: ../../godmode/reporting/graph_builder.graph_editor.php:399 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:359 #: ../../enterprise/meta/monitoring/wizard/wizard.php:102 msgid "Please, select a module" msgstr "モジュールを選択してください" -#: ../../godmode/reporting/graph_builder.graph_editor.php:402 -#: ../../godmode/reporting/reporting_builder.list_items.php:605 +#: ../../godmode/reporting/graph_builder.graph_editor.php:450 +#: ../../godmode/reporting/reporting_builder.list_items.php:743 msgid "Please select any item to order" msgstr "並び替えるアイテムを選択してください" -#: ../../godmode/reporting/graph_builder.main.php:169 -#: ../../operation/reporting/graph_viewer.php:230 -#: ../../enterprise/dashboard/widgets/custom_graph.php:40 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:209 +#: ../../godmode/reporting/graph_builder.main.php:152 +#: ../../operation/reporting/graph_viewer.php:263 +#: ../../enterprise/dashboard/widgets/custom_graph.php:49 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:214 msgid "Stacked area" msgstr "塗り潰しの積み上げ" -#: ../../godmode/reporting/graph_builder.main.php:171 -#: ../../operation/reporting/graph_viewer.php:232 -#: ../../enterprise/dashboard/widgets/custom_graph.php:42 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:211 +#: ../../godmode/reporting/graph_builder.main.php:154 +#: ../../operation/reporting/graph_viewer.php:265 +#: ../../enterprise/dashboard/widgets/custom_graph.php:51 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:216 msgid "Stacked line" msgstr "線の積み上げ" -#: ../../godmode/reporting/graph_builder.main.php:172 -#: ../../operation/reporting/graph_viewer.php:233 -#: ../../enterprise/dashboard/widgets/custom_graph.php:43 +#: ../../godmode/reporting/graph_builder.main.php:155 +#: ../../operation/reporting/graph_viewer.php:266 +#: ../../enterprise/dashboard/widgets/custom_graph.php:52 msgid "Bullet chart" msgstr "ブレットグラフ" -#: ../../godmode/reporting/graph_builder.main.php:173 -#: ../../operation/reporting/graph_viewer.php:234 -#: ../../enterprise/dashboard/widgets/custom_graph.php:44 +#: ../../godmode/reporting/graph_builder.main.php:156 +#: ../../operation/reporting/graph_viewer.php:267 +#: ../../enterprise/dashboard/widgets/custom_graph.php:53 msgid "Gauge" msgstr "ゲージ" -#: ../../godmode/reporting/graph_builder.main.php:174 +#: ../../godmode/reporting/graph_builder.main.php:157 +#: ../../enterprise/operation/log/log_viewer.php:607 msgid "Horizontal bars" msgstr "水平バー" -#: ../../godmode/reporting/graph_builder.main.php:175 +#: ../../godmode/reporting/graph_builder.main.php:158 +#: ../../enterprise/operation/log/log_viewer.php:608 msgid "Vertical bars" msgstr "垂直バー" -#: ../../godmode/reporting/graph_builder.main.php:176 -#: ../../operation/reporting/graph_viewer.php:237 -#: ../../enterprise/dashboard/widgets/custom_graph.php:47 +#: ../../godmode/reporting/graph_builder.main.php:159 +#: ../../operation/reporting/graph_viewer.php:270 +#: ../../enterprise/dashboard/widgets/custom_graph.php:56 msgid "Pie" msgstr "円" -#: ../../godmode/reporting/graph_builder.main.php:182 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1379 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1711 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:384 +#: ../../godmode/reporting/graph_builder.main.php:165 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2081 +#: ../../include/functions.php:3803 ../../include/functions.php:3811 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2249 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:568 msgid "Percentil" msgstr "パーセント値" -#: ../../godmode/reporting/graph_builder.main.php:184 -#: ../../operation/reporting/graph_viewer.php:242 +#: ../../godmode/reporting/graph_builder.main.php:167 +#: ../../operation/reporting/graph_viewer.php:275 msgid "Equalize maximum thresholds" msgstr "最大閾値を合わせる" -#: ../../godmode/reporting/graph_builder.main.php:185 -#: ../../operation/reporting/graph_viewer.php:243 +#: ../../godmode/reporting/graph_builder.main.php:167 +#: ../../operation/reporting/graph_viewer.php:275 msgid "" "If an option is selected, all graphs will have the highest value from all " "modules included in the graph as a maximum threshold" msgstr "オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値が含まれます。" -#: ../../godmode/reporting/graph_builder.main.php:188 +#: ../../godmode/reporting/graph_builder.main.php:170 msgid "Add summatory series" msgstr "合計の表示" -#: ../../godmode/reporting/graph_builder.main.php:189 +#: ../../godmode/reporting/graph_builder.main.php:172 msgid "" "Adds synthetic series to the graph, using all module \n" "\tvalues to calculate the summation and/or average in each time interval. \n" @@ -14245,234 +15809,291 @@ msgstr "" "\t計算した結果のモジュールを用意する代わりに、グラフにのみ計算結果を\n" "\t表示したい場合に利用します。" -#: ../../godmode/reporting/graph_builder.main.php:193 +#: ../../godmode/reporting/graph_builder.main.php:179 msgid "Add average series" msgstr "平均の表示" -#: ../../godmode/reporting/graph_builder.main.php:195 +#: ../../godmode/reporting/graph_builder.main.php:181 msgid "Modules and series" msgstr "モジュール値と統計値" -#: ../../godmode/reporting/graph_builder.main.php:198 -#: ../../godmode/setup/setup_visuals.php:554 -#: ../../operation/agentes/interface_traffic_graph_win.php:276 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1707 -#: ../../enterprise/meta/advanced/metasetup.visual.php:137 +#: ../../godmode/reporting/graph_builder.main.php:184 +#: ../../godmode/setup/setup_visuals.php:868 +#: ../../operation/agentes/interface_traffic_graph_win.php:223 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2239 +#: ../../enterprise/meta/advanced/metasetup.visual.php:153 msgid "This option may cause performance issues" msgstr "このオプションはパフォーマンスに影響します" -#: ../../godmode/reporting/graph_builder.php:233 -#: ../../godmode/reporting/graph_container.php:56 -#: ../../godmode/reporting/graphs.php:43 ../../godmode/reporting/graphs.php:53 -#: ../../operation/reporting/graph_viewer.php:148 +#: ../../godmode/reporting/graph_builder.php:249 +#: ../../godmode/reporting/graph_container.php:55 +#: ../../godmode/reporting/graphs.php:45 ../../godmode/reporting/graphs.php:56 +#: ../../operation/reporting/graph_viewer.php:152 #: ../../enterprise/godmode/reporting/graph_template_list.php:32 -#: ../../enterprise/godmode/reporting/graph_template_list.php:43 -#: ../../enterprise/godmode/reporting/graph_template_list.php:53 +#: ../../enterprise/godmode/reporting/graph_template_list.php:44 +#: ../../enterprise/godmode/reporting/graph_template_list.php:55 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:79 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:89 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:90 msgid "Graph list" msgstr "グラフ一覧" -#: ../../godmode/reporting/graph_builder.php:236 -#: ../../godmode/reporting/reporting_builder.main.php:51 -#: ../../godmode/reporting/reporting_builder.php:2053 -#: ../../godmode/reporting/reporting_builder.php:2081 -#: ../../godmode/reporting/visual_console_builder.php:670 -#: ../../operation/reporting/graph_viewer.php:151 -#: ../../operation/reporting/reporting_viewer.php:82 -#: ../../operation/visual_console/pure_ajax.php:110 -#: ../../operation/visual_console/render_view.php:113 -#: ../../enterprise/meta/screens/screens.visualmap.php:121 -#: ../../enterprise/meta/screens/screens.visualmap.php:146 +#: ../../godmode/reporting/graph_builder.php:253 +#: ../../godmode/reporting/reporting_builder.main.php:63 +#: ../../godmode/reporting/reporting_builder.php:3068 +#: ../../godmode/reporting/visual_console_builder.php:768 +#: ../../operation/reporting/graph_viewer.php:156 +#: ../../operation/reporting/reporting_viewer.php:87 +#: ../../operation/visual_console/legacy_view.php:139 +#: ../../operation/visual_console/pure_ajax.php:136 +#: ../../operation/visual_console/view.php:101 +#: ../../enterprise/meta/screens/screens.visualmap.php:151 msgid "Main data" msgstr "メインデータ" -#: ../../godmode/reporting/graph_builder.php:239 -#: ../../operation/reporting/graph_viewer.php:154 +#: ../../godmode/reporting/graph_builder.php:257 +#: ../../operation/reporting/graph_viewer.php:160 msgid "Graph editor" msgstr "グラフ編集" -#: ../../godmode/reporting/graph_builder.php:242 -#: ../../operation/reporting/graph_viewer.php:160 +#: ../../godmode/reporting/graph_builder.php:261 +#: ../../operation/reporting/graph_viewer.php:168 msgid "View graph" msgstr "グラフ表示" -#: ../../godmode/reporting/graph_builder.php:254 +#: ../../godmode/reporting/graph_builder.php:273 msgid "Graph builder" msgstr "グラフビルダー" -#: ../../godmode/reporting/graph_builder.php:274 +#: ../../godmode/reporting/graph_builder.php:307 msgid "Graph stored successfully" msgstr "グラフを作成しました。" -#: ../../godmode/reporting/graph_builder.php:274 +#: ../../godmode/reporting/graph_builder.php:307 msgid "There was a problem storing Graph" msgstr "グラフの作成に失敗しました。" -#: ../../godmode/reporting/graph_builder.php:277 +#: ../../godmode/reporting/graph_builder.php:311 msgid "There was a problem adding Module" msgstr "モジュール追加で問題が発生しました。" -#: ../../godmode/reporting/graph_builder.php:280 +#: ../../godmode/reporting/graph_builder.php:315 msgid "Update the graph" msgstr "グラフを更新しました。" -#: ../../godmode/reporting/graph_builder.php:280 +#: ../../godmode/reporting/graph_builder.php:315 msgid "Bad update the graph" msgstr "グラフ更新に失敗しました。" -#: ../../godmode/reporting/graph_builder.php:283 +#: ../../godmode/reporting/graph_builder.php:319 msgid "Graph deleted successfully" msgstr "グラフを削除しました。" -#: ../../godmode/reporting/graph_builder.php:283 +#: ../../godmode/reporting/graph_builder.php:319 msgid "There was a problem deleting Graph" msgstr "グラフの削除で問題が発生しました。" -#: ../../godmode/reporting/graphs.php:70 +#: ../../godmode/reporting/graphs.php:77 msgid "Graphs containers" msgstr "グラフコンテナ" -#: ../../godmode/reporting/graphs.php:78 -#: ../../godmode/reporting/map_builder.php:43 -#: ../../godmode/reporting/reporting_builder.php:393 -#: ../../godmode/reporting/reporting_builder.php:398 -#: ../../godmode/reporting/reporting_builder.php:2020 -#: ../../godmode/reporting/reporting_builder.php:2025 -#: ../../godmode/reporting/reporting_builder.php:2091 -#: ../../godmode/reporting/reporting_builder.php:2096 -#: ../../godmode/reporting/visual_console_favorite.php:37 -#: ../../operation/menu.php:272 -#: ../../operation/reporting/custom_reporting.php:27 -#: ../../operation/reporting/graph_viewer.php:329 -#: ../../operation/reporting/reporting_viewer.php:119 -#: ../../operation/reporting/reporting_viewer.php:124 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:180 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:183 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:195 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:198 +#: ../../godmode/reporting/graphs.php:87 +#: ../../godmode/reporting/map_builder.php:84 +#: ../../godmode/reporting/reporting_builder.php:529 +#: ../../godmode/reporting/reporting_builder.php:536 +#: ../../godmode/reporting/reporting_builder.php:3025 +#: ../../godmode/reporting/reporting_builder.php:3032 +#: ../../godmode/reporting/reporting_builder.php:3114 +#: ../../godmode/reporting/reporting_builder.php:3121 +#: ../../godmode/reporting/visual_console_favorite.php:78 +#: ../../operation/menu.php:323 +#: ../../operation/reporting/custom_reporting.php:23 +#: ../../operation/reporting/graph_viewer.php:362 +#: ../../operation/reporting/reporting_viewer.php:129 +#: ../../operation/reporting/reporting_viewer.php:134 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:207 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:210 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:213 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:226 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:229 -#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:232 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:251 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:276 +#: ../../enterprise/meta/general/logon_ok.php:66 msgid "Reporting" msgstr "レポート" -#: ../../godmode/reporting/graphs.php:78 ../../operation/menu.php:286 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:295 +#: ../../godmode/reporting/graphs.php:87 ../../operation/menu.php:339 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 msgid "Custom graphs" msgstr "カスタムグラフ" -#: ../../godmode/reporting/graphs.php:155 -#: ../../include/functions_container.php:129 -#: ../../operation/reporting/graph_viewer.php:340 -#: ../../operation/search_graphs.php:33 +#: ../../godmode/reporting/graphs.php:172 +#: ../../godmode/reporting/reporting_builder.php:665 +msgid "Free text for search: " +msgstr "文字列検索: " + +#: ../../godmode/reporting/graphs.php:173 +#: ../../godmode/reporting/reporting_builder.php:667 +msgid "Search by report name or description, list matches." +msgstr "レポート名または説明で検索したリスト。" + +#: ../../godmode/reporting/graphs.php:185 +#: ../../godmode/reporting/reporting_builder.php:693 +msgid "Show Option" +msgstr "オプション表示" + +#: ../../godmode/reporting/graphs.php:263 +#: ../../include/functions_container.php:147 +#: ../../operation/reporting/graph_viewer.php:373 +#: ../../operation/search_graphs.php:29 msgid "Graph name" msgstr "グラフ名" -#: ../../godmode/reporting/graphs.php:157 -#: ../../include/functions_container.php:131 +#: ../../godmode/reporting/graphs.php:265 +#: ../../include/functions_container.php:149 msgid "Number of Graphs" msgstr "グラフ数" -#: ../../godmode/reporting/graphs.php:220 +#: ../../godmode/reporting/graphs.php:334 msgid "Create graph" msgstr "グラフ作成" -#: ../../godmode/reporting/map_builder.php:39 -#: ../../godmode/reporting/visual_console_favorite.php:37 +#: ../../godmode/reporting/map_builder.php:56 +#: ../../godmode/reporting/visual_console_favorite.php:49 +#: ../../enterprise/extensions/visual_console_manager.php:150 +#: ../../enterprise/godmode/reporting/visual_console_template.php:58 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:57 +msgid "Visual Console List" +msgstr "ビジュアルコンソール一覧" + +#: ../../godmode/reporting/map_builder.php:61 +#: ../../godmode/reporting/visual_console_favorite.php:54 +#: ../../godmode/reporting/visual_console_favorite.php:78 +#: ../../enterprise/extensions/visual_console_manager.php:155 +#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 msgid "Visual Favourite Console" msgstr "お気に入りビジュアルコンソール" -#: ../../godmode/reporting/map_builder.php:194 -#: ../../godmode/reporting/map_builder.php:204 +#: ../../godmode/reporting/map_builder.php:67 +#: ../../godmode/reporting/visual_console_favorite.php:60 +#: ../../enterprise/extensions/visual_console_manager.php:161 +#: ../../enterprise/godmode/reporting/visual_console_template.php:69 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:68 +msgid "Visual Console Template" +msgstr "ビジュアルコンソールテンプレート" + +#: ../../godmode/reporting/map_builder.php:72 +#: ../../godmode/reporting/visual_console_favorite.php:65 +#: ../../enterprise/extensions/visual_console_manager.php:166 +#: ../../enterprise/godmode/reporting/visual_console_template.php:74 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:73 +msgid "Visual Console Template Wizard" +msgstr "ビジュアルコンソールテンプレートウィザード" + +#: ../../godmode/reporting/map_builder.php:77 +#: ../../godmode/reporting/visual_console_favorite.php:71 +#: ../../enterprise/extensions/visual_console_manager.php:171 +#: ../../enterprise/extensions/visual_console_manager.php:182 +#: ../../enterprise/extensions/visual_console_manager.php:426 +#: ../../enterprise/extensions/visual_console_manager.php:429 +#: ../../enterprise/godmode/reporting/visual_console_template.php:80 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:79 +msgid "Visual Console Manager" +msgstr "ビジュアルコンソール管理" + +#: ../../godmode/reporting/map_builder.php:270 +#: ../../godmode/reporting/map_builder.php:278 msgid "Not copied. Error copying data" msgstr "コピーできませんでした。データのコピーでエラーが発生しました。" -#: ../../godmode/reporting/map_builder.php:244 -#: ../../godmode/reporting/visual_console_favorite.php:69 +#: ../../godmode/reporting/map_builder.php:319 +#: ../../godmode/reporting/visual_console_favorite.php:135 msgid "Group Recursion" msgstr "子グループを含む" -#: ../../godmode/reporting/map_builder.php:258 +#: ../../godmode/reporting/map_builder.php:335 msgid "Map name" msgstr "マップ名" -#: ../../godmode/reporting/map_builder.php:260 -#: ../../enterprise/dashboard/widgets/top_n.php:82 +#: ../../godmode/reporting/map_builder.php:337 +#: ../../enterprise/dashboard/widgets/top_n.php:106 msgid "Items" msgstr "アイテム" -#: ../../godmode/reporting/reporting_builder.item_editor.php:35 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:50 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:42 +#: ../../godmode/reporting/reporting_builder.item_editor.php:55 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:55 msgid "Only table" msgstr "表のみ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:36 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:51 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:167 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:43 +#: ../../godmode/reporting/reporting_builder.item_editor.php:56 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:197 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:56 msgid "Table & Graph" msgstr "表とグラフ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:37 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:52 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:168 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:44 +#: ../../godmode/reporting/reporting_builder.item_editor.php:57 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:53 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:198 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:57 msgid "Only graph" msgstr "グラフのみ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:41 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1323 -#: ../../enterprise/dashboard/widgets/top_n.php:72 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:172 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1669 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:250 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:48 +#: ../../godmode/reporting/reporting_builder.item_editor.php:61 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1967 +#: ../../enterprise/dashboard/widgets/top_n.php:86 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:338 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:202 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2166 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:378 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:61 msgid "Ascending" msgstr "昇順" -#: ../../godmode/reporting/reporting_builder.item_editor.php:42 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1326 -#: ../../enterprise/dashboard/widgets/top_n.php:71 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1672 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:252 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:49 +#: ../../godmode/reporting/reporting_builder.item_editor.php:62 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1974 +#: ../../enterprise/dashboard/widgets/top_n.php:85 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2173 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:62 msgid "Descending" msgstr "降順" -#: ../../godmode/reporting/reporting_builder.item_editor.php:628 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1255 +#: ../../godmode/reporting/reporting_builder.item_editor.php:789 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1487 msgid "Item Editor" msgstr "アイテムエディタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:656 +#: ../../godmode/reporting/reporting_builder.item_editor.php:810 msgid "Not valid" msgstr "不正です" -#: ../../godmode/reporting/reporting_builder.item_editor.php:661 +#: ../../godmode/reporting/reporting_builder.item_editor.php:818 msgid "" "This type of report brings a lot of data loading, it is recommended to use " "it for scheduled reports and not for real-time view." msgstr "このタイプのレポートは多くのデータを読み込みます。リアルタイム表示ではなくスケジューリングでのレポートをお勧めします。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:731 +#: ../../godmode/reporting/reporting_builder.item_editor.php:920 +msgid "Local metaconsole" +msgstr "ローカルメタコンソール" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:968 msgid "Log number" msgstr "ログ番号" -#: ../../godmode/reporting/reporting_builder.item_editor.php:732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:970 msgid "" "Warning: this parameter limits the contents of the logs and affects the " "performance." msgstr "警告: このパラメータはログの内容を制限しパフォーマンスに影響します。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:745 +#: ../../godmode/reporting/reporting_builder.item_editor.php:986 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 " @@ -14480,1975 +16101,1956 @@ msgid "" msgstr "" "これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間です。 たとえば、1週間は、今から1週間前のデータを意味します。 " -#: ../../godmode/reporting/reporting_builder.item_editor.php:759 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:150 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1007 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:192 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1580 msgid "Last value" msgstr "最新の値" -#: ../../godmode/reporting/reporting_builder.item_editor.php:760 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3484 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:152 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:622 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1329 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3326 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1009 +#: ../../godmode/reporting/reporting_builder.item_editor.php:5420 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:194 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:792 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1582 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4563 msgid "" "Warning: period 0 reports cannot be used to show information back in time. " "Information contained in this kind of reports will be always reporting the " "most recent information" msgstr "警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれるのは、最新の情報のみとなります。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:774 -#: ../../include/functions_netflow.php:1134 -#: ../../include/functions_netflow.php:1144 -#: ../../include/functions_netflow.php:1161 -#: ../../include/functions_netflow.php:1169 -#: ../../include/functions_netflow.php:1193 -#: ../../operation/netflow/nf_live_view.php:248 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1030 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:374 +#: ../../operation/incidents/integriaims_export_csv.php:92 +#: ../../operation/incidents/list_integriaims_incidents.php:148 +#: ../../operation/netflow/nf_live_view.php:295 msgid "Resolution" msgstr "解像度" -#: ../../godmode/reporting/reporting_builder.item_editor.php:805 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1362 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1066 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1622 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:751 msgid "Projection period" msgstr "予想期間" -#: ../../godmode/reporting/reporting_builder.item_editor.php:815 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1376 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:473 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1085 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1641 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:726 msgid "Data range" msgstr "データ範囲" -#: ../../godmode/reporting/reporting_builder.item_editor.php:826 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1390 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1098 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1654 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:341 msgid "Only display wrong SLAs" msgstr "不正な SLA のみ表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:835 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1399 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1112 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1668 +msgid "Current month" +msgstr "今月" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:1122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1678 msgid "Working time" msgstr "対象時間" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1093 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1532 msgid "Show modules" msgstr "モジュール表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1183 -#: ../../include/functions_graph.php:856 ../../include/functions_graph.php:866 -#: ../../include/functions_graph.php:4631 -#: ../../include/functions_graph.php:5515 -#: ../../include/functions_graph.php:5518 -#: ../../include/functions_graph.php:5521 -#: ../../enterprise/operation/inventory/inventory.php:228 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1705 +#: ../../enterprise/operation/inventory/inventory.php:245 msgid "Last" msgstr "最新" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1231 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1784 msgid "Target server" msgstr "対象サーバ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1252 -#: ../../godmode/setup/news.php:181 ../../godmode/setup/setup_visuals.php:771 -#: ../../include/functions_reporting.php:4400 -#: ../../include/functions_reports.php:604 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1816 +#: ../../godmode/setup/news.php:195 ../../godmode/setup/setup_visuals.php:1246 +#: ../../include/functions_reports.php:804 +#: ../../include/functions_reporting.php:5080 #: ../../enterprise/dashboard/widgets/post.php:25 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1603 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:321 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:76 -#: ../../enterprise/include/functions_netflow_pdf.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1989 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:341 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/include/functions_reporting_csv.php:2143 +#: ../../enterprise/include/functions_reporting_csv.php:2157 msgid "Text" msgstr "文字列" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1832 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2046 msgid "Custom SQL template" msgstr "カスタム SQL テンプレート" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1264 -#: ../../include/functions_reports.php:593 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1850 +#: ../../include/functions_reports.php:785 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:495 msgid "SQL query" msgstr "SQL クエリ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1274 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1613 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1860 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2013 msgid "Max items" msgstr "最大アイテム" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1475 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1477 -msgid "Select server" -msgstr "サーバ選択" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1299 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1622 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1872 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2030 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:762 msgid "Serialized header" msgstr "ヘッダの並び" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1299 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1622 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:497 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1873 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2031 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:762 msgid "The separator character is |" msgstr "デリミタは'|'です。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1308 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1641 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1908 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2085 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 msgid "Field separator" msgstr "フィールドセパレータ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1308 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1641 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:501 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1909 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2086 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 msgid "Separator for different fields in the serialized text chain" msgstr "連なったテキスト文字列でフィールドを分離するためのセパレータ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1929 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 msgid "Line separator" msgstr "行セパレータ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1645 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1930 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2107 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:770 msgid "" "Separator in different lines (composed by fields) of the serialized text " "chain" msgstr "(複数フィールドからなる)複数行のテキスト文字列をまたぐセパレータ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1316 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:221 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1649 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1950 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:308 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2127 msgid "Group by agent" msgstr "エージェント毎のグループ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1329 -#: ../../enterprise/dashboard/widgets/top_n.php:73 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1675 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:254 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1981 +#: ../../enterprise/dashboard/widgets/top_n.php:87 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:342 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2180 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:392 msgid "By agent name" msgstr "エージェント名で" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1337 -#: ../../enterprise/dashboard/widgets/top_n.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:255 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1683 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1993 +#: ../../enterprise/dashboard/widgets/top_n.php:75 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:350 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2192 msgid "Quantity (n)" msgstr "数量(n)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1347 -#: ../../operation/agentes/ver_agente.php:1195 -#: ../../enterprise/dashboard/widgets/top_n.php:75 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:263 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1688 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2023 +#: ../../operation/agentes/ver_agente.php:1310 +#: ../../enterprise/dashboard/widgets/top_n.php:93 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:362 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2207 msgid "Display" msgstr "表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1354 -#: ../../include/functions_reporting.php:1044 -#: ../../include/functions_graph.php:857 ../../include/functions_graph.php:860 -#: ../../include/functions_graph.php:861 ../../include/functions_graph.php:862 -#: ../../include/functions_graph.php:867 ../../include/functions_graph.php:870 -#: ../../include/functions_graph.php:871 ../../include/functions_graph.php:872 -#: ../../include/functions_graph.php:878 ../../include/functions_graph.php:897 -#: ../../include/functions_graph.php:1603 -#: ../../include/functions_graph.php:4631 -#: ../../include/functions_graph.php:5515 -#: ../../include/functions_graph.php:5518 -#: ../../include/functions_graph.php:5521 -#: ../../include/functions_reporting_html.php:2705 -#: ../../enterprise/dashboard/widgets/top_n.php:482 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1695 -#: ../../enterprise/include/functions_reporting_csv.php:531 -#: ../../enterprise/include/functions_reporting_pdf.php:910 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2040 +#: ../../include/functions_reporting_html.php:3673 +#: ../../include/functions_reporting.php:1397 +#: ../../enterprise/dashboard/widgets/top_n.php:553 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2224 +#: ../../enterprise/include/functions_reporting_csv.php:881 msgid "Avg" msgstr "平均" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1361 -#: ../../mobile/operation/module_graph.php:418 -#: ../../operation/agentes/stat_win.php:408 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:354 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2054 +#: ../../mobile/operation/module_graph.php:437 +#: ../../operation/agentes/stat_win.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:542 msgid "Time compare (Overlapped)" msgstr "時間比較 (重ね合わせ)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1374 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1706 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:374 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2071 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2238 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:556 msgid "Full resolution graph (TIP)" msgstr "詳細グラフ (TIP)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1375 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2072 msgid "This option may cause performance issues." msgstr "このオプションはパフォーマンス問題が発生する可能性があります。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1392 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1721 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2101 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:412 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2280 msgid "Condition" msgstr "状態" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1397 -#: ../../include/functions_reporting.php:1835 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:296 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1724 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2105 +#: ../../include/functions_reporting.php:2391 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:417 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2283 msgid "Everything" msgstr "すべて" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1398 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2106 msgid "Greater or equal (>=)" msgstr "以上 (>=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1399 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2107 msgid "Less or equal (<=)" msgstr "以下 (<=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1400 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2108 msgid "Less (<)" msgstr "未満 (<)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1401 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2109 msgid "Greater (>)" msgstr "超えて (>)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1402 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2110 msgid "Equal (=)" msgstr "同じ (=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1403 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2111 msgid "Not equal (!=)" msgstr "異なる (!=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1404 -#: ../../include/functions_db.php:1594 -#: ../../include/functions_reporting_html.php:499 -#: ../../include/functions_reporting_html.php:578 -#: ../../include/functions_reporting_html.php:678 -#: ../../include/functions_reporting_html.php:2052 -#: ../../include/functions_reporting_html.php:2597 -#: ../../enterprise/dashboard/widgets/maps_status.php:74 -#: ../../enterprise/extensions/backup/main.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:302 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1730 -#: ../../enterprise/include/functions_reporting.php:1668 -#: ../../enterprise/include/functions_reporting.php:2476 -#: ../../enterprise/include/functions_reporting.php:2661 -#: ../../enterprise/include/functions_reporting.php:3253 -#: ../../enterprise/include/functions_reporting.php:3430 -#: ../../enterprise/include/functions_reporting.php:4162 -#: ../../enterprise/include/functions_reporting.php:4858 -#: ../../enterprise/include/functions_reporting.php:5200 -#: ../../enterprise/include/functions_reporting_csv.php:1076 -#: ../../enterprise/include/functions_reporting_csv.php:1123 -#: ../../enterprise/include/functions_reporting_pdf.php:1403 -#: ../../enterprise/include/functions_reporting_pdf.php:1484 -#: ../../enterprise/include/functions_reporting_pdf.php:1583 -#: ../../enterprise/include/functions_reporting_pdf.php:1716 -#: ../../enterprise/include/functions_reporting_pdf.php:2137 -#: ../../enterprise/include/functions_reporting_pdf.php:2187 -#: ../../enterprise/include/functions_services.php:1789 -#: ../../enterprise/include/functions_ux_console.php:448 -#: ../../enterprise/operation/agentes/ux_console_view.php:201 -#: ../../enterprise/operation/agentes/ux_console_view.php:364 -#: ../../enterprise/operation/agentes/wux_console_view.php:331 -msgid "OK" -msgstr "OK" - -#: ../../godmode/reporting/reporting_builder.item_editor.php:1405 -#: ../../include/functions_reporting_html.php:2058 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:304 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1732 -#: ../../enterprise/include/functions_reporting_pdf.php:2190 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2113 +#: ../../include/functions_reporting_html.php:2535 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2311 msgid "Not OK" msgstr "NG" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1427 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:310 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1739 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:232 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2125 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:433 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2323 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:347 msgid "Show graph" msgstr "グラフ表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1435 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1746 -msgid "Show address instead module name." +#: ../../godmode/reporting/reporting_builder.item_editor.php:2139 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2337 +msgid "Select fields to show" +msgstr "表示するフィールドの選択" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2147 +#: ../../include/functions_reporting_html.php:3041 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2345 +#: ../../enterprise/include/functions_reporting_csv.php:466 +msgid "Total time" +msgstr "合計時間" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2155 +#: ../../include/functions_reporting_html.php:3047 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2353 +#: ../../enterprise/include/functions_reporting_csv.php:470 +msgid "Time failed" +msgstr "障害時間" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2163 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2361 +#: ../../enterprise/include/functions_reporting_csv.php:474 +msgid "Time in OK status" +msgstr "正常状態の時間" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2171 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2369 +#: ../../enterprise/include/functions_reporting_csv.php:478 +msgid "Time in unknown status" +msgstr "不明状態の時間" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2183 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2381 +#: ../../enterprise/include/functions_reporting_csv.php:482 +msgid "Time of not initialized module" +msgstr "未初期化モジュールの時間" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2195 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2393 +#: ../../enterprise/include/functions_reporting_csv.php:486 +msgid "Time of downtime" +msgstr "計画停止時間" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2207 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:429 +msgid "Show address instead module name" msgstr "モジュール名の代わりにアドレスを表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1747 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2208 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2409 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:430 msgid "Show the main address of agent." msgstr "エージェントのメインアドレスを表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1448 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1759 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:264 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2227 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2428 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:407 msgid "Show resume" msgstr "復旧を表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1448 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2228 msgid "" "Show a summary chart with max, min and average number of total modules at " "the end of the report and Checks." msgstr "最新のレポートおよび監視時点のトータルモジュール数の最大、最小、平均の概要グラフを表示します。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1458 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1768 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:395 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2247 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2295 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2447 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2495 +msgid "

    Select fields to show

    " +msgstr "

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

    " + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2255 +#: ../../include/functions_reporting_html.php:3114 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2455 +#: ../../enterprise/include/functions_reporting_csv.php:494 +msgid "Total checks" +msgstr "全確認数" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2263 +#: ../../include/functions_reporting_html.php:3120 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2463 +msgid "Checks failed" +msgstr "障害確認数" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2271 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2471 +#: ../../enterprise/include/functions_reporting_csv.php:502 +msgid "Checks in OK status" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2283 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2483 +#: ../../enterprise/include/functions_reporting_csv.php:506 +msgid "Unknown checks" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2303 +#: ../../include/functions_reporting_html.php:3294 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503 +#: ../../enterprise/include/functions_reporting_csv.php:614 +msgid "Agent max value" +msgstr "エージェント最大値" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2311 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2511 +msgid "Agent min values" +msgstr "エージェント最小値" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2324 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2523 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:583 msgid "Show Summary group" msgstr "グループ概要を表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1491 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1802 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:425 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2393 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2592 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:647 msgid "Event Status" msgstr "イベントの状態" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1503 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1814 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:436 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2422 +msgid "Include extended events" +msgstr "拡張イベントを含める" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2437 +#: ../../operation/agentes/tactical.php:223 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2619 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:673 msgid "Event graphs" msgstr "イベントグラフ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1507 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1818 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:440 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2441 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2623 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:677 msgid "By agent" msgstr "エージェントで分類" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1513 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1824 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:446 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2451 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2633 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:687 msgid "By user validator" msgstr "ユーザで分類" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1519 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1830 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:452 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2461 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2643 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:697 msgid "By criticity" msgstr "重要度で分類" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1525 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1836 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:458 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2471 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2653 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:707 msgid "Validated vs unvalidated" msgstr "承諾済み・未承諾で分類" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1534 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1872 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2485 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2707 msgid "Query History Database" msgstr "ヒストリデータベース問い合わせ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1543 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1844 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:509 -msgid "Show in two columns" -msgstr "2カラムで表示" +#: ../../godmode/reporting/reporting_builder.item_editor.php:2486 +msgid "" +"With the token enabled the query will affect the Historical Database, which " +"may mean a small drop in performance." +msgstr "トークンを有効にすると、クエリはヒストリデータベースに影響を与えます。これは、パフォーマンスのわずかな低下を発生させる場合があります。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1548 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1850 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2501 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2667 msgid "Height (dynamic graphs)" msgstr "高さ(動的グラフ)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1555 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1655 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2520 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2143 msgid "Show in the same row" msgstr "同一行に表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1556 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1656 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2145 msgid "Show one module per row with all its operations" msgstr "すべての操作で行ごとに1つのモジュールを表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1567 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1855 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2544 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2687 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:336 msgid "SLA items sorted by fulfillment value" msgstr "実データによりソートしたSLAアイテム" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1572 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1860 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:514 -msgid "Show in landscape" -msgstr "横向きで表示" +#: ../../godmode/reporting/reporting_builder.item_editor.php:2566 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2719 +msgid "Priority mode" +msgstr "優先モード" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1583 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1881 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -msgid "Hide not init agents" -msgstr "未初期化エージェントを隠す" +#: ../../godmode/reporting/reporting_builder.item_editor.php:2571 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2724 +msgid "Priority ok mode" +msgstr "正常優先モード" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1613 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2017 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2583 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2736 +msgid "Priority unknown mode" +msgstr "不明優先モード" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2599 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2752 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:288 +msgid "Failover mode" +msgstr "フェイルオーバーモード" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2600 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2753 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:289 +msgid "" +"SLA calculation must be performed taking into account the failover modules " +"assigned to the primary module" +msgstr "SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを考慮して実行する必要があります" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2619 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2772 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:306 +msgid "Failover type" +msgstr "フェイルオーバータイプ" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2624 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2777 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 +msgid "Failover normal" +msgstr "通常のフェイルオーバー" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2636 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2789 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:323 +msgid "Failover simple" +msgstr "シンプルなフェイルオーバー" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2660 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2955 msgid "Calculate for custom intervals" msgstr "時間間隔の計算" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1624 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2028 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2672 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2967 msgid "Time lapse intervals" msgstr "時間経過間隔" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1625 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2029 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2675 msgid "" "Lapses of time in which the period is divided to make more precise " "calculations\n" msgstr "より正確な計算を行うための経過時間の期間分割\n" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1657 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2068 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2717 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3014 msgid "Table only" msgstr "表のみ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1660 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2071 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3024 msgid "Graph only" msgstr "グラフのみ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1663 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2074 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3034 msgid "Graph and table" msgstr "グラフと表" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1714 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2134 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2756 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3051 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:808 +msgid "Uncompress module" +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2757 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3052 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:809 +msgid "Use uncompressed module data." +msgstr "" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2772 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:460 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3067 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:361 +msgid "Show item in landscape format (only PDF)" +msgstr "項目を横向き形式で表示(PDFのみ)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2781 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:476 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3076 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:791 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +msgid "Page break at the end of the item (only PDF)" +msgstr "アイテムの最後の改ページ(PDFのみ)" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2872 +msgid "Agent Failover" +msgstr "エージェントフェイルオーバー" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 +msgid "Module Failover" +msgstr "モジュールフェイルオーバー" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:2890 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3154 msgid "SLA Min. (value)" msgstr "SLA 最小値" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1715 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2135 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2895 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3159 msgid "SLA Max. (value)" msgstr "SLA 最大値" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1716 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2136 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2900 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3164 msgid "SLA Limit (%)" msgstr "SLA 制限 (%)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1725 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2917 msgid "Please save the SLA for start to add items in this list." msgstr "このリストにアイテムを追加するには、最初に SLA を保存してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1897 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3267 msgid "rate" msgstr "律" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1898 -#: ../../enterprise/dashboard/widgets/top_n.php:115 -#: ../../enterprise/dashboard/widgets/top_n.php:298 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:74 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3268 +#: ../../enterprise/dashboard/widgets/top_n.php:139 +#: ../../enterprise/dashboard/widgets/top_n.php:329 +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:89 msgid "max" msgstr "最大" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1899 -#: ../../enterprise/dashboard/widgets/top_n.php:116 -#: ../../enterprise/dashboard/widgets/top_n.php:299 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:75 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3269 +#: ../../enterprise/dashboard/widgets/top_n.php:140 +#: ../../enterprise/dashboard/widgets/top_n.php:330 +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:90 msgid "min" msgstr "最小" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1900 -#: ../../enterprise/dashboard/widgets/top_n.php:117 -#: ../../enterprise/dashboard/widgets/top_n.php:300 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:76 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3270 +#: ../../enterprise/dashboard/widgets/top_n.php:141 +#: ../../enterprise/dashboard/widgets/top_n.php:331 +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:91 msgid "sum" msgstr "合計" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1920 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3303 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:1934 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3323 msgid "Please save the report to start adding items into the list." msgstr "リストに項目を追加する前にレポートを保存してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2274 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2294 -msgid "Please select Agent" -msgstr "エージェントを選択してください" +#: ../../godmode/reporting/reporting_builder.item_editor.php:3509 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3513 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3517 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3521 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3529 +msgid "Item Editor Information" +msgstr "アイテムエディタ情報" -#: ../../godmode/reporting/reporting_builder.list_items.php:288 -#: ../../godmode/reporting/visual_console_builder.elements.php:80 -#: ../../godmode/snmpconsole/snmp_alert.php:966 -#: ../../godmode/snmpconsole/snmp_alert.php:1148 -#: ../../include/functions_visual_map_editor.php:659 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:280 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3510 +msgid "Please select a name." +msgstr "名前を選択してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3514 +msgid "Please select an agent." +msgstr "エージェントを選択してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3522 +msgid "Please insert a SQL query." +msgstr "SQL クエリを入力してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3526 +msgid "Please insert a URL." +msgstr "URL を入力してください。" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:3530 +msgid "Please checked a custom interval option." +msgstr "カスタム間隔オプションを確認してください。" + +#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../godmode/reporting/visual_console_builder.elements.php:107 +#: ../../godmode/snmpconsole/snmp_alert.php:1079 +#: ../../godmode/snmpconsole/snmp_alert.php:1253 +#: ../../include/functions_visual_map_editor.php:832 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:317 msgid "Position" msgstr "位置" -#: ../../godmode/reporting/reporting_builder.list_items.php:291 -#: ../../godmode/reporting/reporting_builder.list_items.php:296 -#: ../../godmode/reporting/reporting_builder.list_items.php:302 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:225 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:236 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:246 +#: ../../godmode/reporting/reporting_builder.list_items.php:374 +#: ../../godmode/reporting/reporting_builder.list_items.php:379 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:279 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:292 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:305 msgid "Ascendent" msgstr "上へ" -#: ../../godmode/reporting/reporting_builder.list_items.php:292 -#: ../../godmode/reporting/reporting_builder.list_items.php:297 -#: ../../godmode/reporting/reporting_builder.list_items.php:303 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:229 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:249 +#: ../../godmode/reporting/reporting_builder.list_items.php:374 +#: ../../godmode/reporting/reporting_builder.list_items.php:379 +#: ../../godmode/reporting/reporting_builder.list_items.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:283 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:296 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:309 msgid "Descent" msgstr "下へ" -#: ../../godmode/reporting/reporting_builder.list_items.php:320 -#: ../../include/functions_custom_graphs.php:233 +#: ../../godmode/reporting/reporting_builder.list_items.php:389 +msgid "Name or Description" +msgstr "名前または説明" + +#: ../../godmode/reporting/reporting_builder.list_items.php:409 +#: ../../include/functions_graph.php:1373 msgid "No items." msgstr "アイテムがありません。" -#: ../../godmode/reporting/reporting_builder.list_items.php:513 +#: ../../godmode/reporting/reporting_builder.list_items.php:612 msgid "Sort selected items from position: " msgstr "選択したアイテムを次の位置から並び替え: " -#: ../../godmode/reporting/reporting_builder.list_items.php:515 +#: ../../godmode/reporting/reporting_builder.list_items.php:615 msgid "Move before to" msgstr "この前に移動:" -#: ../../godmode/reporting/reporting_builder.list_items.php:515 +#: ../../godmode/reporting/reporting_builder.list_items.php:616 msgid "Move after to" msgstr "この後ろに移動:" -#: ../../godmode/reporting/reporting_builder.list_items.php:537 -#: ../../godmode/reporting/reporting_builder.list_items.php:542 +#: ../../godmode/reporting/reporting_builder.list_items.php:656 +#: ../../godmode/reporting/reporting_builder.list_items.php:660 msgid "Delete items" msgstr "アイテムの削除" -#: ../../godmode/reporting/reporting_builder.list_items.php:544 +#: ../../godmode/reporting/reporting_builder.list_items.php:663 msgid "Delete selected items from position: " msgstr "次の場所から選択したアイテムを削除する: " -#: ../../godmode/reporting/reporting_builder.list_items.php:546 +#: ../../godmode/reporting/reporting_builder.list_items.php:666 msgid "Delete above to" msgstr "次の上を削除" -#: ../../godmode/reporting/reporting_builder.list_items.php:546 +#: ../../godmode/reporting/reporting_builder.list_items.php:667 msgid "Delete below to" msgstr "次の下を削除" -#: ../../godmode/reporting/reporting_builder.list_items.php:584 +#: ../../godmode/reporting/reporting_builder.list_items.php:723 msgid "" -"Are you sure to sort the items into the report?\\nThis action change the " +"Are you sure to sort the items into the report?\\n. This action change the " "sorting of items into data base." -msgstr "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの並びを変更します。" +msgstr "レポートのアイテムを並べ替えますか?\\n この操作は、データベースでのアイテムのソートを変更します。" -#: ../../godmode/reporting/reporting_builder.list_items.php:635 +#: ../../godmode/reporting/reporting_builder.list_items.php:773 msgid "Are you sure to delete the items into the report?\\n" msgstr "レポートのアイテムを削除しますがよろしいですか?\\n" -#: ../../godmode/reporting/reporting_builder.list_items.php:657 +#: ../../godmode/reporting/reporting_builder.list_items.php:800 msgid "Please select any item to delete" msgstr "削除するアイテムを選択してください" -#: ../../godmode/reporting/reporting_builder.main.php:85 +#: ../../godmode/reporting/reporting_builder.main.php:130 msgid "Only the group can view the report" msgstr "指定のグループのみレポートを参照可能" -#: ../../godmode/reporting/reporting_builder.main.php:86 +#: ../../godmode/reporting/reporting_builder.main.php:131 msgid "The next group can edit the report" msgstr "グループがレポートを編集可能" -#: ../../godmode/reporting/reporting_builder.main.php:87 +#: ../../godmode/reporting/reporting_builder.main.php:132 msgid "Only the user and admin user can edit the report" msgstr "ユーザおよび管理者のみがレポートを編集可能" -#: ../../godmode/reporting/reporting_builder.main.php:89 +#: ../../godmode/reporting/reporting_builder.main.php:134 msgid "Write Access" msgstr "書き込みアクセス" -#: ../../godmode/reporting/reporting_builder.main.php:90 +#: ../../godmode/reporting/reporting_builder.main.php:134 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." msgstr "" "例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分のグループのみが編集できるようにしたい場合等に利用します。" -#: ../../godmode/reporting/reporting_builder.main.php:110 +#: ../../godmode/reporting/reporting_builder.main.php:171 msgid "Non interactive report" msgstr "非対話型レポート" -#: ../../godmode/reporting/reporting_builder.php:114 +#: ../../godmode/reporting/reporting_builder.php:185 msgid "" "Your report has been planned, and the system will email you a PDF with the " "report as soon as its finished" msgstr "レポートが予定されました。準備完了次第 PDF のレポートをメール送信します。" -#: ../../godmode/reporting/reporting_builder.php:115 +#: ../../godmode/reporting/reporting_builder.php:186 msgid "An error has ocurred" msgstr "エラーが発生しました" -#: ../../godmode/reporting/reporting_builder.php:369 -#: ../../godmode/reporting/reporting_builder.php:1998 -#: ../../godmode/reporting/reporting_builder.php:2050 +#: ../../godmode/reporting/reporting_builder.php:495 +#: ../../godmode/reporting/reporting_builder.php:2993 +#: ../../godmode/reporting/reporting_builder.php:3064 +#: ../../godmode/reporting/reporting_builder.php:3102 msgid "Reports list" msgstr "レポート一覧" -#: ../../godmode/reporting/reporting_builder.php:380 -#: ../../godmode/reporting/reporting_builder.php:402 -#: ../../godmode/reporting/reporting_builder.php:2007 -#: ../../operation/menu.php:279 -#: ../../operation/reporting/custom_reporting.php:27 +#: ../../godmode/reporting/reporting_builder.php:508 +#: ../../godmode/reporting/reporting_builder.php:540 +#: ../../godmode/reporting/reporting_builder.php:3004 +#: ../../operation/menu.php:330 +#: ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" msgstr "カスタムレポート" -#: ../../godmode/reporting/reporting_builder.php:469 -msgid "Free text for search: " -msgstr "文字列検索: " - -#: ../../godmode/reporting/reporting_builder.php:470 -msgid "Search by report name or description, list matches." -msgstr "レポート名または説明で検索したリスト。" - -#: ../../godmode/reporting/reporting_builder.php:480 -msgid "Show Option" -msgstr "オプション表示" - -#: ../../godmode/reporting/reporting_builder.php:566 -#: ../../operation/reporting/custom_reporting.php:38 -#: ../../operation/search_reports.php:38 -#: ../../enterprise/extensions/cron/functions.php:47 -#: ../../enterprise/extensions/cron/main.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:272 -#: ../../enterprise/include/functions_reporting_csv.php:1615 -#: ../../enterprise/include/functions_reporting_csv.php:1619 +#: ../../godmode/reporting/reporting_builder.php:791 +#: ../../include/functions_cron.php:559 +#: ../../operation/reporting/custom_reporting.php:34 +#: ../../operation/search_reports.php:34 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 +#: ../../enterprise/include/functions_cron.php:223 +#: ../../enterprise/include/functions_reporting_csv.php:1996 +#: ../../enterprise/include/functions_reporting_csv.php:2000 +#: ../../enterprise/include/functions_tasklist.php:280 msgid "Report name" msgstr "レポート名" -#: ../../godmode/reporting/reporting_builder.php:568 -#: ../../operation/reporting/custom_reporting.php:40 -#: ../../operation/search_reports.php:40 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 +#: ../../godmode/reporting/reporting_builder.php:793 +#: ../../operation/reporting/custom_reporting.php:36 +#: ../../operation/search_reports.php:36 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:376 msgid "HTML" msgstr "HTML" -#: ../../godmode/reporting/reporting_builder.php:569 -#: ../../operation/reporting/custom_reporting.php:41 -#: ../../operation/search_reports.php:41 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:290 +#: ../../godmode/reporting/reporting_builder.php:794 +#: ../../operation/reporting/custom_reporting.php:37 +#: ../../operation/search_reports.php:37 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:377 msgid "XML" msgstr "XML" -#: ../../godmode/reporting/reporting_builder.php:588 -#: ../../enterprise/dashboard/main_dashboard.php:314 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:287 +#: ../../godmode/reporting/reporting_builder.php:819 +#: ../../enterprise/dashboard/main_dashboard.php:328 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 msgid "Private" msgstr "非公開" -#: ../../godmode/reporting/reporting_builder.php:648 +#: ../../godmode/reporting/reporting_builder.php:925 msgid "This report exceeds the item limit for realtime operations" msgstr "このレポートはリアルタイム処理のアイテム数制限を超過しています" -#: ../../godmode/reporting/reporting_builder.php:653 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:342 +#: ../../godmode/reporting/reporting_builder.php:933 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:433 msgid "HTML view" msgstr "HTML 表示" -#: ../../godmode/reporting/reporting_builder.php:654 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:344 +#: ../../godmode/reporting/reporting_builder.php:940 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:434 msgid "Export to XML" msgstr "XML へエクスポート" -#: ../../godmode/reporting/reporting_builder.php:771 -#: ../../include/functions_reporting.php:1720 -#: ../../enterprise/operation/agentes/agent_inventory.php:242 -#: ../../enterprise/operation/inventory/inventory.php:259 -#: ../../enterprise/operation/log/log_viewer.php:436 -#: ../../enterprise/operation/log/log_viewer.php:444 +#: ../../godmode/reporting/reporting_builder.php:1120 +#: ../../include/functions_reporting.php:2265 +#: ../../enterprise/godmode/agentes/collection_manager.php:191 +#: ../../enterprise/operation/agentes/agent_inventory.php:254 +#: ../../enterprise/operation/inventory/inventory.php:282 +#: ../../enterprise/operation/log/log_viewer.php:853 +#: ../../enterprise/operation/log/log_viewer.php:861 msgid "No data found." msgstr "データがありません。" -#: ../../godmode/reporting/reporting_builder.php:779 +#: ../../godmode/reporting/reporting_builder.php:1136 msgid "Create report" msgstr "レポートの作成" -#: ../../godmode/reporting/reporting_builder.php:2056 -#: ../../operation/reporting/reporting_viewer.php:86 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:115 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:138 +#: ../../godmode/reporting/reporting_builder.php:3072 +#: ../../operation/reporting/reporting_viewer.php:93 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:133 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:158 msgid "List items" msgstr "アイテム一覧" -#: ../../godmode/reporting/reporting_builder.php:2059 -#: ../../operation/reporting/reporting_viewer.php:90 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:108 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:143 -#: ../../enterprise/include/functions_reporting.php:6753 -#: ../../enterprise/include/functions_reporting.php:6803 +#: ../../godmode/reporting/reporting_builder.php:3076 +#: ../../operation/reporting/reporting_viewer.php:99 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:164 +#: ../../enterprise/include/functions_reporting.php:7350 +#: ../../enterprise/include/functions_reporting.php:7406 msgid "Item editor" msgstr "アイテム編集" -#: ../../godmode/reporting/reporting_builder.php:2068 -#: ../../operation/reporting/reporting_viewer.php:98 +#: ../../godmode/reporting/reporting_builder.php:3089 +#: ../../operation/reporting/reporting_viewer.php:109 msgid "View report" msgstr "レポート参照" -#: ../../godmode/reporting/reporting_builder.php:2116 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1234 +#: ../../godmode/reporting/reporting_builder.php:3105 +msgid "Create Custom Report" +msgstr "カスタムレポートの作成" + +#: ../../godmode/reporting/reporting_builder.php:3164 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1469 msgid "Successfull action" msgstr "処理に成功しました。" -#: ../../godmode/reporting/reporting_builder.php:2116 +#: ../../godmode/reporting/reporting_builder.php:3165 msgid "Unsuccessful action

    " msgstr "アクション失敗

    " -#: ../../godmode/reporting/visual_console_builder.data.php:91 +#: ../../godmode/reporting/visual_console_builder.data.php:94 msgid "Create visual console" msgstr "ビジュアルコンソールの作成" -#: ../../godmode/reporting/visual_console_builder.data.php:102 -#: ../../godmode/setup/os.builder.php:34 -#: ../../enterprise/godmode/agentes/collections.data.php:318 -#: ../../enterprise/meta/include/functions_autoprovision.php:470 +#: ../../godmode/reporting/visual_console_builder.data.php:106 +#: ../../godmode/setup/os.builder.php:32 +#: ../../enterprise/godmode/agentes/collections.data.php:355 +#: ../../enterprise/meta/advanced/collections.data.php:307 +#: ../../enterprise/meta/include/functions_autoprovision.php:540 msgid "Name:" msgstr "名前:" -#: ../../godmode/reporting/visual_console_builder.data.php:103 +#: ../../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" msgstr "最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに表示するには、'[*] Map name' です。" -#: ../../godmode/reporting/visual_console_builder.data.php:128 -#: ../../enterprise/godmode/agentes/collections.data.php:358 +#: ../../godmode/reporting/visual_console_builder.data.php:136 +#: ../../enterprise/godmode/agentes/collections.data.php:421 +#: ../../enterprise/meta/advanced/collections.data.php:371 msgid "Group:" msgstr "グループ:" -#: ../../godmode/reporting/visual_console_builder.data.php:145 -#: ../../godmode/reporting/visual_console_builder.elements.php:111 -#: ../../include/functions_visual_map_editor.php:53 -#: ../../include/functions_visual_map_editor.php:473 -#: ../../enterprise/dashboard/widget.php:65 +#: ../../godmode/reporting/visual_console_builder.data.php:160 +#: ../../godmode/reporting/visual_console_builder.elements.php:144 +#: ../../include/functions_visual_map_editor.php:55 +#: ../../include/functions_visual_map_editor.php:564 +#: ../../enterprise/dashboard/widget.php:111 msgid "Background" msgstr "背景" -#: ../../godmode/reporting/visual_console_builder.data.php:148 +#: ../../godmode/reporting/visual_console_builder.data.php:170 msgid "Background image" msgstr "背景画像" -#: ../../godmode/reporting/visual_console_builder.data.php:150 -#: ../../include/functions_visual_map_editor.php:283 +#: ../../godmode/reporting/visual_console_builder.data.php:172 +#: ../../include/functions_visual_map_editor.php:325 msgid "Background color" msgstr "背景色" -#: ../../godmode/reporting/visual_console_builder.data.php:170 +#: ../../godmode/reporting/visual_console_builder.data.php:202 msgid "Layout size" msgstr "レイアウトサイズ" -#: ../../godmode/reporting/visual_console_builder.data.php:174 +#: ../../godmode/reporting/visual_console_builder.data.php:205 msgid "Set custom size" msgstr "カスタムサイズを設定" -#: ../../godmode/reporting/visual_console_builder.data.php:183 +#: ../../godmode/reporting/visual_console_builder.data.php:211 msgid "Get default image size" msgstr "デフォルトのイメージサイズ取得" -#: ../../godmode/reporting/visual_console_builder.data.php:186 +#: ../../godmode/reporting/visual_console_builder.data.php:213 msgid "Favourite visual console" msgstr "お気に入りのビジュアルコンソール" -#: ../../godmode/reporting/visual_console_builder.editor.php:134 +#: ../../godmode/reporting/visual_console_builder.editor.php:162 msgid "Min allowed size is 1024x768" msgstr "最小サイズは 1024x768 です" -#: ../../godmode/reporting/visual_console_builder.editor.php:138 -#: ../../godmode/reporting/visual_console_builder.editor.php:143 -#: ../../godmode/reporting/visual_console_builder.editor.php:148 -#: ../../enterprise/dashboard/main_dashboard.php:373 +#: ../../godmode/reporting/visual_console_builder.editor.php:166 +#: ../../godmode/reporting/visual_console_builder.editor.php:168 +#: ../../godmode/reporting/visual_console_builder.editor.php:170 +#: ../../enterprise/dashboard/main_dashboard.php:418 msgid "Action in progress" msgstr "アクション実行中" -#: ../../godmode/reporting/visual_console_builder.editor.php:139 -#: ../../enterprise/dashboard/main_dashboard.php:374 +#: ../../godmode/reporting/visual_console_builder.editor.php:166 +#: ../../enterprise/dashboard/main_dashboard.php:418 msgid "Loading in progress" msgstr "読み込み中" -#: ../../godmode/reporting/visual_console_builder.editor.php:144 +#: ../../godmode/reporting/visual_console_builder.editor.php:168 msgid "Saving in progress" msgstr "保存中" -#: ../../godmode/reporting/visual_console_builder.editor.php:149 +#: ../../godmode/reporting/visual_console_builder.editor.php:170 msgid "Deletion in progress" msgstr "削除中" -#: ../../godmode/reporting/visual_console_builder.elements.php:78 -#: ../../godmode/reporting/visual_console_builder.wizard.php:118 -#: ../../include/functions_visual_map_editor.php:204 -#: ../../include/functions_filemanager.php:682 +#: ../../godmode/reporting/visual_console_builder.elements.php:105 +#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../include/functions_filemanager.php:654 +#: ../../include/functions_visual_map_editor.php:228 msgid "Image" msgstr "画像" -#: ../../godmode/reporting/visual_console_builder.elements.php:79 +#: ../../godmode/reporting/visual_console_builder.elements.php:106 msgid "Width x Height
    Max value" msgstr "幅 x 高さ
    最大値" -#: ../../godmode/reporting/visual_console_builder.elements.php:81 -#: ../../include/functions_visual_map_editor.php:701 +#: ../../godmode/reporting/visual_console_builder.elements.php:108 msgid "Map linked" msgstr "リンク先マップ" -#: ../../godmode/reporting/visual_console_builder.elements.php:86 -#: ../../mobile/operation/agents.php:347 -#: ../../enterprise/godmode/admin_access_logs.php:25 -#: ../../enterprise/godmode/policies/policy_agents.php:576 -#: ../../enterprise/godmode/policies/policy_agents.php:820 +#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../mobile/operation/agents.php:397 +#: ../../enterprise/godmode/admin_access_logs.php:28 +#: ../../enterprise/godmode/policies/policy_agents.php:713 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 msgid "A." msgstr "A." -#: ../../godmode/reporting/visual_console_builder.elements.php:138 -#: ../../godmode/reporting/visual_console_builder.wizard.php:104 -#: ../../include/functions_visual_map_editor.php:54 -#: ../../include/functions_visual_map_editor.php:864 -msgid "Static Graph" -msgstr "静的グラフ" +#: ../../godmode/reporting/visual_console_builder.elements.php:174 +#: ../../godmode/setup/gis_step_2.php:217 +#: ../../include/functions_visual_map.php:4283 +#: ../../include/functions_visual_map_editor.php:1297 +msgid "Static Image" +msgstr "静的画像" -#: ../../godmode/reporting/visual_console_builder.elements.php:143 +#: ../../godmode/reporting/visual_console_builder.elements.php:182 msgid "Percentile Bar" msgstr "パーセントバー" -#: ../../godmode/reporting/visual_console_builder.elements.php:148 +#: ../../godmode/reporting/visual_console_builder.elements.php:190 msgid "Percentile Bubble" msgstr "パーセント円表示" -#: ../../godmode/reporting/visual_console_builder.elements.php:153 -#: ../../include/functions_visual_map_editor.php:866 -#: ../../mobile/operation/events.php:506 +#: ../../godmode/reporting/visual_console_builder.elements.php:198 +#: ../../include/functions_visual_map_editor.php:1299 +#: ../../mobile/operation/events.php:549 msgid "Module Graph" msgstr "モジュールグラフ" -#: ../../godmode/reporting/visual_console_builder.elements.php:158 -#: ../../include/functions_visual_map.php:3914 -#: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:869 +#: ../../godmode/reporting/visual_console_builder.elements.php:206 +#: ../../include/functions_visual_map.php:4263 +#: ../../include/functions_visual_map_editor.php:59 +#: ../../include/functions_visual_map_editor.php:1302 msgid "Auto SLA Graph" msgstr "自動 SLA グラフ" -#: ../../godmode/reporting/visual_console_builder.elements.php:163 -#: ../../include/functions_visual_map.php:3935 -#: ../../include/functions_visual_map_editor.php:870 +#: ../../godmode/reporting/visual_console_builder.elements.php:214 +#: ../../include/functions_visual_map.php:4288 +#: ../../include/functions_visual_map_editor.php:1303 msgid "Simple Value" msgstr "数値" -#: ../../godmode/reporting/visual_console_builder.elements.php:168 +#: ../../godmode/reporting/visual_console_builder.elements.php:222 msgid "Simple Value (Process Max)" msgstr "値 (最大値)" -#: ../../godmode/reporting/visual_console_builder.elements.php:173 +#: ../../godmode/reporting/visual_console_builder.elements.php:230 msgid "Simple Value (Process Min)" msgstr "値 (最小値)" -#: ../../godmode/reporting/visual_console_builder.elements.php:178 +#: ../../godmode/reporting/visual_console_builder.elements.php:238 msgid "Simple Value (Process Avg)" msgstr "値 (平均値)" -#: ../../godmode/reporting/visual_console_builder.elements.php:193 -#: ../../include/functions_visual_map.php:3898 -#: ../../include/functions_visual_map_editor.php:64 -#: ../../include/functions_visual_map_editor.php:875 +#: ../../godmode/reporting/visual_console_builder.elements.php:262 +#: ../../include/functions_visual_map.php:4243 +#: ../../include/functions_visual_map_editor.php:71 +#: ../../include/functions_visual_map_editor.php:1308 msgid "Box" msgstr "ボックス" -#: ../../godmode/reporting/visual_console_builder.elements.php:231 -#: ../../godmode/reporting/visual_console_builder.elements.php:632 +#: ../../godmode/reporting/visual_console_builder.elements.php:286 +#: ../../include/functions_visual_map.php:4303 +#: ../../include/functions_visual_map_editor.php:73 +#: ../../include/functions_visual_map_editor.php:1310 +msgid "Color cloud" +msgstr "カラークラウド" + +#: ../../godmode/reporting/visual_console_builder.elements.php:312 +#: ../../godmode/reporting/visual_console_builder.elements.php:758 msgid "Edit label" msgstr "ラベル編集" -#: ../../godmode/reporting/visual_console_builder.php:162 +#: ../../godmode/reporting/visual_console_builder.php:185 msgid "This file isn't image" msgstr "このファイルは画像ではありません" -#: ../../godmode/reporting/visual_console_builder.php:163 +#: ../../godmode/reporting/visual_console_builder.php:188 msgid "This file isn't image." msgstr "このファイルは画像ではありません。" -#: ../../godmode/reporting/visual_console_builder.php:167 -#: ../../godmode/reporting/visual_console_builder.php:168 +#: ../../godmode/reporting/visual_console_builder.php:194 +#: ../../godmode/reporting/visual_console_builder.php:197 msgid "File already are exists." msgstr "ファイルが既に存在します。" -#: ../../godmode/reporting/visual_console_builder.php:174 -#: ../../godmode/reporting/visual_console_builder.php:175 +#: ../../godmode/reporting/visual_console_builder.php:205 +#: ../../godmode/reporting/visual_console_builder.php:208 msgid "The file have not image extension." msgstr "画像ファイルの拡張子ではありません。" -#: ../../godmode/reporting/visual_console_builder.php:186 -#: ../../godmode/reporting/visual_console_builder.php:187 -#: ../../godmode/reporting/visual_console_builder.php:194 -#: ../../godmode/reporting/visual_console_builder.php:197 +#: ../../godmode/reporting/visual_console_builder.php:220 +#: ../../godmode/reporting/visual_console_builder.php:223 +#: ../../godmode/reporting/visual_console_builder.php:233 +#: ../../godmode/reporting/visual_console_builder.php:239 msgid "Problems with move file to target." msgstr "対象へのファイルの移動で問題が発生しました。" -#: ../../godmode/reporting/visual_console_builder.php:222 +#: ../../godmode/reporting/visual_console_builder.php:270 msgid "Successfully update." msgstr "更新しました。" -#: ../../godmode/reporting/visual_console_builder.php:234 +#: ../../godmode/reporting/visual_console_builder.php:286 msgid "Could not be update." msgstr "更新に失敗しました。" -#: ../../godmode/reporting/visual_console_builder.php:248 +#: ../../godmode/reporting/visual_console_builder.php:303 msgid "Successfully created." msgstr "作成しました。" -#: ../../godmode/reporting/visual_console_builder.php:261 +#: ../../godmode/reporting/visual_console_builder.php:319 msgid "Could not be created." msgstr "作成に失敗しました。" -#: ../../godmode/reporting/visual_console_builder.php:302 +#: ../../godmode/reporting/visual_console_builder.php:366 msgid "Successfully multiple delete." msgstr "複数削除をしました。" -#: ../../godmode/reporting/visual_console_builder.php:303 +#: ../../godmode/reporting/visual_console_builder.php:367 msgid "Unsuccessful multiple delete." msgstr "複数削除失敗。" -#: ../../godmode/reporting/visual_console_builder.php:386 +#: ../../godmode/reporting/visual_console_builder.php:469 msgid "Successfully delete." msgstr "削除しました。" -#: ../../godmode/reporting/visual_console_builder.php:664 -#: ../../operation/visual_console/pure_ajax.php:96 -#: ../../operation/visual_console/render_view.php:96 -#: ../../enterprise/meta/screens/screens.visualmap.php:136 +#: ../../godmode/reporting/visual_console_builder.php:760 +#: ../../operation/visual_console/legacy_view.php:119 +#: ../../operation/visual_console/pure_ajax.php:118 +#: ../../operation/visual_console/view.php:69 +#: ../../enterprise/meta/screens/screens.visualmap.php:169 msgid "Visual consoles list" msgstr "ビジュアルコンソール一覧" -#: ../../godmode/reporting/visual_console_builder.php:667 -#: ../../operation/gis_maps/render_view.php:128 -#: ../../operation/visual_console/pure_ajax.php:105 -#: ../../operation/visual_console/render_view.php:108 -#: ../../enterprise/meta/screens/screens.visualmap.php:128 +#: ../../godmode/reporting/visual_console_builder.php:764 +#: ../../operation/gis_maps/render_view.php:132 +#: ../../operation/visual_console/legacy_view.php:132 +#: ../../operation/visual_console/pure_ajax.php:129 +#: ../../operation/visual_console/view.php:94 +#: ../../enterprise/meta/screens/screens.visualmap.php:159 msgid "Show link to public Visual Console" msgstr "パブリックビジュアルコンソール表示" -#: ../../godmode/reporting/visual_console_builder.php:673 -#: ../../operation/visual_console/pure_ajax.php:113 -#: ../../operation/visual_console/render_view.php:116 -#: ../../enterprise/meta/screens/screens.visualmap.php:117 +#: ../../godmode/reporting/visual_console_builder.php:772 +#: ../../operation/visual_console/legacy_view.php:144 +#: ../../operation/visual_console/pure_ajax.php:141 +#: ../../operation/visual_console/view.php:106 +#: ../../enterprise/meta/screens/screens.visualmap.php:143 msgid "List elements" msgstr "エレメント一覧" -#: ../../godmode/reporting/visual_console_builder.php:678 -#: ../../operation/visual_console/pure_ajax.php:118 -#: ../../operation/visual_console/render_view.php:121 +#: ../../godmode/reporting/visual_console_builder.php:778 +#: ../../operation/visual_console/legacy_view.php:151 +#: ../../operation/visual_console/pure_ajax.php:148 +#: ../../operation/visual_console/view.php:113 msgid "Services wizard" msgstr "サービスウィザード" -#: ../../godmode/reporting/visual_console_builder.php:683 -#: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../operation/visual_console/pure_ajax.php:123 -#: ../../operation/visual_console/render_view.php:126 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:90 -#: ../../enterprise/include/functions_reporting.php:33 -#: ../../enterprise/include/functions_reporting.php:6723 -#: ../../enterprise/include/functions_reporting.php:6745 -#: ../../enterprise/meta/general/logon_ok.php:38 -#: ../../enterprise/meta/general/main_header.php:114 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:82 -#: ../../enterprise/meta/screens/screens.visualmap.php:113 +#: ../../godmode/reporting/visual_console_builder.php:784 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 +#: ../../operation/visual_console/legacy_view.php:158 +#: ../../operation/visual_console/pure_ajax.php:155 +#: ../../operation/visual_console/view.php:120 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:92 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:86 +#: ../../enterprise/include/functions_reporting.php:34 +#: ../../enterprise/include/functions_reporting.php:7314 +#: ../../enterprise/include/functions_reporting.php:7340 +#: ../../enterprise/meta/general/logon_ok.php:48 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:44 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:81 +#: ../../enterprise/meta/screens/screens.visualmap.php:135 msgid "Wizard" msgstr "設定追加" -#: ../../godmode/reporting/visual_console_builder.php:686 -#: ../../operation/visual_console/pure_ajax.php:126 -#: ../../operation/visual_console/render_view.php:129 -#: ../../enterprise/meta/screens/screens.visualmap.php:109 +#: ../../godmode/reporting/visual_console_builder.php:788 +#: ../../operation/visual_console/legacy_view.php:163 +#: ../../operation/visual_console/pure_ajax.php:160 +#: ../../operation/visual_console/view.php:125 +#: ../../enterprise/meta/screens/screens.visualmap.php:127 msgid "Builder" msgstr "ビルダ" -#: ../../godmode/reporting/visual_console_builder.php:695 -#: ../../enterprise/meta/screens/screens.visualmap.php:148 +#: ../../godmode/reporting/visual_console_builder.php:800 +#: ../../enterprise/meta/screens/screens.visualmap.php:180 msgid "New visual console" msgstr "新規ビジュアルコンソール" -#: ../../godmode/reporting/visual_console_builder.wizard.php:105 -#: ../../include/functions_visual_map_editor.php:55 -#: ../../include/functions_visual_map_editor.php:865 +#: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../include/functions_visual_map_editor.php:56 +msgid "Static Graph" +msgstr "静的グラフ" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../include/functions_visual_map_editor.php:57 +#: ../../include/functions_visual_map_editor.php:1298 msgid "Percentile Item" msgstr "パーセント表示" -#: ../../godmode/reporting/visual_console_builder.wizard.php:106 -#: ../../include/functions_visual_map.php:3902 -#: ../../include/functions_visual_map_editor.php:309 +#: ../../godmode/reporting/visual_console_builder.wizard.php:129 +#: ../../include/functions_visual_map.php:4248 +#: ../../include/functions_visual_map_editor.php:363 #: ../../mobile/operation/home.php:98 msgid "Module graph" msgstr "モジュールデータのグラフ" -#: ../../godmode/reporting/visual_console_builder.wizard.php:107 -#: ../../include/functions_visual_map_editor.php:58 +#: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../include/functions_visual_map_editor.php:60 msgid "Simple value" msgstr "値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:125 +#: ../../godmode/reporting/visual_console_builder.wizard.php:165 msgid "Range between elements (px)" msgstr "エレメント間の幅 (px)" -#: ../../godmode/reporting/visual_console_builder.wizard.php:132 +#: ../../godmode/reporting/visual_console_builder.wizard.php:178 msgid "Size (px)" msgstr "サイズ (px)" -#: ../../godmode/reporting/visual_console_builder.wizard.php:170 -#: ../../enterprise/extensions/vmware/vmware_view.php:1420 +#: ../../godmode/reporting/visual_console_builder.wizard.php:235 +#: ../../enterprise/extensions/vmware/vmware_view.php:1662 msgid "Font" msgstr "フォント" -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 -#: ../../godmode/setup/setup_visuals.php:365 -#: ../../include/functions_config.php:499 +#: ../../godmode/reporting/visual_console_builder.wizard.php:248 +#: ../../include/functions_config.php:932 msgid "Font size" msgstr "フォントサイズ" -#: ../../godmode/reporting/visual_console_builder.wizard.php:196 -#: ../../include/functions_visual_map_editor.php:464 +#: ../../godmode/reporting/visual_console_builder.wizard.php:279 +#: ../../include/functions_visual_map_editor.php:547 msgid "Min value" msgstr "最小値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:197 -#: ../../godmode/reporting/visual_console_builder.wizard.php:210 -#: ../../include/functions_visual_map_editor.php:465 -#: ../../include/functions_visual_map_editor.php:512 +#: ../../godmode/reporting/visual_console_builder.wizard.php:280 +#: ../../godmode/reporting/visual_console_builder.wizard.php:298 +#: ../../include/functions_visual_map_editor.php:548 +#: ../../include/functions_visual_map_editor.php:614 msgid "Max value" msgstr "最大値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:198 -#: ../../include/functions_visual_map_editor.php:466 +#: ../../godmode/reporting/visual_console_builder.wizard.php:281 +#: ../../include/functions_visual_map_editor.php:549 msgid "Avg value" msgstr "平均値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:204 +#: ../../godmode/reporting/visual_console_builder.wizard.php:293 msgid "Width (px)" msgstr "幅 (px)" -#: ../../godmode/reporting/visual_console_builder.wizard.php:218 -#: ../../godmode/setup/setup_visuals.php:548 -#: ../../include/functions_visual_map_editor.php:515 -#: ../../enterprise/meta/advanced/metasetup.visual.php:114 -#: ../../enterprise/meta/include/functions_meta.php:1122 +#: ../../godmode/reporting/visual_console_builder.wizard.php:305 +#: ../../godmode/setup/setup_visuals.php:862 +#: ../../include/functions_visual_map_editor.php:618 +#: ../../enterprise/meta/advanced/metasetup.visual.php:133 +#: ../../enterprise/meta/include/functions_meta.php:1331 msgid "Percentile" msgstr "パーセント" -#: ../../godmode/reporting/visual_console_builder.wizard.php:223 -#: ../../include/functions_visual_map_editor.php:515 +#: ../../godmode/reporting/visual_console_builder.wizard.php:315 +#: ../../include/functions_visual_map_editor.php:619 msgid "Bubble" msgstr "バブル" -#: ../../godmode/reporting/visual_console_builder.wizard.php:230 -#: ../../include/functions_visual_map_editor.php:528 -#: ../../include/functions_visual_map_editor.php:544 +#: ../../godmode/reporting/visual_console_builder.wizard.php:327 +#: ../../include/functions_visual_map_editor.php:643 +#: ../../include/functions_visual_map_editor.php:661 msgid "Value to show" msgstr "表示する値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:232 -#: ../../include/functions_visual_map_editor.php:516 +#: ../../godmode/reporting/visual_console_builder.wizard.php:329 +#: ../../include/functions_visual_map_editor.php:624 msgid "Percent" msgstr "パーセント" -#: ../../godmode/reporting/visual_console_builder.wizard.php:267 +#: ../../godmode/reporting/visual_console_builder.wizard.php:398 msgid "One item per agent" msgstr "1エージェントに 1アイテム" -#: ../../godmode/reporting/visual_console_builder.wizard.php:301 -#: ../../godmode/reporting/visual_console_builder.wizard.php:604 +#: ../../godmode/reporting/visual_console_builder.wizard.php:468 +#: ../../godmode/reporting/visual_console_builder.wizard.php:785 msgid "Agent - Module" msgstr "エージェント - モジュール" -#: ../../godmode/reporting/visual_console_builder.wizard.php:310 +#: ../../godmode/reporting/visual_console_builder.wizard.php:485 msgid "Enable link agent" msgstr "エージェントのリンクを有効にする" -#: ../../godmode/reporting/visual_console_builder.wizard.php:322 +#: ../../godmode/reporting/visual_console_builder.wizard.php:496 msgid "Set Parent" msgstr "親を設定" -#: ../../godmode/reporting/visual_console_builder.wizard.php:324 +#: ../../godmode/reporting/visual_console_builder.wizard.php:499 msgid "Item created in the visualmap" msgstr "ビジュアルマップに作成したアイテム" -#: ../../godmode/reporting/visual_console_builder.wizard.php:325 +#: ../../godmode/reporting/visual_console_builder.wizard.php:500 msgid "Use the agents relationship (from selected agents)" msgstr "エージェント関係を利用する (選択したエージェント)" -#: ../../godmode/reporting/visual_console_builder.wizard.php:328 +#: ../../godmode/reporting/visual_console_builder.wizard.php:509 msgid "Item in the map" msgstr "マップ内のアイテム" -#: ../../godmode/reporting/visual_console_builder.wizard.php:331 -msgid "The parent relationships in Pandora will be drawn in the map." -msgstr "Pandora における親子関係がマップに表示されます。" +#: ../../godmode/reporting/visual_console_builder.wizard.php:510 +#, php-format +msgid "The parenting relationships in %s will be drawn on the map." +msgstr "%s の親子関係がマップに描画されます。" -#: ../../godmode/reporting/visual_console_builder.wizard.php:344 -#: ../../godmode/reporting/visual_console_builder.wizard.php:349 +#: ../../godmode/reporting/visual_console_builder.wizard.php:530 +#: ../../godmode/reporting/visual_console_builder.wizard.php:534 msgid "Are you sure to add many elements\\nin visual map?" msgstr "" "ビジュアルマップに多くのエレメントを追加しようとしています。\n" "よろしいですか。" -#: ../../godmode/reporting/visual_console_builder.wizard.php:377 -#: ../../mobile/operation/agent.php:338 ../../mobile/operation/agents.php:404 -#: ../../mobile/operation/events.php:797 -#: ../../mobile/operation/module_graph.php:467 -#: ../../mobile/operation/modules.php:706 -#: ../../mobile/operation/tactical.php:215 -#: ../../mobile/operation/visualmap.php:118 -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:81 -#: ../../enterprise/mobile/operation/dashboard.php:118 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:149 -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:152 +#: ../../godmode/reporting/visual_console_builder.wizard.php:558 +#: ../../mobile/operation/agent.php:385 ../../mobile/operation/agents.php:453 +#: ../../mobile/operation/events.php:864 +#: ../../mobile/operation/module_graph.php:478 +#: ../../mobile/operation/modules.php:769 +#: ../../mobile/operation/tactical.php:239 +#: ../../mobile/operation/visualmap.php:143 +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:103 +#: ../../enterprise/mobile/operation/dashboard.php:133 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:173 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:176 msgid "Loading..." msgstr "読み込み中..." -#: ../../godmode/reporting/visual_console_builder.wizard.php:525 +#: ../../godmode/reporting/visual_console_builder.wizard.php:706 msgid "Please select any module or modules." msgstr "モジュールを選択してください。" -#: ../../godmode/reporting/visual_console_favorite.php:102 -#: ../../include/ajax/visual_console_builder.ajax.php:280 -#: ../../enterprise/operation/agentes/wux_console_view.php:447 -msgid "No data to show" -msgstr "表示するデータがありません" +#: ../../godmode/reporting/visual_console_favorite.php:167 +msgid "No favourite consoles defined" +msgstr "お気に入りコンソールが定義されていません" -#: ../../godmode/servers/manage_recontask.php:43 -#: ../../godmode/servers/manage_recontask_form.php:186 -#: ../../include/functions_menu.php:484 -msgid "Manage recontask" -msgstr "自動検出管理" +#: ../../godmode/servers/discovery.php:162 +msgid "You must create a task first" +msgstr "タスクを最初に作成する必要があります。" -#: ../../godmode/servers/manage_recontask.php:55 -msgid "Successfully deleted recon task" -msgstr "自動検出処理を削除しました。" - -#: ../../godmode/servers/manage_recontask.php:58 -msgid "Error deleting recon task" -msgstr "自動検出処理の削除に失敗しました。" - -#: ../../godmode/servers/manage_recontask.php:68 -#: ../../godmode/servers/manage_recontask.php:182 -msgid "Successfully updated recon task" -msgstr "自動検出処理を更新しました。" - -#: ../../godmode/servers/manage_recontask.php:75 -#: ../../godmode/servers/manage_recontask.php:185 -msgid "Error updating recon task" -msgstr "自動検出処理の更新に失敗しました。" - -#: ../../godmode/servers/manage_recontask.php:166 -#: ../../godmode/servers/manage_recontask.php:239 -msgid "Wrong format in Subnet field" -msgstr "サブネットの記述が不正です" - -#: ../../godmode/servers/manage_recontask.php:235 -msgid "Recon-task name already exists and incorrect format in Subnet field" -msgstr "自動検出タスク名がすでに存在しサブネットの記述が不正です。" - -#: ../../godmode/servers/manage_recontask.php:243 -#: ../../godmode/servers/manage_recontask.php:252 -msgid "Recon-task name already exists" -msgstr "自動検出タスク名がすでに存在します" - -#: ../../godmode/servers/manage_recontask.php:266 -msgid "Successfully created recon task" -msgstr "自動検出処理を作成しました。" - -#: ../../godmode/servers/manage_recontask.php:269 -msgid "Error creating recon task" -msgstr "自動検出処理の作成に失敗しました。" - -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:248 -#: ../../include/functions_ui.php:678 -#: ../../operation/servers/recon_view.php:98 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:136 -#: ../../enterprise/extensions/ipam/ipam_editor.php:69 -#: ../../enterprise/extensions/ipam/ipam_list.php:148 -msgid "Network" -msgstr "ネットワーク" - -#: ../../godmode/servers/manage_recontask.php:296 -#: ../../godmode/servers/manage_recontask_form.php:306 -msgid "Ports" -msgstr "ポート番号" - -#: ../../godmode/servers/manage_recontask.php:319 -#: ../../operation/servers/recon_view.php:148 -msgid "Network recon task" -msgstr "ネットワーク自動検出タスク" - -#: ../../godmode/servers/manage_recontask.php:351 -#: ../../godmode/servers/manage_recontask_form.php:262 -#: ../../enterprise/extensions/ipam/ipam_list.php:217 -#: ../../enterprise/extensions/ipam/ipam_network.php:127 -#: ../../enterprise/godmode/services/services.service.php:295 -#: ../../enterprise/operation/services/services.list.php:189 -#: ../../enterprise/operation/services/services.table_services.php:158 -msgid "Manual" -msgstr "マニュアル" - -#: ../../godmode/servers/manage_recontask.php:392 -msgid "There are no recon task configured" -msgstr "自動検出処理がありません。" - -#: ../../godmode/servers/manage_recontask_form.php:193 -msgid "" -"By default, in Windows, Pandora FMS only support Standard network sweep, not " -"custom scripts" -msgstr "" -"デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみの対応で、カスタムスクリプトは使えません。" - -#: ../../godmode/servers/manage_recontask_form.php:224 -#: ../../operation/servers/recon_view.php:92 -msgid "Task name" -msgstr "タスク名" - -#: ../../godmode/servers/manage_recontask_form.php:230 -msgid "" -"You must select a Recon Server for the Task, otherwise the Recon Task will " -"never run" -msgstr "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出は実行されません。" - -#: ../../godmode/servers/manage_recontask_form.php:238 -msgid "Network sweep" -msgstr "ネットワーク探査" - -#: ../../godmode/servers/manage_recontask_form.php:240 -#: ../../enterprise/extensions/cron/functions.php:73 -#: ../../enterprise/extensions/cron/main.php:336 -msgid "Custom script" -msgstr "カスタムスクリプト" - -#: ../../godmode/servers/manage_recontask_form.php:249 -msgid "" -"You can specify several networks, separated by commas, for example: " -"192.168.50.0/24,192.168.60.0/24" -msgstr "カンマ区切りで複数のネットワークを指定できます。例: 192.168.50.0/24,192.168.60.0/24" - -#: ../../godmode/servers/manage_recontask_form.php:260 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "手動は、オンデマンドでのみの実行を意味します。" - -#: ../../godmode/servers/manage_recontask_form.php:262 -#: ../../include/functions_reporting_html.php:1605 -#: ../../enterprise/include/functions_reporting_pdf.php:779 -msgid "Defined" -msgstr "定義済み" - -#: ../../godmode/servers/manage_recontask_form.php:267 -msgid "The minimum recomended interval for Recon Task is 5 minutes" -msgstr "自動検出タスクの最小間隔は、5分をお勧めします。" - -#: ../../godmode/servers/manage_recontask_form.php:272 -msgid "Module template" -msgstr "モジュールテンプレート" - -#: ../../godmode/servers/manage_recontask_form.php:309 -msgid "" -"Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line " -"format). If dont want to do a sweep using portscan, left it in blank" -msgstr "" -"ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 " -"(nmapコマンドのフォーマット)のように記載します。ポートスキャンをしたくない場合は、空白にしてください。" - -#: ../../godmode/servers/manage_recontask_form.php:320 -msgid "Choose if the discovery of a new system creates an incident or not." -msgstr "新システム検出時のインシデント作成有無の選択" - -#: ../../godmode/servers/manage_recontask_form.php:323 -msgid "SNMP enabled" -msgstr "SNMP 有効化" - -#: ../../godmode/servers/manage_recontask_form.php:327 -msgid "SNMP Default community" -msgstr "SNMP デフォルトコミュニティ" - -#: ../../godmode/servers/manage_recontask_form.php:328 -msgid "" -"You can specify several values, separated by commas, for example: " -"public,mysecret,1234" -msgstr "カンマ区切りで複数の値を指定できます。例: public,mysecret,1234" - -#: ../../godmode/servers/manage_recontask_form.php:334 -msgid "Explanation" -msgstr "説明" - -#: ../../godmode/servers/manage_recontask_form.php:375 -msgid "OS detection" -msgstr "OSの検出" - -#: ../../godmode/servers/manage_recontask_form.php:379 -msgid "Name resolution" -msgstr "名前解決" - -#: ../../godmode/servers/manage_recontask_form.php:383 -msgid "Parent detection" -msgstr "親の検出" - -#: ../../godmode/servers/manage_recontask_form.php:387 -msgid "Parent recursion" -msgstr "親の再帰検出" - -#: ../../godmode/servers/manage_recontask_form.php:388 -msgid "" -"Maximum number of parent hosts that will be created if parent detection is " -"enabled." -msgstr "親検出が有効の場合に、作成される親ホストの最大数です。" - -#: ../../godmode/servers/manage_recontask_form.php:391 -msgid "Vlan enabled" -msgstr "Vlan 有効化" - -#: ../../godmode/servers/modificar_server.php:35 +#: ../../godmode/servers/modificar_server.php:34 msgid "Update Server" msgstr "サーバ情報の更新" -#: ../../godmode/servers/modificar_server.php:41 -#: ../../godmode/servers/plugin.php:300 ../../godmode/servers/plugin.php:759 +#: ../../godmode/servers/modificar_server.php:40 +#: ../../godmode/servers/plugin.php:335 ../../godmode/servers/plugin.php:999 msgid "Standard" msgstr "標準" -#: ../../godmode/servers/modificar_server.php:43 -#: ../../godmode/setup/license.php:88 ../../include/functions_ui.php:673 -#: ../../enterprise/meta/advanced/license_meta.php:103 +#: ../../godmode/servers/modificar_server.php:42 +#: ../../godmode/setup/license.php:131 +#: ../../include/class/Diagnostics.class.php:1175 +#: ../../include/functions_servers.php:1232 ../../include/functions_ui.php:849 msgid "Satellite" msgstr "サテライト" -#: ../../godmode/servers/modificar_server.php:62 +#: ../../godmode/servers/modificar_server.php:75 msgid "Exec Server" msgstr "実行サーバ" -#: ../../godmode/servers/modificar_server.php:64 +#: ../../godmode/servers/modificar_server.php:83 +msgid "Leave blank to use SSH default port (22)" +msgstr "SSH デフォルトポート(22)を使うには空のままにします" + +#: ../../godmode/servers/modificar_server.php:88 msgid "Check Exec Server" msgstr "実行サーバ確認" -#: ../../godmode/servers/modificar_server.php:80 +#: ../../godmode/servers/modificar_server.php:104 msgid "Remote Configuration" msgstr "リモート設定" -#: ../../godmode/servers/modificar_server.php:85 -msgid "Pandora servers" -msgstr "Pandora サーバ" +#: ../../godmode/servers/modificar_server.php:108 +#, php-format +msgid "%s servers" +msgstr "%s サーバ" -#: ../../godmode/servers/modificar_server.php:92 -#: ../../godmode/servers/modificar_server.php:104 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1234 +#: ../../godmode/servers/modificar_server.php:115 +#: ../../godmode/servers/modificar_server.php:126 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1470 msgid "Unsuccessfull action" msgstr "処理に失敗しました。" -#: ../../godmode/servers/modificar_server.php:95 -#: ../../godmode/servers/modificar_server.php:107 -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 +#: ../../godmode/servers/modificar_server.php:117 +#: ../../godmode/servers/modificar_server.php:128 +#: ../../enterprise/godmode/alerts/alert_events_list.php:380 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 msgid "Successfully action" msgstr "アクションに成功しました。" -#: ../../godmode/servers/modificar_server.php:117 +#: ../../godmode/servers/modificar_server.php:138 #: ../../enterprise/meta/advanced/servers.php:39 msgid "Server deleted successfully" msgstr "サーバを削除しました。" -#: ../../godmode/servers/modificar_server.php:120 -#: ../../enterprise/meta/advanced/servers.php:42 +#: ../../godmode/servers/modificar_server.php:140 +#: ../../enterprise/meta/advanced/servers.php:41 msgid "There was a problem deleting the server" msgstr "サーバの削除に失敗しました。" -#: ../../godmode/servers/modificar_server.php:132 +#: ../../godmode/servers/modificar_server.php:159 msgid "Server updated successfully" msgstr "サーバを更新しました。" -#: ../../godmode/servers/modificar_server.php:135 +#: ../../godmode/servers/modificar_server.php:161 msgid "There was a problem updating the server" msgstr "サーバの更新に失敗しました。" -#: ../../godmode/servers/plugin.php:53 +#: ../../godmode/servers/plugin.php:56 msgid "Network Components" msgstr "ネットワークコンポーネント" -#: ../../godmode/servers/plugin.php:151 -#: ../../include/functions_filemanager.php:770 -#: ../../enterprise/godmode/agentes/collections.editor.php:105 -#: ../../enterprise/godmode/agentes/collections.editor.php:166 +#: ../../godmode/servers/plugin.php:157 +#: ../../include/functions_filemanager.php:749 +#: ../../enterprise/godmode/agentes/collections.editor.php:132 +#: ../../enterprise/godmode/agentes/collections.editor.php:197 +#: ../../enterprise/meta/advanced/collections.editor.php:99 +#: ../../enterprise/meta/advanced/collections.editor.php:165 msgid "Edit file" msgstr "ファイル編集" -#: ../../godmode/servers/plugin.php:170 -#: ../../enterprise/godmode/agentes/collections.editor.php:187 +#: ../../godmode/servers/plugin.php:176 +#: ../../enterprise/godmode/agentes/collections.editor.php:221 +#: ../../enterprise/meta/advanced/collections.editor.php:190 msgid "Compatibility mode" msgstr "互換モード" -#: ../../godmode/servers/plugin.php:224 -#: ../../godmode/setup/file_manager.php:63 -#: ../../include/functions_filemanager.php:561 +#: ../../godmode/servers/plugin.php:238 ../../godmode/setup/file_manager.php:67 +#: ../../include/functions_filemanager.php:598 +#: ../../include/functions_filemanager.php:603 #, php-format msgid "Index of %s" msgstr "%s 一覧" -#: ../../godmode/servers/plugin.php:266 -msgid "Plugin creation" -msgstr "プラグインの作成" +#: ../../godmode/servers/plugin.php:278 ../../godmode/servers/plugin.php:582 +msgid "To manage plugin you must activate centralized management" +msgstr "プラグインを管理するには、中央管理を有効化する必要があります。" -#: ../../godmode/servers/plugin.php:269 +#: ../../godmode/servers/plugin.php:291 msgid "Plugin update" msgstr "プラグインの更新" -#: ../../godmode/servers/plugin.php:299 +#: ../../godmode/servers/plugin.php:303 ../../godmode/servers/plugin.php:630 +msgid "" +"This console is not manager of this environment,\n" +" \t\tplease manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" +"このコンソールは、この環境における管理コンソールではありません。\n" +" \t\tこの機能は中央管理コンソール(メタコンソール)から管理してください。" + +#: ../../godmode/servers/plugin.php:334 msgid "Plugin type" msgstr "プラグインタイプ" -#: ../../godmode/servers/plugin.php:301 ../../godmode/servers/plugin.php:761 +#: ../../godmode/servers/plugin.php:336 ../../godmode/servers/plugin.php:1001 msgid "Nagios" msgstr "Nagios" -#: ../../godmode/servers/plugin.php:306 +#: ../../godmode/servers/plugin.php:341 msgid "Max. timeout" msgstr "最大タイムアウト" -#: ../../godmode/servers/plugin.php:306 +#: ../../godmode/servers/plugin.php:341 msgid "" "This value only will be applied if is minor than the server general " "configuration plugin timeout" msgstr "全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。" -#: ../../godmode/servers/plugin.php:306 +#: ../../godmode/servers/plugin.php:341 msgid "" "If you set a 0 seconds timeout, the server plugin timeout will be used" msgstr "タイムアウトを 0 に設定した場合、plugin_timeout の値が利用されます。" -#: ../../godmode/servers/plugin.php:362 +#: ../../godmode/servers/plugin.php:394 msgid "Plugin command" msgstr "プラグインコマンド" -#: ../../godmode/servers/plugin.php:373 +#: ../../godmode/servers/plugin.php:406 msgid "Plug-in parameters" msgstr "プラグインパラメータ" -#: ../../godmode/servers/plugin.php:451 -#: ../../godmode/servers/recon_script.php:161 -#: ../../enterprise/godmode/modules/configure_local_component.php:446 +#: ../../godmode/servers/plugin.php:485 +#: ../../include/class/ManageNetScanScripts.class.php:634 +#: ../../enterprise/godmode/modules/configure_local_component.php:613 msgid "Default value" msgstr "デフォルト値" -#: ../../godmode/servers/plugin.php:464 -#: ../../godmode/servers/recon_script.php:174 +#: ../../godmode/servers/plugin.php:498 +#: ../../include/class/ManageNetScanScripts.class.php:665 msgid "Hide value" msgstr "値を隠す" -#: ../../godmode/servers/plugin.php:464 -#: ../../godmode/servers/recon_script.php:174 +#: ../../godmode/servers/plugin.php:498 +#: ../../include/class/ManageNetScanScripts.class.php:667 msgid "This field will show up as dots like a password" msgstr "このフィールドは、パスワードのようにドットで表示されます。" -#: ../../godmode/servers/plugin.php:473 -#: ../../godmode/servers/recon_script.php:183 -#: ../../include/functions_ui.php:1112 -#: ../../enterprise/godmode/modules/configure_local_component.php:452 -#: ../../enterprise/meta/general/login_page.php:78 -#: ../../enterprise/meta/include/process_reset_pass.php:48 -#: ../../enterprise/meta/include/reset_pass.php:48 +#: ../../godmode/servers/plugin.php:507 +#: ../../include/class/ManageNetScanScripts.class.php:688 +#: ../../include/functions_ui.php:1422 +#: ../../enterprise/godmode/modules/configure_local_component.php:619 +#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/meta/include/process_reset_pass.php:58 +#: ../../enterprise/meta/include/reset_pass.php:58 msgid "Help" msgstr "ヘルプ" -#: ../../godmode/servers/plugin.php:491 -#: ../../godmode/servers/recon_script.php:199 -#: ../../enterprise/godmode/modules/configure_local_component.php:462 +#: ../../godmode/servers/plugin.php:524 +#: ../../include/class/ManageNetScanScripts.class.php:722 +#: ../../enterprise/godmode/modules/configure_local_component.php:629 msgid "Add macro" msgstr "マクロを追加" -#: ../../godmode/servers/plugin.php:506 -#: ../../godmode/servers/recon_script.php:206 -#: ../../enterprise/godmode/modules/configure_local_component.php:470 +#: ../../godmode/servers/plugin.php:534 +#: ../../include/class/ManageNetScanScripts.class.php:740 +#: ../../enterprise/godmode/modules/configure_local_component.php:637 msgid "Delete macro" msgstr "マクロを削除" -#: ../../godmode/servers/plugin.php:524 ../../godmode/servers/plugin.php:531 +#: ../../godmode/servers/plugin.php:547 ../../godmode/servers/plugin.php:552 msgid "Parameters macros" msgstr "パラメータマクロ" -#: ../../godmode/servers/plugin.php:564 -msgid "Plugins registered in Pandora FMS" -msgstr "Pandora FMS に登録済のプラグイン" +#: ../../godmode/servers/plugin.php:589 +msgid "" +"The previous configuration of plugins has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "プラグインの以前の設定がノードからインポートされました。 定義が正しいことを確認してください。" -#: ../../godmode/servers/plugin.php:569 +#: ../../godmode/servers/plugin.php:589 +#: ../../enterprise/meta/advanced/collections.php:28 +msgid "Note:" +msgstr "注意:" + +#: ../../godmode/servers/plugin.php:590 +msgid "" +"These definitions will not be operational until you manually \n" +" \t\t\tcopy the files from the nodes to the atachment/plugin/ directory " +"of the meta console." +msgstr "" +"これらの定義は、ファイルをノードからメタコンソールの\n" +" \t\t\tatachment/plugin/ ディレクトリに手動でコピーするまで動作しません。" + +#: ../../godmode/servers/plugin.php:592 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:466 +#: ../../enterprise/meta/advanced/collections.php:31 +msgid "You can find more information at:" +msgstr "より詳細はこちらから確認できます:" + +#: ../../godmode/servers/plugin.php:617 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "%s に登録されているプラグイン" + +#: ../../godmode/servers/plugin.php:639 msgid "You need to create your own plugins with Windows compatibility" msgstr "Windows に対応したプラグインを作成する必要があります" -#: ../../godmode/servers/plugin.php:629 +#: ../../godmode/servers/plugin.php:705 msgid "Problem updating plugin" msgstr "プラグインの更新に失敗しました。" -#: ../../godmode/servers/plugin.php:632 +#: ../../godmode/servers/plugin.php:707 msgid "Plugin updated successfully" msgstr "プラグインを更新しました。" -#: ../../godmode/servers/plugin.php:687 +#: ../../godmode/servers/plugin.php:765 msgid "Problem creating plugin" msgstr "プラグインの作成に失敗しました。" -#: ../../godmode/servers/plugin.php:690 +#: ../../godmode/servers/plugin.php:767 msgid "Plugin created successfully" msgstr "プラグインを作成しました。" -#: ../../godmode/servers/plugin.php:700 +#: ../../godmode/servers/plugin.php:779 ../../godmode/servers/plugin.php:813 msgid "Problem deleting plugin" msgstr "プラグインの削除に失敗しました。" -#: ../../godmode/servers/plugin.php:703 +#: ../../godmode/servers/plugin.php:781 ../../godmode/servers/plugin.php:815 msgid "Plugin deleted successfully" msgstr "プラグインを削除しました。" -#: ../../godmode/servers/plugin.php:782 +#: ../../godmode/servers/plugin.php:826 +msgid "Problem deploying plugin" +msgstr "プラグインの展開で問題が発生しました" + +#: ../../godmode/servers/plugin.php:828 +msgid "Plugin deployed successfully" +msgstr "プラグインを展開しました" + +#: ../../godmode/servers/plugin.php:1031 msgid "All the modules that are using this plugin will be deleted" msgstr "このプラグインを利用しているすべてのモジュールが削除されます" -#: ../../godmode/servers/plugin.php:789 +#: ../../godmode/servers/plugin.php:1033 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1729 +#: ../../enterprise/include/functions_HA_cluster.php:46 +msgid "Deploy" +msgstr "展開" + +#: ../../godmode/servers/plugin.php:1044 msgid "There are no plugins in the system" msgstr "プラグインがありません。" -#: ../../godmode/servers/plugin.php:801 +#: ../../godmode/servers/plugin.php:1058 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "\"%s\" にて作成されたモジュールおよびコンポーネントの一覧 " -#: ../../godmode/servers/plugin.php:909 ../../godmode/servers/plugin.php:925 +#: ../../godmode/servers/plugin.php:1164 ../../godmode/servers/plugin.php:1180 msgid "Some modules or components are using the plugin" msgstr "いくつかのモジュールまたはコンポーネントがプラグインを利用しています" -#: ../../godmode/servers/plugin.php:910 +#: ../../godmode/servers/plugin.php:1165 msgid "" "The modules or components should be updated manually or using the bulk " "operations for plugins after this change" msgstr "モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作を使う必要があります。" -#: ../../godmode/servers/plugin.php:912 +#: ../../godmode/servers/plugin.php:1167 msgid "Are you sure you want to perform this action?" msgstr "この処理を実行してもよろしいですか。" -#: ../../godmode/servers/plugin.php:926 +#: ../../godmode/servers/plugin.php:1181 msgid "Are you sure you want to unlock this item?" msgstr "このアイテムをロック解除してもよろしいですか。" -#: ../../godmode/servers/plugin.php:946 +#: ../../godmode/servers/plugin.php:1201 msgid "" "The plugin command cannot be updated because some modules or components are " "using the plugin." msgstr "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグインコマンドを更新できません。" -#: ../../godmode/servers/plugin.php:952 +#: ../../godmode/servers/plugin.php:1207 msgid "" "The plugin macros cannot be updated because some modules or components are " "using the plugin" msgstr "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグインマクロは更新できません。" -#: ../../godmode/servers/recon_script.php:73 -msgid "Recon script creation" -msgstr "自動検出スクリプト作成" - -#: ../../godmode/servers/recon_script.php:75 -msgid "Recon script update" -msgstr "自動検出スクリプト更新" - -#: ../../godmode/servers/recon_script.php:101 -msgid "Script fullpath" -msgstr "スクリプトのフルパス" - -#: ../../godmode/servers/recon_script.php:228 -msgid "Recon scripts registered in Pandora FMS" -msgstr "Pandora FMS に定義されている自動検出スクリプト" - -#: ../../godmode/servers/recon_script.php:271 -msgid "Problem updating" -msgstr "問題の更新" - -#: ../../godmode/servers/recon_script.php:317 -msgid "Problem creating" -msgstr "問題の作成" - -#: ../../godmode/servers/recon_script.php:331 -msgid "Problem deleting reconscript" -msgstr "自動検出スクリプトの削除に失敗しました" - -#: ../../godmode/servers/recon_script.php:334 -msgid "reconscript deleted successfully" -msgstr "自動検出スクリプトを削除しました" - -#: ../../godmode/servers/recon_script.php:378 -msgid "There are no recon scripts in the system" -msgstr "自動検出スクリプトが定義されていません" - -#: ../../godmode/servers/servers.build_table.php:38 -#: ../../enterprise/meta/advanced/servers.build_table.php:33 +#: ../../godmode/servers/servers.build_table.php:37 +#: ../../enterprise/meta/advanced/servers.build_table.php:32 msgid "There are no servers configured into the database" msgstr "データベースにサーバがありません。" -#: ../../godmode/servers/servers.build_table.php:69 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../godmode/servers/servers.build_table.php:70 +#: ../../enterprise/meta/advanced/servers.build_table.php:63 msgid "Lag" msgstr "遅延" -#: ../../godmode/servers/servers.build_table.php:69 -#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../godmode/servers/servers.build_table.php:70 +#: ../../enterprise/meta/advanced/servers.build_table.php:63 msgid "Avg. Delay(sec)/Modules delayed" msgstr "平均遅延(秒)/遅延モジュール" -#: ../../godmode/servers/servers.build_table.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:64 msgid "T/Q" msgstr "T/Q" -#: ../../godmode/servers/servers.build_table.php:70 -#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../godmode/servers/servers.build_table.php:71 +#: ../../enterprise/meta/advanced/servers.build_table.php:64 msgid "Threads / Queued modules currently" msgstr "スレッド数 / 現在キューに溜まっているモジュール数" -#: ../../godmode/servers/servers.build_table.php:97 -#: ../../enterprise/meta/advanced/servers.build_table.php:92 +#: ../../godmode/servers/servers.build_table.php:101 +#: ../../enterprise/meta/advanced/servers.build_table.php:89 msgid "This is a master server" msgstr "マスタサーバです。" -#: ../../godmode/servers/servers.build_table.php:110 -#: ../../godmode/servers/servers.build_table.php:115 +#: ../../godmode/servers/servers.build_table.php:105 +msgid "Exec server enabled" +msgstr "" + +#: ../../godmode/servers/servers.build_table.php:121 +#: ../../godmode/servers/servers.build_table.php:127 #: ../../enterprise/meta/advanced/servers.build_table.php:104 -#: ../../enterprise/meta/advanced/servers.build_table.php:109 +#: ../../enterprise/meta/advanced/servers.build_table.php:110 msgid "of" msgstr "/" -#: ../../godmode/servers/servers.build_table.php:148 -msgid "Manage recon tasks" +#: ../../godmode/servers/servers.build_table.php:164 +msgid "Manage Discovery tasks" msgstr "自動検出タスク管理" -#: ../../godmode/servers/servers.build_table.php:155 +#: ../../godmode/servers/servers.build_table.php:176 msgid "Reset module status and fired alert counts" msgstr "モジュールの状態とアラート発報回数のリセット" -#: ../../godmode/servers/servers.build_table.php:161 +#: ../../godmode/servers/servers.build_table.php:184 msgid "Claim back SNMP modules" msgstr "SNMP モジュールに戻す" -#: ../../godmode/servers/servers.build_table.php:181 -#: ../../enterprise/meta/advanced/servers.build_table.php:133 +#: ../../godmode/servers/servers.build_table.php:214 +#: ../../enterprise/meta/advanced/servers.build_table.php:136 msgid "" "Modules run by this server will stop working. Do you want to continue?" msgstr "このサーバで動作しているモジュールを停止します。実行しますか?" -#: ../../godmode/servers/servers.build_table.php:202 -#: ../../enterprise/meta/advanced/servers.build_table.php:154 +#: ../../godmode/servers/servers.build_table.php:240 +#: ../../enterprise/meta/advanced/servers.build_table.php:162 msgid "Tactical server information" msgstr "モニタリングサーバの情報" -#: ../../godmode/setup/gis.php:62 +#: ../../godmode/setup/gis.php:74 msgid "Map connection name" msgstr "GIS 利用マップ名" -#: ../../godmode/setup/gis.php:83 +#: ../../godmode/setup/gis.php:92 msgid "Do you wan delete this connection?" msgstr "このマップ利用設定を削除しますか。" -#: ../../godmode/setup/gis_step_2.php:39 +#: ../../godmode/setup/gis_step_2.php:40 msgid "Create new map connection" msgstr "新たな利用マップ設定" -#: ../../godmode/setup/gis_step_2.php:58 +#: ../../godmode/setup/gis_step_2.php:66 msgid "Edit map connection" msgstr "利用マップ編集" -#: ../../godmode/setup/gis_step_2.php:150 +#: ../../godmode/setup/gis_step_2.php:197 msgid "Connection Name" msgstr "名称" -#: ../../godmode/setup/gis_step_2.php:150 +#: ../../godmode/setup/gis_step_2.php:197 msgid "Descriptive name for the connection" msgstr "利用マップ設定の名称" -#: ../../godmode/setup/gis_step_2.php:153 +#: ../../godmode/setup/gis_step_2.php:200 msgid "Group that owns the connection" msgstr "マップを利用するグループ" -#: ../../godmode/setup/gis_step_2.php:156 +#: ../../godmode/setup/gis_step_2.php:203 msgid "Number of zoom levels" msgstr "選択可能な拡大率の数" -#: ../../godmode/setup/gis_step_2.php:160 +#: ../../godmode/setup/gis_step_2.php:207 msgid "Default zoom level" msgstr "デフォルト拡大レベル" -#: ../../godmode/setup/gis_step_2.php:160 +#: ../../godmode/setup/gis_step_2.php:207 msgid "Zoom level used when the map is opened" msgstr "マップを開いた時の拡大レベル" -#: ../../godmode/setup/gis_step_2.php:163 +#: ../../godmode/setup/gis_step_2.php:210 msgid "Basic configuration" msgstr "基本設定" -#: ../../godmode/setup/gis_step_2.php:168 +#: ../../godmode/setup/gis_step_2.php:215 msgid "Open Street Maps" msgstr "Open Street マップ" -#: ../../godmode/setup/gis_step_2.php:169 +#: ../../godmode/setup/gis_step_2.php:216 msgid "Google Maps" msgstr "Google マップ" -#: ../../godmode/setup/gis_step_2.php:170 -msgid "Static Image" -msgstr "静的画像" +#: ../../godmode/setup/gis_step_2.php:218 +msgid "WMS Server" +msgstr "WMS サーバ" -#: ../../godmode/setup/gis_step_2.php:172 +#: ../../godmode/setup/gis_step_2.php:220 msgid "Please select the connection type" msgstr "利用マップタイプを選択してください" -#: ../../godmode/setup/gis_step_2.php:174 +#: ../../godmode/setup/gis_step_2.php:222 msgid "Map connection type" msgstr "利用マップタイプ" -#: ../../godmode/setup/gis_step_2.php:210 +#: ../../godmode/setup/gis_step_2.php:269 msgid "Tile Server URL" msgstr "サーバ URL" -#: ../../godmode/setup/gis_step_2.php:216 +#: ../../godmode/setup/gis_step_2.php:272 msgid "Google Physical" msgstr "地形" -#: ../../godmode/setup/gis_step_2.php:217 +#: ../../godmode/setup/gis_step_2.php:273 msgid "Google Hybrid" msgstr "航空写真" -#: ../../godmode/setup/gis_step_2.php:218 +#: ../../godmode/setup/gis_step_2.php:274 msgid "Google Satelite" msgstr "地図" -#: ../../godmode/setup/gis_step_2.php:222 +#: ../../godmode/setup/gis_step_2.php:276 msgid "Google Map Type" msgstr "Google マップタイプ" -#: ../../godmode/setup/gis_step_2.php:226 +#: ../../godmode/setup/gis_step_2.php:276 msgid "Google Maps Key" msgstr "Google マップキー" -#: ../../godmode/setup/gis_step_2.php:235 +#: ../../godmode/setup/gis_step_2.php:278 msgid "Image URL" msgstr "画像 URL" -#: ../../godmode/setup/gis_step_2.php:239 +#: ../../godmode/setup/gis_step_2.php:278 msgid "Corners of the area of the image" msgstr "画像が表す領域の範囲" -#: ../../godmode/setup/gis_step_2.php:242 +#: ../../godmode/setup/gis_step_2.php:278 msgid "Left" msgstr "左" -#: ../../godmode/setup/gis_step_2.php:244 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:42 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:42 +#: ../../godmode/setup/gis_step_2.php:278 +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:62 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:62 msgid "Bottom" msgstr "下" -#: ../../godmode/setup/gis_step_2.php:248 +#: ../../godmode/setup/gis_step_2.php:278 msgid "Right" msgstr "右" -#: ../../godmode/setup/gis_step_2.php:250 +#: ../../godmode/setup/gis_step_2.php:278 msgid "Top" msgstr "上" -#: ../../godmode/setup/gis_step_2.php:254 +#: ../../godmode/setup/gis_step_2.php:278 msgid "Image Size" msgstr "画像サイズ" -#: ../../godmode/setup/gis_step_2.php:279 +#: ../../godmode/setup/gis_step_2.php:281 +msgid "WMS Server URL" +msgstr "WMS サーバ URL" + +#: ../../godmode/setup/gis_step_2.php:281 +msgid "Enter a single element or a comma separated list" +msgstr "単一の要素もしくはカンマ区切りの一覧を入力してください" + +#: ../../godmode/setup/gis_step_2.php:309 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:280 +#: ../../godmode/setup/gis_step_2.php:310 msgid "Load preview map" msgstr "マッププレビュー" -#: ../../godmode/setup/gis_step_2.php:289 +#: ../../godmode/setup/gis_step_2.php:319 msgid "Map Center" msgstr "マップの中心" -#: ../../godmode/setup/gis_step_2.php:289 +#: ../../godmode/setup/gis_step_2.php:319 msgid "Position to center the map when the map is opened" msgstr "マップを開いた時の中心位置" -#: ../../godmode/setup/gis_step_2.php:290 +#: ../../godmode/setup/gis_step_2.php:320 msgid "Default position for agents without GIS data" msgstr "GIS データが無い場合のエージェントのデフォルト位置" -#: ../../godmode/setup/gis_step_2.php:292 +#: ../../godmode/setup/gis_step_2.php:322 msgid "Change in the map" msgstr "マップ内での変更" -#: ../../godmode/setup/gis_step_2.php:292 +#: ../../godmode/setup/gis_step_2.php:322 msgid "This selects what to change by clicking on the map" msgstr "マップ上でクリックした位置情報をどちらに反映させるかを選択します。" -#: ../../godmode/setup/gis_step_2.php:296 -#: ../../operation/agentes/gis_view.php:199 +#: ../../godmode/setup/gis_step_2.php:326 +#: ../../operation/agentes/gis_view.php:215 msgid "Latitude" msgstr "緯度" -#: ../../godmode/setup/gis_step_2.php:300 -#: ../../operation/agentes/gis_view.php:198 +#: ../../godmode/setup/gis_step_2.php:330 +#: ../../operation/agentes/gis_view.php:214 msgid "Longitude" msgstr "経度" -#: ../../godmode/setup/gis_step_2.php:304 -#: ../../operation/agentes/gis_view.php:200 +#: ../../godmode/setup/gis_step_2.php:334 +#: ../../operation/agentes/gis_view.php:216 msgid "Altitude" msgstr "高度" -#: ../../godmode/setup/gis_step_2.php:353 -#: ../../godmode/setup/gis_step_2.php:446 +#: ../../godmode/setup/gis_step_2.php:383 +#: ../../godmode/setup/gis_step_2.php:478 msgid "Center" msgstr "中心" -#: ../../godmode/setup/gis_step_2.php:413 +#: ../../godmode/setup/gis_step_2.php:443 msgid "Refresh preview map" msgstr "マッププレビューの再実行" -#: ../../godmode/setup/license.php:27 +#: ../../godmode/setup/license.php:48 msgid "License management" msgstr "ライセンス管理" -#: ../../godmode/setup/license.php:37 +#: ../../godmode/setup/license.php:70 msgid "License updated" msgstr "ライセンスを更新しました" -#: ../../godmode/setup/license.php:64 -#: ../../enterprise/meta/advanced/license_meta.php:79 +#: ../../godmode/setup/license.php:99 +msgid "Licence" +msgstr "ライセンス" + +#: ../../godmode/setup/license.php:107 +#: ../../include/class/Diagnostics.class.php:1143 msgid "Customer key" msgstr "カスタマーキー" -#: ../../godmode/setup/license.php:67 -#: ../../enterprise/meta/advanced/license_meta.php:82 -msgid "Expires" -msgstr "有効期限" - -#: ../../godmode/setup/license.php:70 -#: ../../enterprise/meta/advanced/license_meta.php:85 +#: ../../godmode/setup/license.php:113 +#: ../../include/class/Diagnostics.class.php:1151 msgid "Platform Limit" msgstr "ライセンス数上限" -#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 -#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 -#: ../../enterprise/meta/advanced/license_meta.php:86 -#: ../../enterprise/meta/advanced/license_meta.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:92 -#: ../../enterprise/meta/advanced/license_meta.php:95 +#: ../../godmode/setup/license.php:114 ../../godmode/setup/license.php:117 +#: ../../godmode/setup/license.php:120 ../../godmode/setup/license.php:123 msgid "agents" msgstr "エージェント" -#: ../../godmode/setup/license.php:71 ../../godmode/setup/license.php:74 -#: ../../godmode/setup/license.php:77 ../../godmode/setup/license.php:80 -#: ../../operation/tree.php:103 -#: ../../enterprise/meta/advanced/license_meta.php:86 -#: ../../enterprise/meta/advanced/license_meta.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:92 -#: ../../enterprise/meta/advanced/license_meta.php:95 +#: ../../godmode/setup/license.php:114 ../../godmode/setup/license.php:117 +#: ../../godmode/setup/license.php:120 ../../godmode/setup/license.php:123 +#: ../../operation/tree.php:122 msgid "modules" msgstr "モジュール" -#: ../../godmode/setup/license.php:73 -#: ../../enterprise/meta/advanced/license_meta.php:88 +#: ../../godmode/setup/license.php:116 +#: ../../include/class/Diagnostics.class.php:1155 msgid "Current Platform Count" msgstr "現在の利用数" -#: ../../godmode/setup/license.php:76 -#: ../../enterprise/meta/advanced/license_meta.php:91 +#: ../../godmode/setup/license.php:119 +#: ../../include/class/Diagnostics.class.php:1159 msgid "Current Platform Count (enabled: items)" msgstr "現在の利用数 (有効のもの)" -#: ../../godmode/setup/license.php:79 -#: ../../enterprise/meta/advanced/license_meta.php:94 +#: ../../godmode/setup/license.php:122 +#: ../../include/class/Diagnostics.class.php:1163 msgid "Current Platform Count (disabled: items)" msgstr "現在の利用数 (無効のもの)" -#: ../../godmode/setup/license.php:82 -#: ../../enterprise/meta/advanced/license_meta.php:97 +#: ../../godmode/setup/license.php:125 +#: ../../include/class/Diagnostics.class.php:1167 msgid "License Mode" msgstr "ライセンスモード" -#: ../../godmode/setup/license.php:85 -#: ../../enterprise/meta/advanced/license_meta.php:100 +#: ../../godmode/setup/license.php:128 msgid "NMS" msgstr "NMS" -#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:101 -#: ../../enterprise/meta/advanced/license_meta.php:104 +#: ../../godmode/setup/license.php:129 ../../godmode/setup/license.php:132 msgid "enabled" msgstr "有効" -#: ../../godmode/setup/license.php:86 ../../godmode/setup/license.php:89 -#: ../../enterprise/meta/advanced/license_meta.php:101 -#: ../../enterprise/meta/advanced/license_meta.php:104 +#: ../../godmode/setup/license.php:129 ../../godmode/setup/license.php:132 msgid "disabled" msgstr "無効化" -#: ../../godmode/setup/license.php:91 -#: ../../enterprise/meta/advanced/license_meta.php:106 +#: ../../godmode/setup/license.php:134 +#: ../../include/class/Diagnostics.class.php:1179 msgid "Licensed to" msgstr "ライセンス先" -#: ../../godmode/setup/license.php:98 ../../mobile/operation/events.php:528 -#: ../../operation/agentes/alerts_status.php:469 -#: ../../operation/agentes/alerts_status.php:510 -#: ../../operation/agentes/alerts_status.php:544 -#: ../../operation/agentes/alerts_status.php:578 -#: ../../operation/agentes/alerts_status.php:623 -#: ../../operation/snmpconsole/snmp_view.php:853 -#: ../../operation/snmpconsole/snmp_view.php:1014 -#: ../../operation/snmpconsole/snmp_view.php:1042 -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -#: ../../enterprise/godmode/alerts/alert_events_list.php:676 -#: ../../enterprise/load_enterprise.php:494 +#: ../../godmode/setup/license.php:143 ../../mobile/operation/events.php:570 +#: ../../operation/agentes/alerts_status.php:532 +#: ../../operation/agentes/alerts_status.php:569 +#: ../../operation/agentes/alerts_status.php:602 +#: ../../operation/agentes/alerts_status.php:679 +#: ../../operation/snmpconsole/snmp_view.php:972 +#: ../../operation/snmpconsole/snmp_view.php:1133 +#: ../../operation/snmpconsole/snmp_view.php:1186 +#: ../../enterprise/godmode/alerts/alert_events_list.php:758 +#: ../../enterprise/godmode/reporting/aws_view.php:154 +#: ../../enterprise/godmode/wizards/Cloud.class.php:305 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2835 +#: ../../enterprise/load_enterprise.php:538 msgid "Validate" msgstr "承諾する" -#: ../../godmode/setup/license.php:100 ../../godmode/setup/license.php:104 -#: ../../enterprise/meta/advanced/license_meta.php:115 -#: ../../enterprise/meta/advanced/license_meta.php:119 +#: ../../godmode/setup/license.php:145 ../../godmode/setup/license.php:160 msgid "Request new license" msgstr "新規ライセンス要求" -#: ../../godmode/setup/license.php:108 -#: ../../enterprise/meta/advanced/license_meta.php:123 -msgid "To get your Pandora FMS Enterprise License:" -msgstr "Pandora FMS Enterprise ライセンスの取得方法:" +#: ../../godmode/setup/license.php:164 +#, php-format +msgid "To get your %s Enterprise License:" +msgstr "%s Enterprise ライセンスの取得:" -#: ../../godmode/setup/license.php:111 -#: ../../enterprise/meta/advanced/license_meta.php:126 +#: ../../godmode/setup/license.php:167 #, php-format msgid "Go to %s" msgstr "%s へ移動" -#: ../../godmode/setup/license.php:114 -#: ../../enterprise/meta/advanced/license_meta.php:129 +#: ../../godmode/setup/license.php:170 msgid "Enter the auth key and the following request key:" msgstr "auth key と次の request key を入力してください:" -#: ../../godmode/setup/license.php:120 -#: ../../enterprise/meta/advanced/license_meta.php:135 +#: ../../godmode/setup/license.php:176 msgid "Enter your name (or a company name) and a contact email address." msgstr "あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。" -#: ../../godmode/setup/license.php:123 -#: ../../enterprise/meta/advanced/license_meta.php:138 +#: ../../godmode/setup/license.php:179 msgid "Click on Generate." msgstr "
    生成 をクリックします。" -#: ../../godmode/setup/license.php:126 -#: ../../enterprise/meta/advanced/license_meta.php:141 +#: ../../godmode/setup/license.php:182 msgid "" "Click here, enter " "the generated license key and click on Validate." @@ -16457,325 +18059,360 @@ msgstr "" "close_code_license_dialog();\">ここをクリックし、生成されたライセンスキーを入力し有効化をクリックしま" "す。" -#: ../../godmode/setup/links.php:27 +#: ../../godmode/setup/links.php:25 msgid "Link management" msgstr "リンク管理" -#: ../../godmode/setup/links.php:39 +#: ../../godmode/setup/links.php:39 ../../enterprise/meta/advanced/links.php:44 msgid "There was a problem creating link" msgstr "リンクの作成に失敗しました。" -#: ../../godmode/setup/links.php:56 +#: ../../godmode/setup/links.php:58 ../../enterprise/meta/advanced/links.php:65 msgid "There was a problem modifying link" msgstr "リンクの編集に失敗しました。" -#: ../../godmode/setup/links.php:67 +#: ../../godmode/setup/links.php:71 ../../enterprise/meta/advanced/links.php:79 msgid "There was a problem deleting link" msgstr "リンクの削除に失敗しました。" -#: ../../godmode/setup/links.php:86 ../../godmode/setup/news.php:130 +#: ../../godmode/setup/links.php:89 ../../godmode/setup/news.php:144 msgid "Name error" msgstr "名前が不正です。" -#: ../../godmode/setup/links.php:106 ../../godmode/setup/links.php:136 +#: ../../godmode/setup/links.php:113 ../../godmode/setup/links.php:142 +#: ../../enterprise/meta/advanced/links.php:124 +#: ../../enterprise/meta/advanced/links.php:151 msgid "Link name" msgstr "リンク名" -#: ../../godmode/setup/links.php:109 -#: ../../enterprise/godmode/policies/policy_linking.php:137 +#: ../../godmode/setup/links.php:116 +#: ../../enterprise/godmode/policies/policy_linking.php:170 +#: ../../enterprise/meta/advanced/links.php:127 msgid "Link" msgstr "リンク" -#: ../../godmode/setup/links.php:132 +#: ../../godmode/setup/links.php:138 +#: ../../enterprise/meta/advanced/links.php:147 msgid "There isn't links" msgstr "リンクがありません" -#: ../../godmode/setup/news.php:28 +#: ../../godmode/setup/news.php:29 msgid "Site news management" msgstr "サイトニュース管理" -#: ../../godmode/setup/news.php:161 ../../godmode/setup/news.php:220 -#: ../../godmode/update_manager/update_manager.messages.php:136 -#: ../../operation/messages/message_edit.php:85 -#: ../../operation/messages/message_edit.php:207 -#: ../../operation/messages/message_list.php:126 +#: ../../godmode/setup/news.php:175 ../../godmode/setup/news.php:236 +#: ../../operation/messages/message_edit.php:331 +#: ../../operation/messages/message_list.php:167 +#: ../../enterprise/include/functions_cron.php:186 +#: ../../enterprise/include/functions_cron.php:231 +#: ../../enterprise/operation/reporting/custom_reporting.php:104 msgid "Subject" msgstr "件名" -#: ../../godmode/setup/news.php:167 +#: ../../godmode/setup/news.php:181 msgid "Modal screen" msgstr "別ウインドウ" -#: ../../godmode/setup/news.php:170 +#: ../../godmode/setup/news.php:184 msgid "Expire" msgstr "有効期限" -#: ../../godmode/setup/news.php:173 ../../godmode/setup/news.php:224 +#: ../../godmode/setup/news.php:187 ../../godmode/setup/news.php:240 msgid "Expiration" msgstr "有効期限" -#: ../../godmode/setup/news.php:215 +#: ../../godmode/setup/news.php:231 msgid "There are no defined news" msgstr "定義済のニュースがありません" -#: ../../godmode/setup/news.php:222 -#: ../../operation/agentes/estado_generalagente.php:421 -#: ../../operation/incidents/incident_detail.php:419 +#: ../../godmode/setup/news.php:238 +#: ../../operation/agentes/estado_generalagente.php:565 +#: ../../operation/incidents/incident_detail.php:440 msgid "Author" msgstr "作者" -#: ../../godmode/setup/news.php:242 +#: ../../godmode/setup/news.php:258 msgid "Modal" msgstr "別ウインドウ" -#: ../../godmode/setup/news.php:245 +#: ../../godmode/setup/news.php:260 msgid "Board" msgstr "ボード" -#: ../../godmode/setup/news.php:256 +#: ../../godmode/setup/news.php:271 msgid "Expired" msgstr "期限切れ" -#: ../../godmode/setup/os.list.php:75 +#: ../../godmode/setup/os.list.php:90 msgid "There are no defined operating systems" msgstr "定義済のオペレーティングシステムがありません" -#: ../../godmode/setup/os.list.php:81 +#: ../../godmode/setup/os.list.php:96 msgid "Create OS" msgstr "OS を作成" -#: ../../godmode/setup/os.php:73 +#: ../../godmode/setup/os.php:74 msgid "Fail creating OS" msgstr "OS の作成に失敗しました" -#: ../../godmode/setup/os.php:80 +#: ../../godmode/setup/os.php:80 ../../include/functions_api.php:1684 msgid "Success creating OS" msgstr "OS を作成しました" -#: ../../godmode/setup/os.php:100 +#: ../../godmode/setup/os.php:103 msgid "Success updatng OS" msgstr "OS を更新しました" -#: ../../godmode/setup/os.php:100 +#: ../../godmode/setup/os.php:103 ../../include/functions_api.php:1717 msgid "Error updating OS" msgstr "OS の更新に失敗しました" -#: ../../godmode/setup/os.php:119 +#: ../../godmode/setup/os.php:123 msgid "There are agents with this OS." msgstr "この OS のエージェントがあります。" -#: ../../godmode/setup/os.php:124 +#: ../../godmode/setup/os.php:127 msgid "Success deleting" msgstr "削除しました" -#: ../../godmode/setup/os.php:124 +#: ../../godmode/setup/os.php:127 msgid "Error deleting" msgstr "削除に失敗しました" -#: ../../godmode/setup/os.php:133 +#: ../../godmode/setup/os.php:135 msgid "List OS" msgstr "OS 一覧" -#: ../../godmode/setup/os.php:137 +#: ../../godmode/setup/os.php:139 msgid "Builder OS" msgstr "OS 設定" -#: ../../godmode/setup/performance.php:49 -#: ../../include/functions_config.php:401 -#: ../../enterprise/meta/advanced/metasetup.performance.php:78 -#: ../../enterprise/meta/include/functions_meta.php:1426 +#: ../../godmode/setup/performance.php:172 +msgid "Pandora_db running in active database." +msgstr "アクティブデータベースで pandora_db が動作しています。" + +#: ../../godmode/setup/performance.php:173 +#: ../../godmode/setup/performance.php:229 +msgid "Executed:" +msgstr "実行済:" + +#: ../../godmode/setup/performance.php:228 +msgid "Pandora_db running in historical database." +msgstr "ヒストリデータベースで pandora_db が動作しています。" + +#: ../../godmode/setup/performance.php:236 +msgid "not executed" +msgstr "未実行" + +#: ../../godmode/setup/performance.php:251 +#: ../../godmode/setup/performance.php:494 +#: ../../include/functions_config.php:737 +#: ../../enterprise/meta/advanced/metasetup.performance.php:76 +#: ../../enterprise/meta/include/functions_meta.php:1709 msgid "Max. days before delete events" msgstr "イベントデータ保持日数" -#: ../../godmode/setup/performance.php:49 +#: ../../godmode/setup/performance.php:253 +#: ../../godmode/setup/performance.php:496 msgid "" "If the compaction or purge of the data is more frequent than the events " "deletion, anomalies in module graphs could appear" msgstr "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしくなる可能性があります" -#: ../../godmode/setup/performance.php:52 -#: ../../include/functions_config.php:403 +#: ../../godmode/setup/performance.php:266 +#: ../../include/functions_config.php:742 msgid "Max. days before delete traps" msgstr "トラップデータ保持日数" -#: ../../godmode/setup/performance.php:55 -#: ../../include/functions_config.php:407 -#: ../../enterprise/meta/advanced/metasetup.performance.php:85 -#: ../../enterprise/meta/include/functions_meta.php:1446 +#: ../../godmode/setup/performance.php:276 +#: ../../include/functions_config.php:750 +#: ../../enterprise/meta/advanced/metasetup.performance.php:83 +#: ../../enterprise/meta/include/functions_meta.php:1727 msgid "Max. days before delete audit events" msgstr "監査イベントデータ保持日数" -#: ../../godmode/setup/performance.php:58 -#: ../../include/functions_config.php:405 +#: ../../godmode/setup/performance.php:286 +#: ../../godmode/setup/performance.php:509 +#: ../../include/functions_config.php:746 msgid "Max. days before delete string data" msgstr "文字列データ保持日数" -#: ../../godmode/setup/performance.php:61 -#: ../../include/functions_config.php:409 +#: ../../godmode/setup/performance.php:296 +#: ../../include/functions_config.php:754 msgid "Max. days before delete GIS data" msgstr "GIS データ保持日数" -#: ../../godmode/setup/performance.php:64 -#: ../../include/functions_config.php:411 +#: ../../godmode/setup/performance.php:306 +#: ../../godmode/setup/performance.php:456 +#: ../../include/functions_config.php:758 msgid "Max. days before purge" msgstr "データ保持日数" -#: ../../godmode/setup/performance.php:64 +#: ../../godmode/setup/performance.php:308 +#: ../../godmode/setup/performance.php:458 msgid "" "Configure a purge period more frequent than a compact data period has no " "sense" msgstr "データの圧縮よりも削除を短くすることには意味がありません" -#: ../../godmode/setup/performance.php:67 -#: ../../include/functions_config.php:415 +#: ../../godmode/setup/performance.php:320 +#: ../../godmode/setup/performance.php:470 +#: ../../include/functions_config.php:766 msgid "Max. days before compact data" msgstr "データ保持日数(丸め込みなし)" -#: ../../godmode/setup/performance.php:70 -#: ../../include/functions_config.php:413 +#: ../../godmode/setup/performance.php:330 +#: ../../include/functions_config.php:762 msgid "Max. days before delete unknown modules" msgstr "不明モジュール保持日数" -#: ../../godmode/setup/performance.php:73 +#: ../../godmode/setup/performance.php:340 msgid "Max. days before delete autodisabled agents" msgstr "自動無効化エージェントを削除せず保持する日数" -#: ../../godmode/setup/performance.php:76 -#: ../../include/functions_config.php:439 +#: ../../godmode/setup/performance.php:350 +#: ../../include/functions_config.php:814 msgid "Retention period of past special days" msgstr "過去の特別日の保存期間" -#: ../../godmode/setup/performance.php:76 +#: ../../godmode/setup/performance.php:352 msgid "This number is days to keep past special days. 0 means never remove." msgstr "過ぎた特別日を保持する日数です。0 を設定すると永久保存になります。" -#: ../../godmode/setup/performance.php:79 -#: ../../include/functions_config.php:441 +#: ../../godmode/setup/performance.php:364 +#: ../../include/functions_config.php:818 msgid "Max. macro data fields" msgstr "最大マクロデータフィールド" -#: ../../godmode/setup/performance.php:79 +#: ../../godmode/setup/performance.php:366 msgid "Number of macro fields in alerts and templates between 1 and 15" msgstr "アラートとテンプレートのマクロフィールド数は、1 から 15 までです" -#: ../../godmode/setup/performance.php:83 -#: ../../include/functions_config.php:444 +#: ../../godmode/setup/performance.php:382 +#: ../../include/functions_config.php:823 msgid "Max. days before delete inventory data" msgstr "インベントリデータの保持日数" -#: ../../godmode/setup/performance.php:96 +#: ../../godmode/setup/performance.php:431 +msgid "The tconfig table does not exist in the historical database" +msgstr "ヒストリデータベースに tconfig テーブルが存在しません。" + +#: ../../godmode/setup/performance.php:480 +#: ../../godmode/setup/performance.php:574 +#: ../../include/functions_config.php:778 +msgid "Compact interpolation in hours (1 Fine-20 bad)" +msgstr "データ縮小時の丸め込み単位時間 (1〜20)" + +#: ../../godmode/setup/performance.php:482 +#: ../../godmode/setup/performance.php:576 +msgid "Data will be compacted in intervals of the specified length." +msgstr "指定した間隔でデータは丸め込まれます。" + +#: ../../godmode/setup/performance.php:527 +#: ../../include/functions_config.php:828 +msgid "Max. days before delete old messages" +msgstr "古いメッセージの保持日数" + +#: ../../godmode/setup/performance.php:540 +#: ../../include/functions_config.php:832 +msgid "Max. days before delete old network matrix data" +msgstr "ネットワークマトリックスデータ保持日数" + +#: ../../godmode/setup/performance.php:560 msgid "Item limit for realtime reports" msgstr "リアルタイムレポートのアイテム制限" -#: ../../godmode/setup/performance.php:96 +#: ../../godmode/setup/performance.php:562 msgid "" "Set a value too high cause a slowdown on console and a performance penalty " "in the system." msgstr "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が発生します。" -#: ../../godmode/setup/performance.php:100 -#: ../../include/functions_config.php:421 -msgid "Compact interpolation in hours (1 Fine-20 bad)" -msgstr "データ縮小時の丸め込み単位時間 (1〜20)" - -#: ../../godmode/setup/performance.php:100 -msgid "Data will be compacted in intervals of the specified length." -msgstr "指定した間隔でデータは丸め込まれます。" - -#: ../../godmode/setup/performance.php:106 ../../include/ajax/module.php:141 -#: ../../include/functions_netflow.php:1055 -#: ../../include/functions_netflow.php:1088 -#: ../../enterprise/dashboard/widgets/top_n.php:64 -#: ../../enterprise/godmode/agentes/inventory_manager.php:179 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:193 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:185 +#: ../../godmode/setup/performance.php:590 ../../include/ajax/module.php:167 +#: ../../include/functions_notifications.php:723 +#: ../../enterprise/dashboard/widgets/top_n.php:68 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 msgid "12 hours" msgstr "12時間" -#: ../../godmode/setup/performance.php:107 +#: ../../godmode/setup/performance.php:591 msgid "Last day" msgstr "昨日" -#: ../../godmode/setup/performance.php:108 -#: ../../include/functions_netflow.php:1057 -#: ../../include/functions_netflow.php:1090 -#: ../../enterprise/godmode/agentes/inventory_manager.php:181 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:195 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 +#: ../../godmode/setup/performance.php:592 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 msgid "2 days" msgstr "2日" -#: ../../godmode/setup/performance.php:109 +#: ../../godmode/setup/performance.php:593 msgid "10 days" msgstr "10日" -#: ../../godmode/setup/performance.php:110 -#: ../../include/functions_netflow.php:1060 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:189 +#: ../../godmode/setup/performance.php:594 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 msgid "Last week" msgstr "先週" -#: ../../godmode/setup/performance.php:111 +#: ../../godmode/setup/performance.php:595 msgid "2 weeks" msgstr "2週間" -#: ../../godmode/setup/performance.php:112 -#: ../../include/functions_netflow.php:1061 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../godmode/setup/performance.php:596 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:195 msgid "Last month" msgstr "先月" -#: ../../godmode/setup/performance.php:114 -#: ../../include/functions_config.php:423 -#: ../../enterprise/meta/advanced/metasetup.performance.php:88 -#: ../../enterprise/meta/include/functions_meta.php:1456 +#: ../../godmode/setup/performance.php:598 +#: ../../include/functions_config.php:782 +#: ../../enterprise/meta/advanced/metasetup.performance.php:86 +#: ../../enterprise/meta/include/functions_meta.php:1736 msgid "Default hours for event view" msgstr "イベント表示期間(時間)" -#: ../../godmode/setup/performance.php:117 -#: ../../include/functions_config.php:425 +#: ../../godmode/setup/performance.php:608 +#: ../../include/functions_config.php:786 msgid "Use realtime statistics" msgstr "リアルタイム更新の利用" -#: ../../godmode/setup/performance.php:121 -#: ../../include/functions_config.php:427 +#: ../../godmode/setup/performance.php:616 +#: ../../include/functions_config.php:790 msgid "Batch statistics period (secs)" msgstr "バッチ更新間隔(秒)" -#: ../../godmode/setup/performance.php:121 +#: ../../godmode/setup/performance.php:618 msgid "" "If realtime statistics are disabled, statistics interval resfresh will be " "set here." msgstr "リアルタイム統計が無効の場合、ここで統計処理間隔を設定します。" -#: ../../godmode/setup/performance.php:124 -#: ../../include/functions_config.php:429 -#: ../../enterprise/meta/include/functions_meta.php:1466 +#: ../../godmode/setup/performance.php:630 +#: ../../include/functions_config.php:794 +#: ../../enterprise/meta/include/functions_meta.php:1745 msgid "Use agent access graph" msgstr "エージェントアクセスグラフの利用" -#: ../../godmode/setup/performance.php:128 -#: ../../include/functions_config.php:431 +#: ../../godmode/setup/performance.php:633 +#: ../../include/functions_config.php:798 msgid "Max. recommended number of files in attachment directory" msgstr "添付ディレクトリファイルの推奨上限数" -#: ../../godmode/setup/performance.php:128 +#: ../../godmode/setup/performance.php:635 msgid "" "This number is the maximum number of files in attachment directory. If this " "number is reached then a warning message will appear in the header " "notification space." msgstr "添付ディレクトリにおくファイルの上限数です。ファイル数がこの値に達した場合、コンソールのヘッダ部分に警告メッセージが現れます。" -#: ../../godmode/setup/performance.php:131 -#: ../../include/functions_config.php:433 +#: ../../godmode/setup/performance.php:647 +#: ../../include/functions_config.php:802 msgid "Delete not init modules" msgstr "未初期化モジュールの削除" -#: ../../godmode/setup/performance.php:135 +#: ../../godmode/setup/performance.php:650 msgid "Big Operation Step to purge old data" msgstr "古いデータ削除のための大きい処理の分割数" -#: ../../godmode/setup/performance.php:135 +#: ../../godmode/setup/performance.php:652 msgid "" "The number of blocks that a time interval is split into. A bigger value " "means bigger blocks, which is faster but heavier on the database. Default is " @@ -16784,12 +18421,12 @@ msgstr "" "処理の単位を分割するブロック数です。大きい値は多くのブロックを意味します。大きくすると処理は早くなりますがデータベースに負荷がかかります。デフォルトは " "100です。" -#: ../../godmode/setup/performance.php:138 -#: ../../include/functions_config.php:437 +#: ../../godmode/setup/performance.php:664 +#: ../../include/functions_config.php:810 msgid "Small Operation Step to purge old data" msgstr "古いデータ削除のための小さな操作ステップ" -#: ../../godmode/setup/performance.php:138 +#: ../../godmode/setup/performance.php:666 msgid "" "The number of rows that are processed in a single query in deletion. Default " "is 1000. Increase to 3000-5000 in fast systems. Decrease to 500 or 250 on " @@ -16798,479 +18435,667 @@ msgstr "" "単一の削除クエリで処理される行数です。デフォルトは 1000です。処理が速いシステムで、3000-" "5000に増加してください。500や250に減らすと、システムがロックします。" -#: ../../godmode/setup/performance.php:141 -#: ../../include/functions_config.php:447 +#: ../../godmode/setup/performance.php:678 +#: ../../include/functions_config.php:836 msgid "Graph container - Max. Items" msgstr "グラフコンテナ - 最大アイテム" -#: ../../godmode/setup/performance.php:141 +#: ../../godmode/setup/performance.php:680 msgid "" "The number of graphs that are viewed in a container. Default is 10 " ".Increasing this number could lead to performance problems" msgstr "コンテナで表示する最大グラフ数。デフォルトは 10です。この数値を増やすとパフォーマンスの問題を引き起こす可能性があります。" -#: ../../godmode/setup/performance.php:146 +#: ../../godmode/setup/performance.php:692 +#: ../../enterprise/meta/advanced/metasetup.performance.php:99 +msgid "Events response max. execution" +msgstr "イベント応答の最大実行" + +#: ../../godmode/setup/performance.php:694 +#: ../../enterprise/meta/advanced/metasetup.performance.php:101 +msgid "" +"Number of events that will perform the desired action at the same time" +msgstr "同時に目的のアクションを実行するイベントの数" + +#: ../../godmode/setup/performance.php:709 +msgid "Database maintenance status" +msgstr "データベースメンテナンス状態" + +#: ../../godmode/setup/performance.php:714 msgid "Database maintenance options" msgstr "データベースメンテナンスオプション" -#: ../../godmode/setup/performance.php:152 -#: ../../include/functions_visual_map.php:2818 -#: ../../include/functions_graph.php:3717 +#: ../../godmode/setup/performance.php:720 +msgid "Historical database maintenance options" +msgstr "ヒストリデータベースメンテナンスオプション" + +#: ../../godmode/setup/performance.php:726 +#: ../../include/functions_network.php:242 +#: ../../include/functions_visual_map.php:2962 +#: ../../include/functions_netflow.php:1826 +#: ../../operation/network/network_report.php:344 msgid "Others" msgstr "その他" -#: ../../godmode/setup/setup.php:145 +#: ../../godmode/setup/setup.php:138 +msgid "Websocket engine" +msgstr "Websocket エンジン" + +#: ../../godmode/setup/setup.php:193 +msgid "Pandora Websocket Engine" +msgstr "Pandora Websocket エンジン" + +#: ../../godmode/setup/setup.php:222 msgid "Correct update the setup options" msgstr "設定オプションを更新しました" -#: ../../godmode/setup/setup_auth.php:49 -#: ../../include/functions_config.php:351 -#: ../../enterprise/meta/include/functions_meta.php:612 +#: ../../godmode/setup/setup_auth.php:46 ../../include/functions_config.php:616 +#: ../../enterprise/meta/include/functions_meta.php:683 msgid "Fallback to local authentication" msgstr "ローカル認証へのフォールバック" -#: ../../godmode/setup/setup_auth.php:50 +#: ../../godmode/setup/setup_auth.php:46 msgid "" "Enable this option if you want to fallback to local authentication when " -"remote (ldap etc...) authentication failed." -msgstr "リモート(ldapなど)認証が失敗した場合にローカル認証にフォールバックしたい場合は、このオプションを有効にします。" +"remote (ldap etc...) authentication failed. Only available when 'Save " +"password' is enabled." +msgstr "" +"リモート(LDAPなど)認証が失敗したときにローカル認証にフォールバックする場合は、このオプションを有効にします。\"パスワード保存\" " +"が有効になっている場合にのみ使用できます。" -#: ../../godmode/setup/setup_auth.php:58 -#: ../../include/functions_config.php:308 -#: ../../enterprise/meta/include/functions_meta.php:622 +#: ../../godmode/setup/setup_auth.php:53 ../../include/functions_config.php:528 +#: ../../enterprise/meta/include/functions_meta.php:692 +#: ../../enterprise/meta/include/functions_meta.php:864 msgid "Autocreate remote users" msgstr "リモートユーザの自動作成" -#: ../../godmode/setup/setup_auth.php:74 -#: ../../include/functions_config.php:335 -#: ../../enterprise/meta/include/functions_meta.php:796 +#: ../../godmode/setup/setup_auth.php:68 ../../include/functions_config.php:584 +#: ../../enterprise/meta/include/functions_meta.php:1019 msgid "LDAP server" msgstr "LDAP サーバ" -#: ../../godmode/setup/setup_auth.php:80 -#: ../../include/functions_config.php:337 -#: ../../enterprise/meta/include/functions_meta.php:806 +#: ../../godmode/setup/setup_auth.php:74 ../../include/functions_config.php:588 +#: ../../enterprise/meta/include/functions_meta.php:1028 msgid "LDAP port" msgstr "LDAP ポート" -#: ../../godmode/setup/setup_auth.php:87 -#: ../../include/functions_config.php:339 -#: ../../enterprise/meta/include/functions_meta.php:816 +#: ../../godmode/setup/setup_auth.php:85 ../../include/functions_config.php:592 +#: ../../enterprise/meta/include/functions_meta.php:1037 msgid "LDAP version" msgstr "LDAP バージョン" -#: ../../godmode/setup/setup_auth.php:93 -#: ../../include/functions_config.php:323 -#: ../../include/functions_config.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:821 -#: ../../enterprise/meta/include/functions_meta.php:714 -#: ../../enterprise/meta/include/functions_meta.php:826 +#: ../../godmode/setup/setup_auth.php:91 ../../include/functions_config.php:560 +#: ../../include/functions_config.php:596 +#: ../../enterprise/godmode/setup/setup_auth.php:1057 +#: ../../enterprise/meta/include/functions_meta.php:786 +#: ../../enterprise/meta/include/functions_meta.php:1046 msgid "Start TLS" msgstr "TLS の開始" -#: ../../godmode/setup/setup_auth.php:100 -#: ../../include/functions_config.php:343 -#: ../../enterprise/meta/include/functions_meta.php:836 +#: ../../godmode/setup/setup_auth.php:97 ../../include/functions_config.php:600 +#: ../../enterprise/meta/include/functions_meta.php:1055 msgid "Base DN" msgstr "ベース DN" -#: ../../godmode/setup/setup_auth.php:106 -#: ../../include/functions_config.php:345 -#: ../../enterprise/meta/include/functions_meta.php:846 +#: ../../godmode/setup/setup_auth.php:103 +#: ../../include/functions_config.php:604 +#: ../../enterprise/meta/include/functions_meta.php:1064 msgid "Login attribute" msgstr "ログイン属性" -#: ../../godmode/setup/setup_auth.php:112 -#: ../../include/functions_config.php:347 -#: ../../enterprise/meta/include/functions_meta.php:856 +#: ../../godmode/setup/setup_auth.php:109 +#: ../../include/functions_config.php:608 +#: ../../enterprise/meta/include/functions_meta.php:1073 msgid "Admin LDAP login" msgstr "LDAP 管理者ログイン" -#: ../../godmode/setup/setup_auth.php:118 -#: ../../include/functions_config.php:349 -#: ../../enterprise/meta/include/functions_meta.php:866 +#: ../../godmode/setup/setup_auth.php:115 +#: ../../include/functions_config.php:612 +#: ../../enterprise/meta/include/functions_meta.php:1082 msgid "Admin LDAP password" msgstr "LDAP 管理者パスワード" -#: ../../godmode/setup/setup_auth.php:139 -#: ../../include/functions_config.php:389 -#: ../../operation/users/user_edit.php:337 -#: ../../enterprise/meta/include/functions_meta.php:672 +#: ../../godmode/setup/setup_auth.php:136 +#: ../../include/functions_config.php:720 +#: ../../operation/users/user_edit.php:402 +#: ../../enterprise/meta/include/functions_meta.php:746 +#: ../../enterprise/meta/include/functions_meta.php:996 msgid "Double authentication" msgstr "二段階認証" -#: ../../godmode/setup/setup_auth.php:140 +#: ../../godmode/setup/setup_auth.php:136 msgid "" "If this option is enabled, the users can use double authentication with " "their accounts" msgstr "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができます。" -#: ../../godmode/setup/setup_auth.php:152 +#: ../../godmode/setup/setup_auth.php:144 msgid "Session timeout (mins)" msgstr "セッションタイムアウト(分)" -#: ../../godmode/setup/setup_auth.php:153 -#: ../../godmode/users/configure_user.php:652 +#: ../../godmode/setup/setup_auth.php:144 +#: ../../godmode/users/configure_user.php:918 msgid "" "This is defined in minutes, If you wish a permanent session should putting -" "1 in this field." msgstr "分単位で定義します。無制限の場合は -1 を設定してください。" -#: ../../godmode/setup/setup_auth.php:188 -msgid "Local Pandora FMS" -msgstr "Pandora FMS ローカル" +#: ../../godmode/setup/setup_auth.php:180 +#, php-format +msgid "Local %s" +msgstr "ローカル %s" -#: ../../godmode/setup/setup_auth.php:188 +#: ../../godmode/setup/setup_auth.php:181 msgid "ldap" msgstr "LDAP" -#: ../../godmode/setup/setup_auth.php:194 -#: ../../include/functions_config.php:306 -#: ../../enterprise/meta/include/functions_meta.php:602 +#: ../../godmode/setup/setup_auth.php:188 +#: ../../include/functions_config.php:524 +#: ../../enterprise/meta/include/functions_meta.php:674 msgid "Authentication method" msgstr "認証方法" -#: ../../godmode/setup/setup_ehorus.php:54 -#: ../../include/functions_config.php:773 +#: ../../godmode/setup/setup_ehorus.php:55 +#: ../../include/functions_config.php:1449 msgid "Enable eHorus" msgstr "eHorus の有効化" -#: ../../godmode/setup/setup_ehorus.php:85 +#: ../../godmode/setup/setup_ehorus.php:89 +#: ../../godmode/setup/setup_integria.php:228 msgid "API Hostname" msgstr "API ホスト名" -#: ../../godmode/setup/setup_ehorus.php:87 +#: ../../godmode/setup/setup_ehorus.php:91 msgid "Hostname of the eHorus API" msgstr "eHorus API のホスト名" -#: ../../godmode/setup/setup_ehorus.php:87 +#: ../../godmode/setup/setup_ehorus.php:91 msgid "Without protocol and port" msgstr "プロトコルとポート番号は含みません" -#: ../../godmode/setup/setup_ehorus.php:87 +#: ../../godmode/setup/setup_ehorus.php:91 msgid "e.g., portal.ehorus.com" msgstr "例: portal.ehorus.com" -#: ../../godmode/setup/setup_ehorus.php:92 +#: ../../godmode/setup/setup_ehorus.php:96 msgid "API Port" msgstr "API ポート" -#: ../../godmode/setup/setup_ehorus.php:94 +#: ../../godmode/setup/setup_ehorus.php:98 msgid "e.g., 18080" msgstr "例: 18080" -#: ../../godmode/setup/setup_ehorus.php:99 +#: ../../godmode/setup/setup_ehorus.php:103 +#: ../../godmode/setup/setup_integria.php:242 msgid "Request timeout" msgstr "要求タイムアウト" -#: ../../godmode/setup/setup_ehorus.php:101 +#: ../../godmode/setup/setup_ehorus.php:105 msgid "" "Time in seconds to set the maximum time of the requests to the eHorus API" msgstr "eHorus API へリクエストを出す最大タイムアウト時間を秒で設定します。" -#: ../../godmode/setup/setup_ehorus.php:101 +#: ../../godmode/setup/setup_ehorus.php:105 +#: ../../godmode/setup/setup_integria.php:244 msgid "0 to disable" msgstr "無効化する場合は 0 です" -#: ../../godmode/setup/setup_ehorus.php:106 +#: ../../godmode/setup/setup_ehorus.php:110 +#: ../../godmode/setup/setup_integria.php:495 +#: ../../operation/users/user_edit.php:699 msgid "Test" msgstr "テスト" -#: ../../godmode/setup/setup_ehorus.php:107 -#: ../../enterprise/dashboard/main_dashboard.php:501 -#: ../../enterprise/include/functions_dashboard.php:931 -#: ../../enterprise/operation/agentes/transactional_map.php:301 -msgid "Start" -msgstr "開始" - -#: ../../godmode/setup/setup_ehorus.php:122 +#: ../../godmode/setup/setup_ehorus.php:125 msgid "Remote Management System" msgstr "リモート管理システム" -#: ../../godmode/setup/setup_ehorus.php:130 +#: ../../godmode/setup/setup_ehorus.php:133 msgid "Custom field eHorusID created" msgstr "カスタムフィールド eHorusID を作成しました" -#: ../../godmode/setup/setup_ehorus.php:130 +#: ../../godmode/setup/setup_ehorus.php:133 msgid "Error creating custom field" msgstr "カスタムフィールド作成エラー" -#: ../../godmode/setup/setup_ehorus.php:133 +#: ../../godmode/setup/setup_ehorus.php:137 msgid "eHorus has his own agent identifiers" msgstr "eHorus には独自のエージェント識別があります" -#: ../../godmode/setup/setup_ehorus.php:134 +#: ../../godmode/setup/setup_ehorus.php:138 msgid "To store them, it will be necessary to use an agent custom field" msgstr "それを保存するために、エージェントのカスタムフィールドを使う必要があります" -#: ../../godmode/setup/setup_ehorus.php:135 +#: ../../godmode/setup/setup_ehorus.php:139 msgid "" "Possibly the eHorus id will have to be filled in by hand for every agent" msgstr "eHorus ID は、エージェントごとに設定する必要があります" -#: ../../godmode/setup/setup_ehorus.php:140 +#: ../../godmode/setup/setup_ehorus.php:144 msgid "The custom field does not exists already" msgstr "カスタムフィールドが存在しません" -#: ../../godmode/setup/setup_ehorus.php:154 +#: ../../godmode/setup/setup_ehorus.php:158 msgid "eHorus API" msgstr "eHorus API" -#: ../../godmode/setup/setup_ehorus.php:186 +#: ../../godmode/setup/setup_ehorus.php:240 +#: ../../godmode/setup/setup_integria.php:621 msgid "Connection timeout" msgstr "接続タイムアウト" -#: ../../godmode/setup/setup_ehorus.php:187 +#: ../../godmode/setup/setup_ehorus.php:241 +#: ../../godmode/setup/setup_integria.php:622 +#: ../../operation/users/user_edit.php:1159 msgid "Empty user or password" msgstr "ユーザまたはパスワードが空です" -#: ../../godmode/setup/setup_ehorus.php:188 +#: ../../godmode/setup/setup_ehorus.php:242 +#: ../../godmode/setup/setup_integria.php:623 +#: ../../operation/users/user_edit.php:1160 msgid "User not found" msgstr "ユーザが見つかりません" -#: ../../godmode/setup/setup_ehorus.php:189 +#: ../../godmode/setup/setup_ehorus.php:243 +#: ../../godmode/setup/setup_integria.php:624 +#: ../../operation/users/user_edit.php:1161 msgid "Invalid password" msgstr "パスワードが正しくありません" -#: ../../godmode/setup/setup_general.php:57 -#: ../../include/functions_config.php:131 +#: ../../godmode/setup/setup_general.php:70 +msgid "" +"This is an email test sent from Pandora FMS. If you can read this, your " +"configuration works." +msgstr "これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は機能しています。" + +#: ../../godmode/setup/setup_general.php:71 +msgid "Testing Pandora FMS email" +msgstr "Pandora FMS メールのテスト" + +#: ../../godmode/setup/setup_general.php:109 +#: ../../include/functions_update_manager.php:147 +msgid "Language code" +msgstr "言語" + +#: ../../godmode/setup/setup_general.php:120 +#: ../../include/functions_config.php:164 msgid "Remote config directory" msgstr "リモート設定ディレクトリ" -#: ../../godmode/setup/setup_general.php:58 +#: ../../godmode/setup/setup_general.php:120 msgid "Directory where agent remote configuration is stored." msgstr "エージェントのリモート設定保存ディレクトリ" -#: ../../godmode/setup/setup_general.php:62 -#: ../../include/functions_config.php:133 -#: ../../enterprise/meta/advanced/metasetup.setup.php:125 -#: ../../enterprise/meta/include/functions_meta.php:347 +#: ../../godmode/setup/setup_general.php:123 +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/include/functions_meta.php:424 +msgid "Phantomjs bin directory" +msgstr "phantomjs バイナリディレクトリ" + +#: ../../godmode/setup/setup_general.php:123 +#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +msgid "" +"Directory where phantomjs binary file exists and has execution grants." +msgstr "phantomjs のバイナリファイルがあるディレクトリです。また実行権限がついている必要があります。" + +#: ../../godmode/setup/setup_general.php:126 +#: ../../include/functions_config.php:172 +#: ../../enterprise/meta/advanced/metasetup.setup.php:126 +#: ../../enterprise/meta/include/functions_meta.php:379 msgid "Auto login (hash) password" msgstr "自動ログインパスワード(ハッシュ)" -#: ../../godmode/setup/setup_general.php:65 -#: ../../include/functions_config.php:136 -#: ../../enterprise/meta/advanced/metasetup.setup.php:129 -#: ../../enterprise/meta/include/functions_meta.php:357 +#: ../../godmode/setup/setup_general.php:129 +#: ../../include/functions_config.php:176 +#: ../../enterprise/meta/advanced/metasetup.setup.php:136 +#: ../../enterprise/meta/include/functions_meta.php:388 msgid "Time source" msgstr "日時データソース" -#: ../../godmode/setup/setup_general.php:66 ../../include/functions.php:1042 -#: ../../include/functions_reporting.php:7057 -#: ../../include/functions_events.php:988 -#: ../../include/functions_events.php:1423 -#: ../../include/functions_graph.php:2736 -#: ../../include/functions_graph.php:3405 -#: ../../include/functions_graph.php:3833 -#: ../../include/functions_graph.php:3836 -#: ../../include/functions_reporting_html.php:881 -#: ../../include/functions_reporting_html.php:1704 -#: ../../mobile/operation/events.php:111 ../../operation/events/events.php:77 -#: ../../operation/events/events_rss.php:178 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:130 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:135 -#: ../../enterprise/meta/advanced/metasetup.setup.php:130 +#: ../../godmode/setup/setup_general.php:130 ../../include/functions.php:1233 +#: ../../include/functions_events.php:2469 +#: ../../include/functions_events.php:3039 +#: ../../include/functions_events.php.orig:2375 +#: ../../include/functions_events.php.orig:2945 +#: ../../include/functions_graph.php:2681 +#: ../../include/functions_graph.php:3098 +#: ../../include/functions_graph.php:3559 +#: ../../include/functions_graph.php:3561 +#: ../../include/functions_reporting_html.php:1039 +#: ../../include/functions_reporting_html.php:2020 +#: ../../include/functions_reporting.php:8353 +#: ../../mobile/operation/events.php:127 ../../operation/events/events.php:1982 +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:157 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:154 +#: ../../enterprise/meta/advanced/metasetup.setup.php:137 msgid "System" msgstr "システム" -#: ../../godmode/setup/setup_general.php:67 -#: ../../enterprise/meta/advanced/metasetup.setup.php:131 +#: ../../godmode/setup/setup_general.php:131 +#: ../../enterprise/meta/advanced/metasetup.setup.php:138 msgid "Database" msgstr "データベース" -#: ../../godmode/setup/setup_general.php:70 -#: ../../include/functions_config.php:138 +#: ../../godmode/setup/setup_general.php:134 +#: ../../include/functions_config.php:180 msgid "Automatic check for updates" msgstr "更新の自動チェック" -#: ../../godmode/setup/setup_general.php:74 -#: ../../include/functions_config.php:142 -#: ../../enterprise/meta/advanced/metasetup.setup.php:136 -#: ../../enterprise/meta/include/functions_meta.php:367 +#: ../../godmode/setup/setup_general.php:137 +msgid "Enforce https Information" +msgstr "https の利用" + +#: ../../godmode/setup/setup_general.php:138 +msgid "If SSL is not properly configured you will lose access to " +msgstr "SSL が正しく設定されていないと、こちらへのアクセスができなくなります: " + +#: ../../godmode/setup/setup_general.php:138 +#: ../../godmode/setup/setup_general.php:272 +msgid " Console" +msgstr " コンソール" + +#: ../../godmode/setup/setup_general.php:141 +#: ../../include/functions_config.php:188 +#: ../../enterprise/meta/advanced/metasetup.setup.php:141 +#: ../../enterprise/meta/include/functions_meta.php:397 msgid "Enforce https" msgstr "httpsの利用" -#: ../../godmode/setup/setup_general.php:75 -#: ../../enterprise/meta/advanced/metasetup.setup.php:137 -msgid "" -"If SSL is not properly configured you will lose access to Pandora FMS " -"Console. Do you want to continue?" -msgstr "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなります。設定を行いますか?" - -#: ../../godmode/setup/setup_general.php:78 +#: ../../godmode/setup/setup_general.php:144 msgid "Use cert of SSL" msgstr "SSL証明書の利用" -#: ../../godmode/setup/setup_general.php:83 +#: ../../godmode/setup/setup_general.php:149 msgid "Path of SSL Cert." msgstr "SSL証明書のパス" -#: ../../godmode/setup/setup_general.php:83 +#: ../../godmode/setup/setup_general.php:149 msgid "" "Path where you put your cert and name of this cert. Remember your cert only " "in .pem extension." msgstr "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意してください。" -#: ../../godmode/setup/setup_general.php:86 -#: ../../include/functions_config.php:146 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#: ../../enterprise/meta/include/functions_meta.php:377 +#: ../../godmode/setup/setup_general.php:152 +#: ../../include/functions_config.php:196 +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/include/functions_meta.php:415 msgid "Attachment store" msgstr "添付ファイル保存場所" -#: ../../godmode/setup/setup_general.php:86 -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#: ../../godmode/setup/setup_general.php:152 +#: ../../enterprise/meta/advanced/metasetup.setup.php:149 msgid "Directory where temporary data is stored." msgstr "テンポラリデータの保存ディレクトリ" -#: ../../godmode/setup/setup_general.php:89 -#: ../../include/functions_config.php:148 -#: ../../enterprise/meta/advanced/metasetup.setup.php:246 -#: ../../enterprise/meta/include/functions_meta.php:448 +#: ../../godmode/setup/setup_general.php:155 +#: ../../include/functions_config.php:200 +#: ../../enterprise/meta/advanced/metasetup.setup.php:263 +#: ../../enterprise/meta/include/functions_meta.php:505 msgid "IP list with API access" msgstr "APIアクセスを許可するIPアドレスリスト" -#: ../../godmode/setup/setup_general.php:98 -#: ../../include/functions_config.php:150 -#: ../../enterprise/extensions/vmware/functions.php:473 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:183 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:318 -#: ../../enterprise/meta/advanced/metasetup.setup.php:242 -#: ../../enterprise/meta/include/functions_meta.php:427 -#: ../../enterprise/meta/include/functions_meta.php:437 +#: ../../godmode/setup/setup_general.php:164 +#: ../../include/functions_config.php:204 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:207 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:398 +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 +#: ../../enterprise/meta/include/functions_meta.php:487 +#: ../../enterprise/meta/include/functions_meta.php:496 msgid "API password" msgstr "API パスワード" -#: ../../godmode/setup/setup_general.php:99 -#: ../../enterprise/meta/advanced/metasetup.setup.php:243 +#: ../../godmode/setup/setup_general.php:164 +#: ../../enterprise/meta/advanced/metasetup.setup.php:261 msgid "Please be careful if you put a password put https access." msgstr "パスワードの設定には注意してください。httpsアクセスを使ってください。" -#: ../../godmode/setup/setup_general.php:102 -#: ../../include/functions_config.php:152 -msgid "Enable GIS features in Pandora Console" -msgstr "コンソールで GIS 機能を利用する" +#: ../../godmode/setup/setup_general.php:167 +#: ../../include/functions_config.php:208 +msgid "Enable GIS features" +msgstr "GIS 機能の有効化" -#: ../../godmode/setup/setup_general.php:106 -#: ../../include/functions_config.php:162 +#: ../../godmode/setup/setup_general.php:170 +#: ../../include/functions_config.php:224 msgid "Enable Netflow" msgstr "Netflow を利用する" -#: ../../godmode/setup/setup_general.php:140 -#: ../../enterprise/meta/advanced/metasetup.setup.php:179 +#: ../../godmode/setup/setup_general.php:179 +#: ../../include/functions_config.php:228 +msgid "Enable Network Traffic Analyzer" +msgstr "ネットワークトラフィックアナライザーの有効化" + +#: ../../godmode/setup/setup_general.php:189 +#: ../../include/functions_update_manager.php:159 +#: ../../include/functions_visual_map_editor.php:268 +#: ../../enterprise/meta/advanced/metasetup.setup.php:156 +msgid "Africa" +msgstr "アフリカ" + +#: ../../godmode/setup/setup_general.php:190 +#: ../../include/functions_update_manager.php:160 +#: ../../include/functions_visual_map_editor.php:269 +#: ../../enterprise/meta/advanced/metasetup.setup.php:157 +msgid "America" +msgstr "アメリカ" + +#: ../../godmode/setup/setup_general.php:191 +#: ../../include/functions_update_manager.php:161 +#: ../../include/functions_visual_map_editor.php:270 +#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +msgid "Antarctica" +msgstr "南極大陸" + +#: ../../godmode/setup/setup_general.php:192 +#: ../../include/functions_update_manager.php:162 +#: ../../include/functions_visual_map_editor.php:271 +#: ../../enterprise/meta/advanced/metasetup.setup.php:159 +msgid "Arctic" +msgstr "北極" + +#: ../../godmode/setup/setup_general.php:193 +#: ../../include/functions_update_manager.php:163 +#: ../../include/functions_visual_map_editor.php:272 +#: ../../enterprise/meta/advanced/metasetup.setup.php:160 +msgid "Asia" +msgstr "アジア" + +#: ../../godmode/setup/setup_general.php:194 +#: ../../include/functions_update_manager.php:164 +#: ../../include/functions_visual_map_editor.php:273 +#: ../../enterprise/meta/advanced/metasetup.setup.php:161 +msgid "Atlantic" +msgstr "大西洋" + +#: ../../godmode/setup/setup_general.php:195 +#: ../../include/functions_update_manager.php:165 +#: ../../include/functions_visual_map_editor.php:274 +#: ../../enterprise/meta/advanced/metasetup.setup.php:162 +msgid "Australia" +msgstr "オーストラリア" + +#: ../../godmode/setup/setup_general.php:196 +#: ../../include/functions_update_manager.php:166 +#: ../../include/functions_visual_map_editor.php:275 +#: ../../enterprise/meta/advanced/metasetup.setup.php:163 +msgid "Europe" +msgstr "ヨーロッパ" + +#: ../../godmode/setup/setup_general.php:197 +#: ../../include/functions_update_manager.php:167 +#: ../../include/functions_visual_map_editor.php:276 +#: ../../enterprise/meta/advanced/metasetup.setup.php:164 +msgid "Indian" +msgstr "インド" + +#: ../../godmode/setup/setup_general.php:198 +#: ../../include/functions_update_manager.php:168 +#: ../../include/functions_visual_map_editor.php:277 +#: ../../enterprise/meta/advanced/metasetup.setup.php:165 +msgid "Pacific" +msgstr "太平洋" + +#: ../../godmode/setup/setup_general.php:199 +#: ../../include/functions_update_manager.php:169 +#: ../../include/functions_visual_map_editor.php:278 +#: ../../enterprise/meta/advanced/metasetup.setup.php:166 +msgid "UTC" +msgstr "UTC" + +#: ../../godmode/setup/setup_general.php:219 +#: ../../include/functions_config.php:234 +#: ../../include/functions_update_manager.php:189 +#: ../../enterprise/meta/advanced/metasetup.setup.php:185 +#: ../../enterprise/meta/include/functions_meta.php:433 +msgid "Timezone setup" +msgstr "タイムゾーン設定" + +#: ../../godmode/setup/setup_general.php:220 +#: ../../include/functions_update_manager.php:190 +msgid "" +"Must have the same time zone as the system or database to avoid mismatches " +"of time." +msgstr "時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする必要があります。" + +#: ../../godmode/setup/setup_general.php:235 +#: ../../enterprise/meta/advanced/metasetup.setup.php:187 msgid "Change timezone" msgstr "タイムゾーン変更" -#: ../../godmode/setup/setup_general.php:146 -#: ../../include/functions_config.php:169 +#: ../../godmode/setup/setup_general.php:240 +#: ../../include/functions_config.php:239 msgid "Sound for Alert fired" msgstr "アラート発生時のサウンド" -#: ../../godmode/setup/setup_general.php:148 -#: ../../godmode/setup/setup_general.php:153 -#: ../../godmode/setup/setup_general.php:158 +#: ../../godmode/setup/setup_general.php:242 +#: ../../godmode/setup/setup_general.php:247 +#: ../../godmode/setup/setup_general.php:252 msgid "Play sound" msgstr "サウンドの再生" -#: ../../godmode/setup/setup_general.php:151 -#: ../../include/functions_config.php:171 +#: ../../godmode/setup/setup_general.php:245 +#: ../../include/functions_config.php:243 msgid "Sound for Monitor critical" msgstr "障害状態時のサウンド" -#: ../../godmode/setup/setup_general.php:156 -#: ../../include/functions_config.php:173 +#: ../../godmode/setup/setup_general.php:250 +#: ../../include/functions_config.php:247 msgid "Sound for Monitor warning" msgstr "警告状態時のサウンド" -#: ../../godmode/setup/setup_general.php:161 -#: ../../include/functions_config.php:188 -#: ../../enterprise/meta/advanced/metasetup.setup.php:183 -#: ../../enterprise/meta/include/functions_meta.php:397 +#: ../../godmode/setup/setup_general.php:255 +#: ../../include/functions_config.php:266 +#: ../../enterprise/meta/advanced/metasetup.setup.php:191 +#: ../../enterprise/meta/include/functions_meta.php:442 msgid "Public URL" msgstr "公開 URL" -#: ../../godmode/setup/setup_general.php:162 -#: ../../enterprise/meta/advanced/metasetup.setup.php:184 +#: ../../godmode/setup/setup_general.php:257 +#, php-format msgid "" -"Set this value when your PandoraFMS across inverse proxy or for example with " +"Set this value when your %s across inverse proxy or for example with " "mod_proxy of Apache." -msgstr "" -"Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利用している場合などに、この値を設定してください。" +msgstr "apache の mod_proxy などを用いたリバースプロキシを介して %s を使用する場合は、この値を設定します。" -#: ../../godmode/setup/setup_general.php:163 -msgid "Without the index.php such as http://domain/pandora_url/" -msgstr "http://domain/pandora_url/ のように、index.php を含めません" +#: ../../godmode/setup/setup_general.php:257 +msgid "Without the index.php such as http://domain/console_url/" +msgstr "http://domain/console_url/ など、index.php は含めません。" -#: ../../godmode/setup/setup_general.php:166 -#: ../../include/functions_config.php:190 +#: ../../godmode/setup/setup_general.php:262 +#: ../../include/functions_config.php:270 +#: ../../enterprise/meta/advanced/metasetup.setup.php:195 +#: ../../enterprise/meta/include/functions_meta.php:451 +msgid "Force use Public URL" +msgstr "公開 URL の利用" + +#: ../../godmode/setup/setup_general.php:263 +#: ../../enterprise/meta/advanced/metasetup.setup.php:196 +msgid "Force using defined public URL)." +msgstr "定義した公開 URL を利用します。" + +#: ../../godmode/setup/setup_general.php:271 +msgid "Enforce public URL usage information" +msgstr "公開 URL 利用に関する情報" + +#: ../../godmode/setup/setup_general.php:272 +msgid "If public URL is not properly configured you will lose access to " +msgstr "公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: " + +#: ../../godmode/setup/setup_general.php:275 +#: ../../include/functions_config.php:274 +#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#: ../../enterprise/meta/include/functions_meta.php:460 +msgid "Public URL host exclusions" +msgstr "公開 URL 除外ホスト" + +#: ../../godmode/setup/setup_general.php:278 +#: ../../include/functions_config.php:278 msgid "Referer security" msgstr "リファラーセキュリティ" -#: ../../godmode/setup/setup_general.php:167 -msgid "" -"When it is set as \"yes\" in some important sections check if the user have " -"gone from url Pandora." -msgstr "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移してきたかどうかをチェックします。" +#: ../../godmode/setup/setup_general.php:279 +#, php-format +msgid "If enabled, actively checks if the user comes from %s's URL" +msgstr "有効にすると、ユーザが %s の URL から来たかどうかを積極的に確認します。" -#: ../../godmode/setup/setup_general.php:174 -#: ../../include/functions_config.php:192 +#: ../../godmode/setup/setup_general.php:282 +#: ../../include/functions_config.php:282 msgid "Event storm protection" msgstr "イベントストーム保護" -#: ../../godmode/setup/setup_general.php:175 +#: ../../godmode/setup/setup_general.php:283 msgid "" "If set to yes no events or alerts will be generated, but agents will " "continue receiving data." msgstr "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデータの受信を継続します。" -#: ../../godmode/setup/setup_general.php:183 -#: ../../include/functions_config.php:194 -#: ../../enterprise/meta/advanced/metasetup.setup.php:191 -#: ../../enterprise/meta/include/functions_meta.php:417 +#: ../../godmode/setup/setup_general.php:287 +#: ../../include/functions_config.php:286 +#: ../../enterprise/meta/advanced/metasetup.setup.php:216 +#: ../../enterprise/meta/include/functions_meta.php:478 msgid "Command Snapshot" msgstr "コマンドスナップショット" -#: ../../godmode/setup/setup_general.php:184 -#: ../../enterprise/meta/advanced/metasetup.setup.php:192 +#: ../../godmode/setup/setup_general.php:287 +#: ../../enterprise/meta/advanced/metasetup.setup.php:216 msgid "The string modules with several lines show as command output" msgstr "複数行の文字列モジュールはコマンドの出力として表示されます。" -#: ../../godmode/setup/setup_general.php:188 -#: ../../include/functions_config.php:196 +#: ../../godmode/setup/setup_general.php:290 +#: ../../include/functions_config.php:290 msgid "Server logs directory" msgstr "サーバログディレクトリ" -#: ../../godmode/setup/setup_general.php:188 +#: ../../godmode/setup/setup_general.php:290 msgid "Directory where the server logs are stored." msgstr "サーバのログを保存するディレクトリ。" -#: ../../godmode/setup/setup_general.php:192 -#: ../../include/functions_config.php:198 +#: ../../godmode/setup/setup_general.php:300 +#: ../../include/functions_config.php:294 msgid "Log size limit in system logs viewer extension" msgstr "システムログビューワ拡張でのログサイズ制限" -#: ../../godmode/setup/setup_general.php:192 +#: ../../godmode/setup/setup_general.php:300 msgid "Max size (in bytes) for the logs to be shown." msgstr "表示するログの最大サイズ(バイト)" -#: ../../godmode/setup/setup_general.php:197 +#: ../../godmode/setup/setup_general.php:311 msgid "Full mode" msgstr "フルモード" -#: ../../godmode/setup/setup_general.php:198 +#: ../../godmode/setup/setup_general.php:312 msgid "On demand" msgstr "オンデマンド" -#: ../../godmode/setup/setup_general.php:199 +#: ../../godmode/setup/setup_general.php:313 msgid "Expert" msgstr "上級者" -#: ../../godmode/setup/setup_general.php:201 -#: ../../include/functions_config.php:200 +#: ../../godmode/setup/setup_general.php:315 +#: ../../include/functions_config.php:298 msgid "Tutorial mode" msgstr "チュートリアルモード" -#: ../../godmode/setup/setup_general.php:202 +#: ../../godmode/setup/setup_general.php:315 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 " @@ -17279,309 +19104,539 @@ msgstr "" "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示されうるさい感じになます。'オンデマンド' " "はフルモードと同じですがうるさくはありません。'上級者' はヘッダーにアイコンとヘルプが表示されません。" -#: ../../godmode/setup/setup_general.php:208 -#: ../../include/functions_config.php:202 +#: ../../godmode/setup/setup_general.php:327 +#: ../../include/functions_config.php:302 msgid "Allow create planned downtimes in the past" msgstr "終了した計画停止の作成を許可する" -#: ../../godmode/setup/setup_general.php:209 +#: ../../godmode/setup/setup_general.php:327 msgid "The planned downtimes created in the past will affect the SLA reports" msgstr "終了した計画停止の作成は SLA レポートに影響します" -#: ../../godmode/setup/setup_general.php:213 +#: ../../godmode/setup/setup_general.php:330 msgid "Limit for bulk operations" msgstr "一括操作制限" -#: ../../godmode/setup/setup_general.php:214 +#: ../../godmode/setup/setup_general.php:330 msgid "" "Your PHP environment is set to 1000 max_input_vars. This parameter should " "have the same value or lower." msgstr "PHP で max_input_vars が 1000 に設定されています。このパラメータは同じか低い値にする必要があります。" -#: ../../godmode/setup/setup_general.php:218 +#: ../../godmode/setup/setup_general.php:340 msgid "Include agents manually disabled" msgstr "手動で無効化したエージェントを含める" -#: ../../godmode/setup/setup_general.php:222 -msgid "audit log directory" +#: ../../godmode/setup/setup_general.php:343 +#: ../../include/functions_config.php:322 +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 +#: ../../enterprise/meta/include/functions_meta.php:559 +msgid "Audit log directory" msgstr "監査ログディレクトリ" -#: ../../godmode/setup/setup_general.php:223 +#: ../../godmode/setup/setup_general.php:343 +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 msgid "Directory where audit log is stored." msgstr "監査ログを保存するディレクトリ" -#: ../../godmode/setup/setup_general.php:226 +#: ../../godmode/setup/setup_general.php:346 msgid "Set alias as name by default in agent creation" msgstr "エージェント作成でデフォルトでエイリアスを名前にする" -#: ../../godmode/setup/setup_general.php:233 +#: ../../godmode/setup/setup_general.php:355 msgid "General options" msgstr "全般オプション" -#: ../../godmode/setup/setup_general.php:292 -msgid "" -"If Enterprise ACL System is enabled without rules you will lose access to " -"Pandora FMS Console (even admin). Do you want to continue?" -msgstr "" -"ルール設定が無い状態でエンタープライズACLシステムが有効になっている場合は、(adminでさえも)Pandora FMS " -"コンソールへアクセスできなくなります。続けますか。" +#: ../../godmode/setup/setup_general.php:370 +#: ../../enterprise/meta/advanced/metasetup.mail.php:96 +msgid "Mail configuration" +msgstr "メール設定" -#: ../../godmode/setup/setup_netflow.php:41 -#: ../../include/functions_config.php:719 +#: ../../godmode/setup/setup_general.php:372 +msgid "From address" +msgstr "発信元アドレス" + +#: ../../godmode/setup/setup_general.php:375 +#: ../../include/functions_config.php:338 +#: ../../enterprise/meta/advanced/metasetup.mail.php:104 +msgid "From name" +msgstr "From 名" + +#: ../../godmode/setup/setup_general.php:378 +msgid "SMTP Server" +msgstr "SMTP サーバ" + +#: ../../godmode/setup/setup_general.php:381 +msgid "SMTP Port" +msgstr "SMTP ポート" + +#: ../../godmode/setup/setup_general.php:384 +#: ../../include/functions_config.php:346 +msgid "Encryption" +msgstr "暗号化" + +#: ../../godmode/setup/setup_general.php:387 +#: ../../include/functions_config.php:350 +#: ../../enterprise/meta/advanced/metasetup.mail.php:113 +msgid "Email user" +msgstr "メールユーザ" + +#: ../../godmode/setup/setup_general.php:390 +#: ../../include/functions_config.php:354 +#: ../../enterprise/meta/advanced/metasetup.mail.php:116 +msgid "Email password" +msgstr "メールユーザパスワード" + +#: ../../godmode/setup/setup_general.php:395 +msgid "Email test" +msgstr "Email テスト" + +#: ../../godmode/setup/setup_general.php:395 +msgid "" +"Check the current saved email configuration by sending a test email to a " +"desired account." +msgstr "目的のアカウントにテストメールを送信して、現在保存されているメール設定を確認します。" + +#: ../../godmode/setup/setup_general.php:423 +#: ../../operation/agentes/ver_agente.php:995 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1732 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:192 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:42 +#: ../../enterprise/extensions/ipam/ipam_excel.php:107 +#: ../../enterprise/extensions/ipam/ipam_network.php:323 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:276 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:52 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:253 +#: ../../enterprise/godmode/servers/manage_export.php:140 +#: ../../enterprise/godmode/servers/manage_export_form.php:93 +msgid "Address" +msgstr "アドレス" + +#: ../../godmode/setup/setup_general.php:423 +msgid "" +"Email address to which the test email will be sent. Please check your inbox " +"after email is sent." +msgstr "テストメールの送信先のメールアドレス。 メールを送信した後、受信トレイを確認してください。" + +#: ../../godmode/setup/setup_general.php:428 +msgid "Check mail configuration" +msgstr "メール設定確認" + +#: ../../godmode/setup/setup_integria.php:53 +#: ../../operation/incidents/configure_integriaims_incident.php:48 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:38 +#: ../../operation/incidents/list_integriaims_incidents.php:42 +msgid "Integria IMS API is not reachable" +msgstr "Integria IMS API に通信できません" + +#: ../../godmode/setup/setup_integria.php:200 +#: ../../include/functions_config.php:1483 +msgid "Enable Integria IMS" +msgstr "Integria IMS の有効化" + +#: ../../godmode/setup/setup_integria.php:230 +msgid "" +"Hostname of Integria IMS' API (scheme must be specified. Example: " +"http://192.168.0.0)" +msgstr "Integria IMS の API のホスト名(スキームを指定する必要があります。例: http://192.168.0.0)" + +#: ../../godmode/setup/setup_integria.php:235 +msgid "API Password" +msgstr "API パスワード" + +#: ../../godmode/setup/setup_integria.php:237 +msgid "Password of Integria IMS' API" +msgstr "Integria IMS API のパスワード" + +#: ../../godmode/setup/setup_integria.php:244 +msgid "" +"Time in seconds to set the maximum time of the requests to the Integria API" +msgstr "秒単位での Integria API へのリクエストの最大時間設定" + +#: ../../godmode/setup/setup_integria.php:259 +#: ../../godmode/setup/setup_integria.php:382 +#: ../../operation/agentes/estado_generalagente.php:572 +#: ../../operation/incidents/configure_integriaims_incident.php:194 +#: ../../operation/incidents/integriaims_export_csv.php:89 +#: ../../enterprise/dashboard/widget.php:105 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:31 +#: ../../enterprise/include/functions_reporting_csv.php:393 +#: ../../enterprise/include/functions_reporting_csv.php:415 +#: ../../enterprise/include/functions_reporting_csv.php:446 +#: ../../enterprise/include/functions_reporting_csv.php:648 +#: ../../enterprise/include/functions_reporting_csv.php:662 +#: ../../enterprise/include/functions_reporting_csv.php:676 +#: ../../enterprise/include/functions_reporting_csv.php:696 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:756 +#: ../../enterprise/include/functions_reporting_csv.php:788 +#: ../../enterprise/include/functions_reporting_csv.php:825 +#: ../../enterprise/include/functions_reporting_csv.php:848 +#: ../../enterprise/include/functions_reporting_csv.php:900 +#: ../../enterprise/include/functions_reporting_csv.php:937 +#: ../../enterprise/include/functions_reporting_csv.php:964 +#: ../../enterprise/include/functions_reporting_csv.php:995 +#: ../../enterprise/include/functions_reporting_csv.php:1050 +#: ../../enterprise/include/functions_reporting_csv.php:1105 +#: ../../enterprise/include/functions_reporting_csv.php:1154 +#: ../../enterprise/include/functions_reporting_csv.php:1209 +#: ../../enterprise/include/functions_reporting_csv.php:1238 +#: ../../enterprise/include/functions_reporting_csv.php:1275 +#: ../../enterprise/include/functions_reporting_csv.php:1401 +#: ../../enterprise/include/functions_reporting_csv.php:1517 +#: ../../enterprise/include/functions_reporting_csv.php:1661 +#: ../../enterprise/include/functions_reporting_csv.php:1717 +#: ../../enterprise/include/functions_reporting_csv.php:1785 +#: ../../enterprise/include/functions_reporting_csv.php:1933 +#: ../../enterprise/include/functions_reporting_csv.php:1959 +#: ../../enterprise/include/functions_reporting_csv.php:2045 +#: ../../enterprise/include/functions_reporting_csv.php:2076 +#: ../../enterprise/include/functions_reporting_csv.php:2112 +#: ../../enterprise/include/functions_reporting_csv.php:2144 +#: ../../enterprise/include/functions_reporting_csv.php:2166 +#: ../../enterprise/include/functions_reporting_csv.php:2197 +#: ../../enterprise/include/functions_reporting_csv.php:2226 +#: ../../enterprise/include/functions_reporting_csv.php:2259 +msgid "Title" +msgstr "タイトル" + +#: ../../godmode/setup/setup_integria.php:528 +msgid "Integria API settings" +msgstr "Integria API 設定" + +#: ../../godmode/setup/setup_integria.php:539 +msgid "Alert default values" +msgstr "アラートデフォルト値" + +#: ../../godmode/setup/setup_integria.php:549 +msgid "Event custom response default values" +msgstr "イベントカスタム応答デフォルト値" + +#: ../../godmode/setup/setup_integria.php:561 +#: ../../godmode/wizards/HostDevices.class.php:668 +#: ../../include/class/CustomNetScan.class.php:551 +#: ../../enterprise/include/class/MySQL.app.php:589 +#: ../../enterprise/include/class/Oracle.app.php:570 +#: ../../enterprise/include/class/SAP.app.php:434 +#: ../../enterprise/include/class/VMware.app.php:491 +msgid "Update and continue" +msgstr "更新して次へ" + +#: ../../godmode/setup/setup_netflow.php:46 +#: ../../include/functions_config.php:1331 msgid "Data storage path" msgstr "データストアのパス" -#: ../../godmode/setup/setup_netflow.php:42 +#: ../../godmode/setup/setup_netflow.php:46 msgid "Directory where netflow data will be stored." msgstr "Netflow データを保存するディレクトリ。" -#: ../../godmode/setup/setup_netflow.php:45 -#: ../../include/functions_config.php:721 +#: ../../godmode/setup/setup_netflow.php:49 +#: ../../include/functions_config.php:1335 msgid "Daemon interval" msgstr "デーモン間隔" -#: ../../godmode/setup/setup_netflow.php:46 +#: ../../godmode/setup/setup_netflow.php:49 msgid "Specifies the time interval in seconds to rotate netflow data files." msgstr "Netflow データファイルをローテートする時間間隔を秒で指定します。" -#: ../../godmode/setup/setup_netflow.php:49 -#: ../../include/functions_config.php:723 +#: ../../godmode/setup/setup_netflow.php:52 +#: ../../include/functions_config.php:1339 msgid "Daemon binary path" msgstr "デーモンのバイナリパス" -#: ../../godmode/setup/setup_netflow.php:52 -#: ../../include/functions_config.php:725 +#: ../../godmode/setup/setup_netflow.php:55 +#: ../../include/functions_config.php:1343 msgid "Nfdump binary path" msgstr "nfdump バイナリのパス" -#: ../../godmode/setup/setup_netflow.php:55 -#: ../../include/functions_config.php:727 +#: ../../godmode/setup/setup_netflow.php:58 +#: ../../include/functions_config.php:1347 msgid "Nfexpire binary path" msgstr "nfexpire バイナリのパス" -#: ../../godmode/setup/setup_netflow.php:58 -#: ../../include/functions_config.php:729 +#: ../../godmode/setup/setup_netflow.php:61 +#: ../../include/functions_config.php:1351 msgid "Maximum chart resolution" msgstr "最大グラフ解像度" -#: ../../godmode/setup/setup_netflow.php:58 +#: ../../godmode/setup/setup_netflow.php:61 msgid "" "Maximum number of points that a netflow area chart will display. The higher " "the resolution the performance. Values between 50 and 100 are recommended." msgstr "Netflow グラフが表示される最大ポイント数です。大きくすると解像度がよくなります。50 から 100 の間の値を推奨します。" -#: ../../godmode/setup/setup_netflow.php:61 -#: ../../include/functions_config.php:731 -#: ../../enterprise/meta/advanced/metasetup.setup.php:187 +#: ../../godmode/setup/setup_netflow.php:64 +#: ../../include/functions_config.php:1355 +#: ../../enterprise/meta/advanced/metasetup.setup.php:212 msgid "Disable custom live view filters" msgstr "カスタムライブビューフィルタの無効化" -#: ../../godmode/setup/setup_netflow.php:62 -#: ../../enterprise/meta/advanced/metasetup.setup.php:187 +#: ../../godmode/setup/setup_netflow.php:64 +#: ../../enterprise/meta/advanced/metasetup.setup.php:212 msgid "" "Disable the definition of custom filters in the live view. Only existing " "filters can be used." msgstr "ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ利用可能です。" -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:733 +#: ../../godmode/setup/setup_netflow.php:66 +#: ../../include/functions_config.php:1359 msgid "Netflow max lifetime" msgstr "Netflow 最大保持期間" -#: ../../godmode/setup/setup_netflow.php:65 +#: ../../godmode/setup/setup_netflow.php:66 msgid "Sets the maximum lifetime for netflow data in days." msgstr "Netflow データを保持する最大期間を日数で設定します。" -#: ../../godmode/setup/setup_netflow.php:68 -#: ../../include/functions_config.php:735 +#: ../../godmode/setup/setup_netflow.php:69 +#: ../../include/functions_config.php:1363 msgid "Name resolution for IP address" msgstr "IP アドレスの名前解決" #: ../../godmode/setup/setup_netflow.php:69 -#: ../../operation/netflow/nf_live_view.php:284 +#: ../../operation/netflow/nf_live_view.php:469 msgid "Resolve the IP addresses to get their hostnames." msgstr "ホスト名を得るために IP アドレスから名前解決をします。" #: ../../godmode/setup/setup_netflow.php:70 -#: ../../operation/netflow/nf_live_view.php:274 +#: ../../operation/netflow/nf_live_view.php:451 msgid "IP address resolution can take a lot of time" msgstr "IP アドレスの解決には多くの時間がかかります" -#: ../../godmode/setup/setup_visuals.php:75 -#: ../../include/functions_config.php:540 -msgid "Default interval for refresh on Visual Console" -msgstr "ビジュアルコンソールのデフォルト更新間隔" - -#: ../../godmode/setup/setup_visuals.php:76 -msgid "This interval will affect to Visual Console pages" -msgstr "この間隔はビジュアルコンソールページで有効です" - -#: ../../godmode/setup/setup_visuals.php:80 +#: ../../godmode/setup/setup_visuals.php:73 msgid "Paginated module view" msgstr "ページ区切りモジュール表示" -#: ../../godmode/setup/setup_visuals.php:85 -#: ../../include/functions_config.php:595 -#: ../../enterprise/meta/advanced/metasetup.visual.php:196 -#: ../../enterprise/meta/include/functions_meta.php:1402 +#: ../../godmode/setup/setup_visuals.php:82 +#: ../../include/functions_config.php:1164 +#: ../../enterprise/meta/advanced/metasetup.visual.php:258 +#: ../../enterprise/meta/include/functions_meta.php:1672 msgid "Display data of proc modules in other format" msgstr "別フォーマットでのprocモジュールのデータ表示" -#: ../../godmode/setup/setup_visuals.php:95 -#: ../../include/functions_config.php:597 -#: ../../enterprise/meta/advanced/metasetup.visual.php:205 -#: ../../enterprise/meta/include/functions_meta.php:1407 +#: ../../godmode/setup/setup_visuals.php:91 +#: ../../include/functions_config.php:1168 +#: ../../enterprise/meta/advanced/metasetup.visual.php:266 +#: ../../enterprise/meta/include/functions_meta.php:1677 msgid "Display text proc modules have state is ok" msgstr "正常状態時のprocモジュール表示テキスト" -#: ../../godmode/setup/setup_visuals.php:99 -#: ../../include/functions_config.php:599 -#: ../../enterprise/meta/advanced/metasetup.visual.php:208 -#: ../../enterprise/meta/include/functions_meta.php:1412 +#: ../../godmode/setup/setup_visuals.php:95 +#: ../../include/functions_config.php:1172 +#: ../../enterprise/meta/advanced/metasetup.visual.php:269 +#: ../../enterprise/meta/include/functions_meta.php:1682 msgid "Display text when proc modules have state critical" msgstr "障害状態時のprocモジュール表示テキスト" -#: ../../godmode/setup/setup_visuals.php:104 +#: ../../godmode/setup/setup_visuals.php:100 msgid "Click to display lateral menus" msgstr "クリックして横のメニューを表示" -#: ../../godmode/setup/setup_visuals.php:105 +#: ../../godmode/setup/setup_visuals.php:100 msgid "" "When enabled, the lateral menus are shown when left clicking them, instead " "of hovering over them" msgstr "有効化すると、マウスオーバーではなく左クリックしたときに横のメニューが表示されます。" -#: ../../godmode/setup/setup_visuals.php:117 -#: ../../include/functions_config.php:606 +#: ../../godmode/setup/setup_visuals.php:110 +#: ../../include/functions_config.php:1183 msgid "Service label font size" msgstr "サービスラベルフォントサイズ" -#: ../../godmode/setup/setup_visuals.php:121 +#: ../../godmode/setup/setup_visuals.php:114 msgid "Space between items in Service maps" msgstr "サービスマップにおける要素間のスペース" -#: ../../godmode/setup/setup_visuals.php:122 +#: ../../godmode/setup/setup_visuals.php:114 msgid "It must be bigger than 80" msgstr "80より大きくなければいけません" -#: ../../godmode/setup/setup_visuals.php:127 -#: ../../include/functions_config.php:617 -msgid "Classic menu mode" -msgstr "クラシックメニューモード" - -#: ../../godmode/setup/setup_visuals.php:128 -msgid "Text menu options always visible, don't hide" -msgstr "テキストメニューを隠さずに表示します。" - -#: ../../godmode/setup/setup_visuals.php:139 +#: ../../godmode/setup/setup_visuals.php:120 msgid "Behaviour configuration" msgstr "動作設定" -#: ../../godmode/setup/setup_visuals.php:154 -#: ../../include/functions_config.php:487 +#: ../../godmode/setup/setup_visuals.php:134 +#: ../../include/functions_config.php:908 msgid "Style template" msgstr "スタイルテンプレート" -#: ../../godmode/setup/setup_visuals.php:159 -#: ../../include/functions_config.php:495 +#: ../../godmode/setup/setup_visuals.php:146 +#: ../../include/functions_config.php:924 msgid "Status icon set" msgstr "ステータスアイコンの種類" -#: ../../godmode/setup/setup_visuals.php:160 +#: ../../godmode/setup/setup_visuals.php:147 msgid "Colors" msgstr "色" -#: ../../godmode/setup/setup_visuals.php:161 +#: ../../godmode/setup/setup_visuals.php:148 msgid "Faces" msgstr "顔" -#: ../../godmode/setup/setup_visuals.php:162 +#: ../../godmode/setup/setup_visuals.php:149 msgid "Colors and text" msgstr "色と文字" -#: ../../godmode/setup/setup_visuals.php:169 -#: ../../include/functions_config.php:514 -#: ../../enterprise/meta/advanced/metasetup.visual.php:229 +#: ../../godmode/setup/setup_visuals.php:172 +#: ../../include/functions_config.php:992 +#: ../../enterprise/meta/advanced/metasetup.visual.php:282 msgid "Login background" msgstr "ログイン背景" -#: ../../godmode/setup/setup_visuals.php:170 -#: ../../enterprise/meta/advanced/metasetup.visual.php:230 +#: ../../godmode/setup/setup_visuals.php:172 +#: ../../enterprise/meta/advanced/metasetup.visual.php:282 msgid "You can place your custom images into the folder images/backgrounds/" msgstr "カスタム画像を images/backgrounds/ フォルダに置くことができます。" -#: ../../godmode/setup/setup_visuals.php:189 -#: ../../enterprise/meta/advanced/metasetup.visual.php:240 -msgid "Custom logo (header)" -msgstr "カスタムロゴ (ヘッダー)" +#: ../../godmode/setup/setup_visuals.php:186 +#: ../../include/functions_config.php:936 +#: ../../enterprise/meta/advanced/metasetup.visual.php:295 +#: ../../enterprise/meta/include/functions_meta.php:1505 +msgid "Custom favicon" +msgstr "カスタム favicon" -#: ../../godmode/setup/setup_visuals.php:208 -#: ../../enterprise/meta/advanced/metasetup.visual.php:247 +#: ../../godmode/setup/setup_visuals.php:187 +#: ../../enterprise/meta/advanced/metasetup.visual.php:296 +msgid "" +"You can place your favicon into the folder images/custom_favicon/. This file " +"should be in .ico format with a size of 16x16." +msgstr "" +"favicon を images/custom_favicon/ フォルダーに配置できます。 このファイルは、サイズが 16x16 の .ico " +"形式である必要があります。" + +#: ../../godmode/setup/setup_visuals.php:209 +msgid "Custom background logo" +msgstr "カスタム背景ロゴ" + +#: ../../godmode/setup/setup_visuals.php:276 +msgid "Custom logo (menu)" +msgstr "カスタムロゴ(メニュー)" + +#: ../../godmode/setup/setup_visuals.php:281 +msgid "Custom logo collapsed (menu)" +msgstr "縮小カスタムロゴ(メニュー)" + +#: ../../godmode/setup/setup_visuals.php:286 +#: ../../enterprise/meta/advanced/metasetup.visual.php:323 +msgid "Custom logo (header white background)" +msgstr "カスタムロゴ(白背景ヘッダ)" + +#: ../../godmode/setup/setup_visuals.php:325 +#: ../../enterprise/meta/advanced/metasetup.visual.php:328 msgid "Custom logo (login)" msgstr "カスタムロゴ (ログイン)" -#: ../../godmode/setup/setup_visuals.php:226 -#: ../../enterprise/meta/advanced/metasetup.visual.php:254 +#: ../../godmode/setup/setup_visuals.php:364 +#: ../../enterprise/meta/advanced/metasetup.visual.php:346 msgid "Custom Splash (login)" msgstr "カスタムスプラッシュ(ログイン)" -#: ../../godmode/setup/setup_visuals.php:239 -#: ../../enterprise/meta/advanced/metasetup.visual.php:261 +#: ../../godmode/setup/setup_visuals.php:390 +#: ../../include/functions_config.php:960 +msgid "Custom documentation logo" +msgstr "カスタムドキュメントロゴ" + +#: ../../godmode/setup/setup_visuals.php:391 +#: ../../godmode/setup/setup_visuals.php:412 +#: ../../godmode/setup/setup_visuals.php:432 +#: ../../godmode/setup/setup_visuals.php:452 +msgid "" +"You can place your custom logos into the folder " +"enterprise/images/custom_general_logos/" +msgstr "カスタムロゴは、enterprise/images/custom_general_logos/ フォルダーに配置できます。" + +#: ../../godmode/setup/setup_visuals.php:411 +#: ../../include/functions_config.php:964 +msgid "Custom support logo" +msgstr "カスタムサポートロゴ" + +#: ../../godmode/setup/setup_visuals.php:431 +#: ../../include/functions_config.php:968 +#: ../../include/functions_config.php:972 +msgid "Custom networkmap center logo" +msgstr "カスタムネットワークマップセンターロゴ" + +#: ../../godmode/setup/setup_visuals.php:451 +msgid "Custom mobile console icon" +msgstr "カスタムモバイルコンソールアイコン" + +#: ../../godmode/setup/setup_visuals.php:473 +msgid "Title (header)" +msgstr "タイトル(ヘッダ)" + +#: ../../godmode/setup/setup_visuals.php:480 +msgid "Subtitle (header)" +msgstr "サブタイトル(ヘッダ)" + +#: ../../godmode/setup/setup_visuals.php:487 +#: ../../enterprise/meta/advanced/metasetup.visual.php:372 msgid "Title 1 (login)" msgstr "タイトル 1 (ログイン)" -#: ../../godmode/setup/setup_visuals.php:246 -#: ../../enterprise/meta/advanced/metasetup.visual.php:265 +#: ../../godmode/setup/setup_visuals.php:494 +#: ../../enterprise/meta/advanced/metasetup.visual.php:376 msgid "Title 2 (login)" msgstr "タイトル 2 (ログイン)" -#: ../../godmode/setup/setup_visuals.php:252 -#: ../../enterprise/meta/advanced/metasetup.visual.php:268 -#: ../../enterprise/meta/include/functions_meta.php:1295 +#: ../../godmode/setup/setup_visuals.php:500 +#: ../../enterprise/meta/advanced/metasetup.visual.php:379 +#: ../../enterprise/meta/include/functions_meta.php:1568 msgid "Docs URL (login)" msgstr "ドキュメントURL(ログイン)" -#: ../../godmode/setup/setup_visuals.php:258 -#: ../../enterprise/meta/advanced/metasetup.visual.php:271 -#: ../../enterprise/meta/include/functions_meta.php:1305 +#: ../../godmode/setup/setup_visuals.php:506 +#: ../../enterprise/meta/advanced/metasetup.visual.php:382 +#: ../../enterprise/meta/include/functions_meta.php:1577 msgid "Support URL (login)" msgstr "サポートURL(ログイン)" -#: ../../godmode/setup/setup_visuals.php:263 +#: ../../godmode/setup/setup_visuals.php:512 +#: ../../include/functions_config.php:1004 +#: ../../enterprise/meta/advanced/metasetup.visual.php:364 +#: ../../enterprise/meta/include/functions_meta.php:1532 +msgid "Product name" +msgstr "製品名" + +#: ../../godmode/setup/setup_visuals.php:518 +#: ../../include/functions_config.php:1008 +#: ../../enterprise/meta/advanced/metasetup.visual.php:368 +#: ../../enterprise/meta/include/functions_meta.php:1541 +msgid "Copyright notice" +msgstr "著作権表示" + +#: ../../godmode/setup/setup_visuals.php:524 msgid "Disable logo in graphs" msgstr "グラフ内ロゴの無効化" -#: ../../godmode/setup/setup_visuals.php:277 -#: ../../include/functions_config.php:573 +#: ../../godmode/setup/setup_visuals.php:540 +msgid "Disable helps" +msgstr "ヘルプの無効化" + +#: ../../godmode/setup/setup_visuals.php:549 +#: ../../include/functions_config.php:1128 msgid "Fixed header" msgstr "ヘッダーの固定" -#: ../../godmode/setup/setup_visuals.php:285 -#: ../../include/functions_config.php:575 -msgid "Fixed menu" -msgstr "メニューの固定" +#: ../../godmode/setup/setup_visuals.php:560 +msgid "Automatically hide submenu" +msgstr "サブメニューを自動的に隠す" -#: ../../godmode/setup/setup_visuals.php:294 -#: ../../include/functions_config.php:567 -msgid "Autohidden menu" -msgstr "メニューを自動的に隠す" - -#: ../../godmode/setup/setup_visuals.php:298 -#: ../../enterprise/meta/advanced/metasetup.visual.php:317 -#: ../../enterprise/meta/include/functions_meta.php:1205 +#: ../../godmode/setup/setup_visuals.php:568 +#: ../../enterprise/meta/advanced/metasetup.visual.php:398 +#: ../../enterprise/meta/include/functions_meta.php:1451 msgid "Visual effects and animation" msgstr "表示効果およびアニメーション" -#: ../../godmode/setup/setup_visuals.php:306 +#: ../../godmode/setup/setup_visuals.php:578 msgid "Style configuration" msgstr "スタイル設定" -#: ../../godmode/setup/setup_visuals.php:321 -#: ../../include/functions_config.php:561 +#: ../../godmode/setup/setup_visuals.php:592 +#: ../../include/functions_config.php:1100 msgid "GIS Labels" msgstr "GIS ラベル" -#: ../../godmode/setup/setup_visuals.php:322 +#: ../../godmode/setup/setup_visuals.php:592 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." @@ -17589,796 +19644,948 @@ msgstr "" "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ内に大量のエージェントがある場合は読みにくくなります。デフォルトでは無効です" "。" -#: ../../godmode/setup/setup_visuals.php:333 -#: ../../include/functions_config.php:565 +#: ../../godmode/setup/setup_visuals.php:607 +#: ../../include/functions_config.php:1108 msgid "Default icon in GIS" msgstr "GIS でのデフォルトアイコン" -#: ../../godmode/setup/setup_visuals.php:334 +#: ../../godmode/setup/setup_visuals.php:607 msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" msgstr "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコンが利用されます。" -#: ../../godmode/setup/setup_visuals.php:336 +#: ../../godmode/setup/setup_visuals.php:613 msgid "Agent icon group" msgstr "エージェントアイコングループ" -#: ../../godmode/setup/setup_visuals.php:343 +#: ../../godmode/setup/setup_visuals.php:621 msgid "GIS configuration" msgstr "GIS設定" -#: ../../godmode/setup/setup_visuals.php:358 -#: ../../include/functions_config.php:497 -#: ../../enterprise/meta/advanced/metasetup.visual.php:274 -#: ../../enterprise/meta/include/functions_meta.php:1360 -msgid "Font path" -msgstr "フォントパス" +#: ../../godmode/setup/setup_visuals.php:635 +#: ../../enterprise/meta/advanced/metasetup.visual.php:385 +msgid "Graphs font family" +msgstr "グラフフォントファミリー" -#: ../../godmode/setup/setup_visuals.php:388 -#: ../../include/functions_config.php:549 -#: ../../include/functions_config.php:551 +#: ../../godmode/setup/setup_visuals.php:665 +msgid "Graphs font size" +msgstr "グラフフォントサイズ" + +#: ../../godmode/setup/setup_visuals.php:696 +#: ../../include/functions_config.php:1076 +#: ../../include/functions_config.php:1080 msgid "Agent size text" msgstr "エージェント名の表示長さ" -#: ../../godmode/setup/setup_visuals.php:389 +#: ../../godmode/setup/setup_visuals.php:696 +#, php-format msgid "" -"When the agent name have a lot of characters, in some places in Pandora " -"Console it is necesary truncate to N characters." -msgstr "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があります。" +"When the agent name has a lot of characters, it is needed to truncate it " +"into N characters in some sections in %s Console" +msgstr "エージェント名の文字数が多い場合、%s コンソールの一部のセクションでエージェント名を N 文字に切り捨てる必要があります" -#: ../../godmode/setup/setup_visuals.php:390 -#: ../../godmode/setup/setup_visuals.php:398 +#: ../../godmode/setup/setup_visuals.php:697 +#: ../../godmode/setup/setup_visuals.php:702 msgid "Small:" msgstr "小:" -#: ../../godmode/setup/setup_visuals.php:392 -#: ../../godmode/setup/setup_visuals.php:400 +#: ../../godmode/setup/setup_visuals.php:698 +#: ../../godmode/setup/setup_visuals.php:703 msgid "Normal:" msgstr "通常:" -#: ../../godmode/setup/setup_visuals.php:396 -#: ../../include/functions_config.php:553 +#: ../../godmode/setup/setup_visuals.php:701 +#: ../../include/functions_config.php:1084 msgid "Module size text" msgstr "モジュール名の表示長さ" -#: ../../godmode/setup/setup_visuals.php:397 +#: ../../godmode/setup/setup_visuals.php:701 +#, php-format msgid "" -"When the module name have a lot of characters, in some places in Pandora " -"Console it is necesary truncate to N characters." -msgstr "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があります。" +"When the module name has a lot of characters, it is needed to truncate it " +"into N characters in some sections in %s Console" +msgstr "モジュール名の文字数が多い場合、%s コンソールの一部のセクションで N 文字に切り詰める必要があります" -#: ../../godmode/setup/setup_visuals.php:404 -#: ../../include/functions_config.php:555 -#: ../../include/functions_config.php:557 +#: ../../godmode/setup/setup_visuals.php:706 +#: ../../include/functions_config.php:1088 +#: ../../include/functions_config.php:1092 msgid "Description size text" msgstr "説明の表示長さ" -#: ../../godmode/setup/setup_visuals.php:404 +#: ../../godmode/setup/setup_visuals.php:706 +#, php-format 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 文字までで切る必要があります。" +"If the description name has a lot of characters, in some places in %s " +"Console it is necessary to truncate it to N characters." +msgstr "説明名の文字数が多い場合、%s コンソールの一部の場所で、それを N 文字に切り捨てる必要があります。" -#: ../../godmode/setup/setup_visuals.php:408 -#: ../../include/functions_config.php:559 +#: ../../godmode/setup/setup_visuals.php:710 +#: ../../include/functions_config.php:1096 msgid "Item title size text" msgstr "アイテムタイトルの表示長さ" -#: ../../godmode/setup/setup_visuals.php:409 +#: ../../godmode/setup/setup_visuals.php:710 +#, php-format 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 文字までで切る必要があります。" +"When the item title name has a lot of characters, it is needed to truncate " +"it into N characters in some sections in %s Console." +msgstr "アイテムのタイトル名の文字数が多い場合、%s コンソールの一部のセクションで N 文字に切り詰める必要があります。" -#: ../../godmode/setup/setup_visuals.php:414 +#: ../../godmode/setup/setup_visuals.php:721 msgid "Show unit along with value in reports" msgstr "レポート内に値に加えて単位を表示する" -#: ../../godmode/setup/setup_visuals.php:415 +#: ../../godmode/setup/setup_visuals.php:721 msgid "This enabling this, max, min and avg values will be shown with units." msgstr "これを有効化すると、単位をつけて最大、最小、平均を表示します。" -#: ../../godmode/setup/setup_visuals.php:423 +#: ../../godmode/setup/setup_visuals.php:731 msgid "Font and Text configuration" msgstr "フォントおよびテキスト設定" -#: ../../godmode/setup/setup_visuals.php:438 -#: ../../include/functions_config.php:458 -#: ../../enterprise/meta/advanced/metasetup.visual.php:99 -#: ../../enterprise/meta/include/functions_meta.php:1092 -msgid "Graph color (min)" -msgstr "グラフの色 (最小値)" +#: ../../godmode/setup/setup_visuals.php:745 +#: ../../include/functions_config.php:855 +#: ../../enterprise/meta/advanced/metasetup.visual.php:121 +msgid "Graph color #1" +msgstr "グラフの色 #1" -#: ../../godmode/setup/setup_visuals.php:442 -#: ../../include/functions_config.php:460 -#: ../../enterprise/meta/advanced/metasetup.visual.php:102 -#: ../../enterprise/meta/include/functions_meta.php:1102 -msgid "Graph color (avg)" -msgstr "グラフの色 (平均値)" +#: ../../godmode/setup/setup_visuals.php:749 +#: ../../include/functions_config.php:859 +#: ../../enterprise/meta/advanced/metasetup.visual.php:124 +msgid "Graph color #2" +msgstr "グラフの色 #2" -#: ../../godmode/setup/setup_visuals.php:446 -#: ../../include/functions_config.php:462 -#: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../enterprise/meta/include/functions_meta.php:1112 -msgid "Graph color (max)" -msgstr "グラフの色 (最大値)" +#: ../../godmode/setup/setup_visuals.php:753 +#: ../../include/functions_config.php:863 +#: ../../enterprise/meta/advanced/metasetup.visual.php:127 +msgid "Graph color #3" +msgstr "グラフの色 #3" -#: ../../godmode/setup/setup_visuals.php:450 -#: ../../include/functions_config.php:464 +#: ../../godmode/setup/setup_visuals.php:757 +#: ../../include/functions_config.php:867 msgid "Graph color #4" msgstr "グラフの色 #4" -#: ../../godmode/setup/setup_visuals.php:454 -#: ../../include/functions_config.php:466 +#: ../../godmode/setup/setup_visuals.php:761 +#: ../../include/functions_config.php:871 msgid "Graph color #5" msgstr "グラフの色 #5" -#: ../../godmode/setup/setup_visuals.php:458 -#: ../../include/functions_config.php:468 +#: ../../godmode/setup/setup_visuals.php:765 +#: ../../include/functions_config.php:875 msgid "Graph color #6" msgstr "グラフの色 #6" -#: ../../godmode/setup/setup_visuals.php:462 -#: ../../include/functions_config.php:470 +#: ../../godmode/setup/setup_visuals.php:769 +#: ../../include/functions_config.php:879 msgid "Graph color #7" msgstr "グラフの色 #7" -#: ../../godmode/setup/setup_visuals.php:466 -#: ../../include/functions_config.php:472 +#: ../../godmode/setup/setup_visuals.php:773 +#: ../../include/functions_config.php:883 msgid "Graph color #8" msgstr "グラフの色 #8" -#: ../../godmode/setup/setup_visuals.php:470 -#: ../../include/functions_config.php:474 +#: ../../godmode/setup/setup_visuals.php:777 +#: ../../include/functions_config.php:887 msgid "Graph color #9" msgstr "グラフの色 #9" -#: ../../godmode/setup/setup_visuals.php:474 -#: ../../include/functions_config.php:476 +#: ../../godmode/setup/setup_visuals.php:781 +#: ../../include/functions_config.php:891 msgid "Graph color #10" msgstr "グラフの色 #10" -#: ../../godmode/setup/setup_visuals.php:478 -msgid "Graph resolution (1-low, 5-high)" -msgstr "グラフ解像度 (1-低, 5-高)" - -#: ../../godmode/setup/setup_visuals.php:482 -#: ../../include/functions_config.php:480 -#: ../../enterprise/meta/advanced/metasetup.visual.php:118 -#: ../../enterprise/meta/include/functions_meta.php:1152 +#: ../../godmode/setup/setup_visuals.php:785 +#: ../../include/functions_config.php:895 +#: ../../enterprise/meta/advanced/metasetup.visual.php:137 +#: ../../enterprise/meta/include/functions_meta.php:1376 msgid "Value to interface graphics" msgstr "インタフェースグラフの値" -#: ../../godmode/setup/setup_visuals.php:491 -msgid "Data precision in PandoraFMS" -msgstr "Pandora FMS のデータ精度" +#: ../../godmode/setup/setup_visuals.php:794 +msgid "Data precision" +msgstr "データ精度" -#: ../../godmode/setup/setup_visuals.php:492 +#: ../../godmode/setup/setup_visuals.php:795 msgid "" "Number of decimals shown. It must be a number between 0 and 5, except in " "graphs." msgstr "小数点以下の桁数。グラフを除いて、値は 0 と 5 の間でなければいけません。" -#: ../../godmode/setup/setup_visuals.php:498 +#: ../../godmode/setup/setup_visuals.php:803 msgid "Data precision in graphs" msgstr "グラフにおけるデータの精度" -#: ../../godmode/setup/setup_visuals.php:499 +#: ../../godmode/setup/setup_visuals.php:804 msgid "" "Number of decimals shown. If the field is empty, it will show all the " "decimals" msgstr "小数点以下の桁数。空の場合、小数点以下すべてを表示します。" -#: ../../godmode/setup/setup_visuals.php:503 -#: ../../include/functions_config.php:587 +#: ../../godmode/setup/setup_visuals.php:808 +#: ../../include/functions_config.php:1152 msgid "Default line thickness for the Custom Graph." msgstr "カスタムグラフのデフォルトの線の太さ" -#: ../../godmode/setup/setup_visuals.php:508 -#: ../../include/functions_config.php:491 -#: ../../enterprise/meta/advanced/metasetup.visual.php:124 -#: ../../enterprise/meta/include/functions_meta.php:1175 +#: ../../godmode/setup/setup_visuals.php:819 +#: ../../include/functions_config.php:916 +#: ../../enterprise/meta/advanced/metasetup.visual.php:143 +#: ../../enterprise/meta/include/functions_meta.php:1397 msgid "Use round corners" msgstr "角を丸くする" -#: ../../godmode/setup/setup_visuals.php:513 -#: ../../godmode/users/configure_user.php:578 -#: ../../include/functions_config.php:501 -#: ../../operation/users/user_edit.php:253 -#: ../../enterprise/meta/advanced/metasetup.visual.php:128 -#: ../../enterprise/meta/include/functions_meta.php:1185 -#: ../../enterprise/meta/include/functions_meta.php:1195 -msgid "Interactive charts" -msgstr "動的グラフ" - -#: ../../godmode/setup/setup_visuals.php:514 -#: ../../godmode/users/configure_user.php:578 -#: ../../operation/users/user_edit.php:253 -#: ../../enterprise/meta/advanced/metasetup.visual.php:128 -msgid "Whether to use Javascript or static PNG graphs" -msgstr "Javascript のグラフか静的な PNG のグラフ利用の選択" - -#: ../../godmode/setup/setup_visuals.php:522 -#: ../../enterprise/meta/advanced/metasetup.visual.php:150 +#: ../../godmode/setup/setup_visuals.php:828 +#: ../../enterprise/meta/advanced/metasetup.visual.php:204 msgid "Type of module charts" msgstr "モジュールグラフのタイプ" -#: ../../godmode/setup/setup_visuals.php:531 +#: ../../godmode/setup/setup_visuals.php:845 msgid "Type of interface charts" msgstr "インタフェースグラフのタイプ" -#: ../../godmode/setup/setup_visuals.php:540 -msgid "Show only average" -msgstr "平均のみ表示" - -#: ../../godmode/setup/setup_visuals.php:541 -msgid "Hide Max and Min values in graphs" -msgstr "グラフ内の最大・最小値を隠す" - -#: ../../godmode/setup/setup_visuals.php:549 -#: ../../enterprise/meta/advanced/metasetup.visual.php:115 +#: ../../godmode/setup/setup_visuals.php:863 +#: ../../enterprise/meta/advanced/metasetup.visual.php:134 msgid "Show percentile 95 in graphs" msgstr "グラフで 95%表示" -#: ../../godmode/setup/setup_visuals.php:553 +#: ../../godmode/setup/setup_visuals.php:867 msgid "Graph TIP view:" msgstr "グラフ詳細表示:" -#: ../../godmode/setup/setup_visuals.php:559 -#: ../../enterprise/meta/advanced/metasetup.visual.php:135 +#: ../../godmode/setup/setup_visuals.php:873 +#: ../../enterprise/meta/advanced/metasetup.visual.php:151 msgid "On Boolean graphs" -msgstr "" +msgstr "二値グラフ" -#: ../../godmode/setup/setup_visuals.php:574 +#: ../../godmode/setup/setup_visuals.php:879 +msgid "Show only average" +msgstr "平均のみ表示" + +#: ../../godmode/setup/setup_visuals.php:880 +msgid "" +"If enabled, the module graphs will only show the average value, otherwise it " +"will show three sets of data showing maximums, averages and minimums." +msgstr "" +"有効にすると、モジュールグラフには平均値のみが表示されます。それ以外の場合、最大値、平均値、最小値を示す 3つのデータセットが表示されます。" + +#: ../../godmode/setup/setup_visuals.php:883 +#: ../../enterprise/meta/advanced/metasetup.visual.php:167 +msgid "Standard mode" +msgstr "標準モード" + +#: ../../godmode/setup/setup_visuals.php:884 +#: ../../enterprise/meta/advanced/metasetup.visual.php:168 +msgid "Classic mode" +msgstr "クラシックモード" + +#: ../../godmode/setup/setup_visuals.php:889 +#: ../../enterprise/meta/advanced/metasetup.visual.php:190 +msgid "Zoom graphs:" +msgstr "グラフ倍率:" + +#: ../../godmode/setup/setup_visuals.php:911 msgid "Charts configuration" msgstr "グラフ設定" -#: ../../godmode/setup/setup_visuals.php:591 +#: ../../godmode/setup/setup_visuals.php:926 +#: ../../enterprise/meta/advanced/metasetup.visual.php:403 +msgid "Legacy Visual Console View" +msgstr "レガシービジュアルコンソール表示" + +#: ../../godmode/setup/setup_visuals.php:928 +#: ../../enterprise/meta/advanced/metasetup.visual.php:405 +msgid "To use the old view when using the Visual Console visor" +msgstr "ビジュアルコンソールバイザーを使用しているときに、古い表示を使う際に利用します" + +#: ../../godmode/setup/setup_visuals.php:942 +#: ../../godmode/setup/setup_visuals.php:943 +#: ../../godmode/setup/setup_visuals.php:944 +#: ../../godmode/setup/setup_visuals.php:945 +#: ../../godmode/setup/setup_visuals.php:1298 ../../include/functions.php:492 +#: ../../include/functions.php:632 ../../include/functions_html.php:1066 +#: ../../include/functions_visual_map_editor.php:1135 +#: ../../include/functions_visual_map_editor.php:1136 +#: ../../include/functions_visual_map_editor.php:1137 +#: ../../include/functions_visual_map_editor.php:1138 +#: ../../enterprise/meta/advanced/metasetup.visual.php:225 +#: ../../enterprise/meta/advanced/metasetup.visual.php:418 +#: ../../enterprise/meta/advanced/metasetup.visual.php:419 +#: ../../enterprise/meta/advanced/metasetup.visual.php:420 +#: ../../enterprise/meta/advanced/metasetup.visual.php:421 +msgid "minutes" +msgstr "分" + +#: ../../godmode/setup/setup_visuals.php:946 +#: ../../include/functions_visual_map_editor.php:1139 +#: ../../enterprise/meta/advanced/metasetup.visual.php:422 +msgid "hour" +msgstr "時間" + +#: ../../godmode/setup/setup_visuals.php:948 +#: ../../enterprise/meta/advanced/metasetup.visual.php:424 +msgid "Default cache expiration" +msgstr "デフォルトのキャッシュ有効期限" + +#: ../../godmode/setup/setup_visuals.php:953 +#: ../../include/functions_visual_map_editor.php:1165 +#: ../../enterprise/meta/advanced/metasetup.visual.php:429 +msgid "No cache" +msgstr "キャッシュ無し" + +#: ../../godmode/setup/setup_visuals.php:965 +#: ../../include/functions_config.php:1056 +#: ../../enterprise/meta/advanced/metasetup.visual.php:441 +#: ../../enterprise/meta/include/functions_meta.php:1697 +msgid "Default interval for refresh on Visual Console" +msgstr "ビジュアルコンソールのデフォルト更新間隔" + +#: ../../godmode/setup/setup_visuals.php:965 +#: ../../enterprise/meta/advanced/metasetup.visual.php:444 +msgid "This interval will affect to Visual Console pages" +msgstr "この間隔はビジュアルコンソールページで有効です" + +#: ../../godmode/setup/setup_visuals.php:969 +msgid "Classic view" +msgstr "クラシック表示" + +#: ../../godmode/setup/setup_visuals.php:970 +msgid "View of favorites" +msgstr "お気に入りの表示" + +#: ../../godmode/setup/setup_visuals.php:971 msgid "Type of view of visual consoles" msgstr "ビジュアルコンソールの表示タイプ" -#: ../../godmode/setup/setup_visuals.php:592 +#: ../../godmode/setup/setup_visuals.php:971 msgid "Allows you to directly display the list of favorite visual consoles" msgstr "お気に入りビジュアルコンソール一覧を直接表示可能" -#: ../../godmode/setup/setup_visuals.php:596 +#: ../../godmode/setup/setup_visuals.php:975 msgid "Number of favorite visual consoles to show in the menu" msgstr "メニューに表示するお気に入りビジュアルコンソールの数" -#: ../../godmode/setup/setup_visuals.php:597 +#: ../../godmode/setup/setup_visuals.php:975 msgid "" "If the number is 0 it will not show the pull-down menu and maximum 25 " "favorite consoles" msgstr "値が 0 の場合プルダウンメニューに表示されません。また、お気に入りコンソールの最大は 25 です。" -#: ../../godmode/setup/setup_visuals.php:603 -#: ../../include/functions_config.php:546 +#: ../../godmode/setup/setup_visuals.php:979 +#: ../../include/functions_config.php:1068 msgid "Default line thickness for the Visual Console" msgstr "ビジュアルコンソールのデフォルトの線の太さ" -#: ../../godmode/setup/setup_visuals.php:604 +#: ../../godmode/setup/setup_visuals.php:979 msgid "" "This interval will affect to the lines between elements on the Visual Console" msgstr "これは、ビジュアルコンソール上の要素間の線に影響します。" -#: ../../godmode/setup/setup_visuals.php:609 +#: ../../godmode/setup/setup_visuals.php:984 msgid "Visual consoles configuration" msgstr "ビジュアルコンソール設定" -#: ../../godmode/setup/setup_visuals.php:625 -#: ../../enterprise/meta/advanced/metasetup.visual.php:280 +#: ../../godmode/setup/setup_visuals.php:998 +msgid "Number of favorite services to show in the menu" +msgstr "メニューに表示するお気に入りのサービスの数" + +#: ../../godmode/setup/setup_visuals.php:998 +msgid "" +"If the number is 0 it will not show the pull-down menu and maximum 25 " +"favorite services" +msgstr "数字が 0 の場合、プルダウンメニューと最大 25のお気に入りサービスは表示されません" + +#: ../../godmode/setup/setup_visuals.php:1002 +msgid "Services configuration" +msgstr "サービス設定" + +#: ../../godmode/setup/setup_visuals.php:1016 +#: ../../enterprise/meta/advanced/metasetup.visual.php:487 msgid "Show report info with description" msgstr "説明とともにレポート情報を表示" -#: ../../godmode/setup/setup_visuals.php:627 -#: ../../enterprise/meta/advanced/metasetup.visual.php:280 +#: ../../godmode/setup/setup_visuals.php:1017 +#: ../../enterprise/meta/advanced/metasetup.visual.php:488 msgid "" "Custom report description info. It will be applied to all reports and " "templates by default." msgstr "カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適用されます。" -#: ../../godmode/setup/setup_visuals.php:635 -#: ../../enterprise/meta/advanced/metasetup.visual.php:286 +#: ../../godmode/setup/setup_visuals.php:1028 +#: ../../enterprise/meta/advanced/metasetup.visual.php:499 msgid "Custom report front page" msgstr "カスタムレポート表紙" -#: ../../godmode/setup/setup_visuals.php:637 -#: ../../enterprise/meta/advanced/metasetup.visual.php:286 +#: ../../godmode/setup/setup_visuals.php:1029 +#: ../../enterprise/meta/advanced/metasetup.visual.php:500 msgid "" "Custom report front page. It will be applied to all reports and templates by " "default." msgstr "カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用されます。" -#: ../../godmode/setup/setup_visuals.php:659 -#: ../../godmode/setup/setup_visuals.php:665 -#: ../../godmode/setup/setup_visuals.php:678 -#: ../../godmode/setup/setup_visuals.php:686 -#: ../../godmode/setup/setup_visuals.php:691 -#: ../../godmode/setup/setup_visuals.php:699 -#: ../../include/functions_config.php:696 -#: ../../include/functions_config.php:699 -#: ../../include/functions_config.php:702 -#: ../../include/functions_config.php:705 -#: ../../include/functions_config.php:708 -#: ../../include/functions_config.php:711 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/meta/advanced/metasetup.visual.php:292 -#: ../../enterprise/meta/advanced/metasetup.visual.php:296 -#: ../../enterprise/meta/advanced/metasetup.visual.php:302 -#: ../../enterprise/meta/advanced/metasetup.visual.php:306 -#: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../enterprise/meta/include/functions_meta.php:1366 -#: ../../enterprise/meta/include/functions_meta.php:1377 -#: ../../enterprise/meta/include/functions_meta.php:1382 -#: ../../enterprise/meta/include/functions_meta.php:1387 -#: ../../enterprise/meta/include/functions_meta.php:1392 -#: ../../enterprise/meta/include/functions_meta.php:1397 +#: ../../godmode/setup/setup_visuals.php:1041 +#: ../../include/functions_config.php:1293 +#: ../../enterprise/meta/advanced/metasetup.visual.php:511 +#: ../../enterprise/meta/include/functions_meta.php:1358 +msgid "PDF font size (px)" +msgstr "PDF フォントサイズ(px)" + +#: ../../godmode/setup/setup_visuals.php:1046 +#: ../../include/functions_config.php:1289 +#: ../../enterprise/meta/advanced/metasetup.visual.php:514 +#: ../../enterprise/meta/include/functions_meta.php:1349 +msgid "HTML font size for SLA (em)" +msgstr "SLA 用 HTML フォントサイズ(em)" + +#: ../../godmode/setup/setup_visuals.php:1051 +#: ../../enterprise/meta/advanced/metasetup.visual.php:517 +msgid "PDF font family" +msgstr "PDF フォントファミリー" + +#: ../../godmode/setup/setup_visuals.php:1065 +#: ../../enterprise/meta/advanced/metasetup.visual.php:520 +#: ../../enterprise/meta/include/functions_meta.php:1433 +msgid "Graph image height for HTML reports" +msgstr "HTML レポートのグラフ画像の高さ" + +#: ../../godmode/setup/setup_visuals.php:1067 +#: ../../enterprise/meta/advanced/metasetup.visual.php:522 +msgid "" +"This is the height in pixels of the module graph or custom graph in the " +"reports (only: HTML)" +msgstr "これは、レポート内のモジュールグラフまたはカスタムグラフのピクセル単位の高さです(HTMLのみ)" + +#: ../../godmode/setup/setup_visuals.php:1078 +#: ../../include/functions_config.php:1297 +#: ../../enterprise/meta/advanced/metasetup.visual.php:538 +#: ../../enterprise/meta/include/functions_meta.php:1367 +msgid "Interval description" +msgstr "間隔の表示" + +#: ../../godmode/setup/setup_visuals.php:1080 +#: ../../enterprise/meta/advanced/metasetup.visual.php:540 +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秒です。短い表示は10h 20m 33sです。" + +#: ../../godmode/setup/setup_visuals.php:1096 +#: ../../godmode/setup/setup_visuals.php:1110 +#: ../../godmode/setup/setup_visuals.php:1118 +#: ../../godmode/setup/setup_visuals.php:1129 +#: ../../godmode/setup/setup_visuals.php:1145 +#: ../../include/functions_config.php:1301 +#: ../../include/functions_config.php:1305 +#: ../../include/functions_config.php:1309 +#: ../../include/functions_config.php:1313 +#: ../../include/functions_config.php:1317 +#: ../../include/functions_config.php:1321 +#: ../../enterprise/meta/advanced/metasetup.visual.php:545 +#: ../../enterprise/meta/advanced/metasetup.visual.php:550 +#: ../../enterprise/meta/advanced/metasetup.visual.php:557 +#: ../../enterprise/meta/advanced/metasetup.visual.php:567 +#: ../../enterprise/meta/advanced/metasetup.visual.php:582 +#: ../../enterprise/meta/include/functions_meta.php:1636 +#: ../../enterprise/meta/include/functions_meta.php:1647 +#: ../../enterprise/meta/include/functions_meta.php:1652 +#: ../../enterprise/meta/include/functions_meta.php:1657 +#: ../../enterprise/meta/include/functions_meta.php:1662 +#: ../../enterprise/meta/include/functions_meta.php:1667 msgid "Custom report front" msgstr "カスタムレポートスタイル" -#: ../../godmode/setup/setup_visuals.php:659 -#: ../../include/functions_config.php:699 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:82 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:116 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/meta/include/functions_meta.php:1377 -msgid "Font family" -msgstr "フォントファミリ" - -#: ../../godmode/setup/setup_visuals.php:666 -#: ../../include/functions_config.php:504 -#: ../../include/functions_config.php:702 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:85 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:119 -#: ../../enterprise/meta/advanced/metasetup.visual.php:292 -#: ../../enterprise/meta/include/functions_meta.php:1245 -#: ../../enterprise/meta/include/functions_meta.php:1382 +#: ../../godmode/setup/setup_visuals.php:1096 +#: ../../include/functions_config.php:940 +#: ../../include/functions_config.php:1309 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:103 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:130 +#: ../../enterprise/meta/advanced/metasetup.visual.php:545 +#: ../../enterprise/meta/include/functions_meta.php:1487 +#: ../../enterprise/meta/include/functions_meta.php:1652 msgid "Custom logo" msgstr "カスタムロゴ" -#: ../../godmode/setup/setup_visuals.php:668 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:87 +#: ../../godmode/setup/setup_visuals.php:1097 msgid "" -"The dir of custom logos is in your www Pandora 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 "" -"カスタムロゴのディレクトリは Pandora コンソールの \"images/custom_logo\" " -"です。コンソールのアップロードツールを使って、ファイル(JPEG および PNG のみ)をアップロードできます。" +"カスタムロゴのディレクトリは、www コンソールの 'images/custom_logo' にあります。 " +"コンソールのアップロードツールで追加のファイル(JPEG および PNG のみ)をアップロードできます。" -#: ../../godmode/setup/setup_visuals.php:686 -#: ../../include/functions_config.php:705 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 -#: ../../enterprise/meta/advanced/metasetup.visual.php:302 -#: ../../enterprise/meta/include/functions_meta.php:1387 +#: ../../godmode/setup/setup_visuals.php:1118 +#: ../../include/functions_config.php:1313 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:142 +#: ../../enterprise/meta/advanced/metasetup.visual.php:557 +#: ../../enterprise/meta/include/functions_meta.php:1657 msgid "Header" msgstr "ヘッダー" -#: ../../godmode/setup/setup_visuals.php:691 -#: ../../include/functions_config.php:708 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:306 -#: ../../enterprise/meta/include/functions_meta.php:1392 +#: ../../godmode/setup/setup_visuals.php:1129 +#: ../../include/functions_config.php:1317 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:119 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:152 +#: ../../enterprise/meta/advanced/metasetup.visual.php:567 +#: ../../enterprise/meta/include/functions_meta.php:1662 msgid "First page" msgstr "最初のページ" -#: ../../godmode/setup/setup_visuals.php:699 -#: ../../include/functions_config.php:711 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:137 -#: ../../enterprise/meta/advanced/metasetup.visual.php:313 -#: ../../enterprise/meta/include/functions_meta.php:1397 +#: ../../godmode/setup/setup_visuals.php:1145 +#: ../../include/functions_config.php:1321 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:162 +#: ../../enterprise/meta/advanced/metasetup.visual.php:582 +#: ../../enterprise/meta/include/functions_meta.php:1667 msgid "Footer" msgstr "フッター" -#: ../../godmode/setup/setup_visuals.php:706 -msgid "Show QR Code icon in the header" -msgstr "ヘッダーに QR コードを表示する" +#: ../../godmode/setup/setup_visuals.php:1156 +#: ../../enterprise/meta/advanced/metasetup.visual.php:481 +msgid "Reports configuration" +msgstr "レポート設定" -#: ../../godmode/setup/setup_visuals.php:717 -#: ../../include/functions_config.php:579 +#: ../../godmode/setup/setup_visuals.php:1174 +#: ../../include/functions_config.php:1136 msgid "Custom graphviz directory" msgstr "カスタム graphviz ディレクトリ" -#: ../../godmode/setup/setup_visuals.php:718 +#: ../../godmode/setup/setup_visuals.php:1174 msgid "Custom directory where the graphviz binaries are stored." msgstr "graphviz バイナリが置かれているカスタムディレクトリ。" -#: ../../godmode/setup/setup_visuals.php:724 -#: ../../include/functions_config.php:581 +#: ../../godmode/setup/setup_visuals.php:1186 +#: ../../include/functions_config.php:1140 msgid "Networkmap max width" msgstr "ネットワークマップ最大幅" -#: ../../godmode/setup/setup_visuals.php:731 -#: ../../enterprise/meta/advanced/metasetup.visual.php:185 -#: ../../enterprise/meta/include/functions_meta.php:1235 +#: ../../godmode/setup/setup_visuals.php:1199 +#: ../../enterprise/meta/advanced/metasetup.visual.php:246 +#: ../../enterprise/meta/include/functions_meta.php:1478 msgid "Show only the group name" msgstr "グループ名のみ表示" -#: ../../godmode/setup/setup_visuals.php:733 -#: ../../include/functions_config.php:585 -#: ../../enterprise/meta/advanced/metasetup.visual.php:187 +#: ../../godmode/setup/setup_visuals.php:1201 +#: ../../include/functions_config.php:1148 +#: ../../enterprise/meta/advanced/metasetup.visual.php:248 msgid "Show the group name instead the group icon." msgstr "グループアイコンの代わりにグループ名を表示します。" -#: ../../godmode/setup/setup_visuals.php:743 -#: ../../include/functions_config.php:454 -#: ../../enterprise/meta/advanced/metasetup.visual.php:81 -#: ../../enterprise/meta/include/functions_meta.php:1072 +#: ../../godmode/setup/setup_visuals.php:1212 +#: ../../include/functions_config.php:847 +#: ../../enterprise/meta/advanced/metasetup.visual.php:95 +#: ../../enterprise/meta/include/functions_meta.php:1286 msgid "Date format string" msgstr "日時フォーマット" -#: ../../godmode/setup/setup_visuals.php:744 -#: ../../enterprise/meta/advanced/metasetup.visual.php:82 +#: ../../godmode/setup/setup_visuals.php:1213 +#: ../../enterprise/meta/advanced/metasetup.visual.php:96 msgid "Example" msgstr "例" -#: ../../godmode/setup/setup_visuals.php:756 -#: ../../include/functions_config.php:456 -#: ../../enterprise/meta/advanced/metasetup.visual.php:93 -#: ../../enterprise/meta/include/functions_meta.php:1082 -msgid "Timestamp or time comparation" -msgstr "タイムスタンプ表示" +#: ../../godmode/setup/setup_visuals.php:1231 +#: ../../enterprise/meta/advanced/metasetup.visual.php:113 +msgid "Timestamp, time comparison, or compact mode" +msgstr "日時表示、経過時間表示、コンパクト表示" -#: ../../godmode/setup/setup_visuals.php:757 -#: ../../enterprise/meta/advanced/metasetup.visual.php:94 +#: ../../godmode/setup/setup_visuals.php:1233 +#: ../../enterprise/meta/advanced/metasetup.visual.php:114 msgid "Comparation in rollover" msgstr "経過時間表示" -#: ../../godmode/setup/setup_visuals.php:759 -#: ../../enterprise/meta/advanced/metasetup.visual.php:96 +#: ../../godmode/setup/setup_visuals.php:1234 +#: ../../enterprise/meta/advanced/metasetup.visual.php:116 msgid "Timestamp in rollover" msgstr "日時表示" -#: ../../godmode/setup/setup_visuals.php:767 +#: ../../godmode/setup/setup_visuals.php:1235 +#: ../../enterprise/meta/advanced/metasetup.visual.php:118 +msgid "Compact mode" +msgstr "コンパクト表示" + +#: ../../godmode/setup/setup_visuals.php:1243 msgid "Custom values post process" msgstr "保存倍率のカスタム値" -#: ../../godmode/setup/setup_visuals.php:781 +#: ../../godmode/setup/setup_visuals.php:1264 msgid "Delete custom values" msgstr "カスタム値の削除" -#: ../../godmode/setup/setup_visuals.php:801 +#: ../../godmode/setup/setup_visuals.php:1295 msgid "Interval values" msgstr "間隔値" -#: ../../godmode/setup/setup_visuals.php:804 ../../include/functions.php:434 -#: ../../include/functions.php:568 ../../include/functions_html.php:832 -#: ../../enterprise/extensions/vmware/functions.php:21 -#: ../../enterprise/extensions/vmware/functions.php:22 -#: ../../enterprise/extensions/vmware/functions.php:23 -#: ../../enterprise/extensions/vmware/functions.php:24 -#: ../../enterprise/meta/advanced/metasetup.visual.php:163 -msgid "minutes" -msgstr "分" - -#: ../../godmode/setup/setup_visuals.php:805 ../../include/functions.php:435 -#: ../../include/functions.php:569 ../../include/functions_html.php:833 -#: ../../enterprise/meta/advanced/metasetup.visual.php:164 +#: ../../godmode/setup/setup_visuals.php:1299 ../../include/functions.php:493 +#: ../../include/functions.php:633 ../../include/functions_html.php:1067 +#: ../../enterprise/meta/advanced/metasetup.visual.php:226 msgid "hours" msgstr "時間" -#: ../../godmode/setup/setup_visuals.php:807 ../../include/functions.php:432 -#: ../../include/functions.php:566 ../../include/functions_html.php:836 -#: ../../enterprise/meta/advanced/metasetup.visual.php:166 +#: ../../godmode/setup/setup_visuals.php:1301 ../../include/functions.php:490 +#: ../../include/functions.php:630 ../../include/functions_html.php:1070 +#: ../../enterprise/meta/advanced/metasetup.visual.php:228 msgid "months" msgstr "月" -#: ../../godmode/setup/setup_visuals.php:808 ../../include/functions.php:433 -#: ../../include/functions.php:567 ../../include/functions_html.php:837 -#: ../../enterprise/meta/advanced/metasetup.visual.php:167 +#: ../../godmode/setup/setup_visuals.php:1302 ../../include/functions.php:491 +#: ../../include/functions.php:631 ../../include/functions_html.php:1071 +#: ../../enterprise/meta/advanced/metasetup.visual.php:229 msgid "years" msgstr "年" -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../enterprise/meta/advanced/metasetup.visual.php:168 +#: ../../godmode/setup/setup_visuals.php:1304 +#: ../../enterprise/meta/advanced/metasetup.visual.php:232 msgid "Add new custom value to intervals" msgstr "新たな間隔カスタム値の追加" -#: ../../godmode/setup/setup_visuals.php:815 -#: ../../include/functions_config.php:687 -#: ../../enterprise/meta/advanced/metasetup.visual.php:174 -#: ../../enterprise/meta/include/functions_meta.php:1355 +#: ../../godmode/setup/setup_visuals.php:1310 +#: ../../include/functions_config.php:1279 +#: ../../enterprise/meta/advanced/metasetup.visual.php:238 +#: ../../enterprise/meta/include/functions_meta.php:1625 msgid "Delete interval" msgstr "間隔値を削除" -#: ../../godmode/setup/setup_visuals.php:829 -#: ../../include/functions_config.php:714 +#: ../../godmode/setup/setup_visuals.php:1325 +#: ../../include/functions_config.php:1325 msgid "CSV divider" msgstr "CSV 区切り文字" -#: ../../godmode/setup/setup_visuals.php:846 +#: ../../godmode/setup/setup_visuals.php:1338 msgid "Other configuration" msgstr "その他設定" -#: ../../godmode/setup/setup_visuals.php:1079 -#: ../../godmode/setup/setup_visuals.php:1119 -#: ../../enterprise/meta/advanced/metasetup.visual.php:462 -#: ../../enterprise/meta/advanced/metasetup.visual.php:502 +#: ../../godmode/setup/setup_visuals.php:1579 +#: ../../enterprise/meta/advanced/metasetup.visual.php:744 msgid "Logo preview" msgstr "ロゴのプレビュー" -#: ../../godmode/setup/setup_visuals.php:1159 -#: ../../enterprise/meta/advanced/metasetup.visual.php:542 +#: ../../godmode/setup/setup_visuals.php:1609 +#: ../../enterprise/meta/advanced/metasetup.visual.php:766 msgid "Splash Preview" msgstr "スプラッシュプレビュー" -#: ../../godmode/setup/setup_visuals.php:1200 -#: ../../enterprise/meta/advanced/metasetup.visual.php:582 +#: ../../godmode/setup/setup_visuals.php:1628 +msgid "Mobile console logo preview" +msgstr "モバイルコンソールロゴプレビュー" + +#: ../../godmode/setup/setup_visuals.php:1633 +#: ../../enterprise/meta/advanced/metasetup.visual.php:771 msgid "Background preview" msgstr "背景のプレビュー" -#: ../../godmode/setup/setup_visuals.php:1244 +#: ../../godmode/setup/setup_visuals.php:1663 msgid "Gis icons preview" msgstr "GISアイコンのプレビュー" -#: ../../godmode/setup/setup_visuals.php:1299 +#: ../../godmode/setup/setup_visuals.php:1729 msgid "Status set preview" msgstr "状態表示プレビュー" -#: ../../godmode/setup/snmp_wizard.php:43 -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 +#: ../../godmode/setup/setup_websocket_engine.php:38 +msgid "WebSocket settings" +msgstr "Websocket 設定" + +#: ../../godmode/setup/setup_websocket_engine.php:47 +msgid "Bind address" +msgstr "待ち受けアドレス" + +#: ../../godmode/setup/setup_websocket_engine.php:57 +msgid "Bind port" +msgstr "待ち受けポート" + +#: ../../godmode/setup/setup_websocket_engine.php:67 +#: ../../include/functions_config.php:366 +msgid "WebSocket proxy url" +msgstr "Websocket プロキシ URL" + +#: ../../godmode/setup/setup_websocket_engine.php:68 +msgid "" +"If you had configured a wsproxy set here target URL (for instance " +"ws://your.public.fqdn/ws)." +msgstr "wsproxy を設定した場合は、ここにターゲットURL(例: ws://your.public.fqdn/ws)設定します。" + +#: ../../godmode/setup/snmp_wizard.php:44 +#: ../../enterprise/godmode/setup/setup_auth.php:172 +#: ../../enterprise/godmode/setup/setup_auth.php:229 +#: ../../enterprise/godmode/setup/setup_auth.php:929 +#: ../../enterprise/godmode/setup/setup_auth.php:981 msgid "OP" msgstr "OP" -#: ../../godmode/setup/snmp_wizard.php:166 +#: ../../godmode/setup/snmp_wizard.php:155 msgid "Unsucessful update the snmp translation" msgstr "SNMP翻訳の更新に失敗しました" -#: ../../godmode/setup/snmp_wizard.php:173 +#: ../../godmode/setup/snmp_wizard.php:162 msgid "Unsucessful update the snmp translation." msgstr "SNMP翻訳の更新に失敗しました。" -#: ../../godmode/setup/snmp_wizard.php:221 +#: ../../godmode/setup/snmp_wizard.php:210 msgid "Unsucessful delete the snmp translation" msgstr "SNMP翻訳の削除に失敗しました" -#: ../../godmode/setup/snmp_wizard.php:228 +#: ../../godmode/setup/snmp_wizard.php:217 msgid "Unsucessful delete the snmp translation." msgstr "SNMP翻訳の削除に失敗しました。" -#: ../../godmode/setup/snmp_wizard.php:289 +#: ../../godmode/setup/snmp_wizard.php:278 msgid "Unsucessful save the snmp translation" msgstr "SNMP翻訳の保存に失敗しました" -#: ../../godmode/setup/snmp_wizard.php:298 +#: ../../godmode/setup/snmp_wizard.php:287 msgid "Unsucessful save the snmp translation." msgstr "SNMP翻訳の保存に失敗しました。" -#: ../../godmode/snmpconsole/snmp_alert.php:28 -#: ../../operation/snmpconsole/snmp_view.php:491 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:929 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:29 +#: ../../godmode/snmpconsole/snmp_alert.php:26 +#: ../../operation/snmpconsole/snmp_view.php:606 +#: ../../operation/snmpconsole/snmp_view.php:1031 +#: ../../operation/snmpconsole/snmp_view.php:1045 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 msgid "Cold start (0)" msgstr "Cold start (0)" -#: ../../godmode/snmpconsole/snmp_alert.php:29 -#: ../../operation/snmpconsole/snmp_view.php:492 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:932 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 +#: ../../godmode/snmpconsole/snmp_alert.php:27 +#: ../../operation/snmpconsole/snmp_view.php:607 +#: ../../operation/snmpconsole/snmp_view.php:1032 +#: ../../operation/snmpconsole/snmp_view.php:1049 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 msgid "Warm start (1)" msgstr "Warm start (1)" -#: ../../godmode/snmpconsole/snmp_alert.php:30 -#: ../../operation/snmpconsole/snmp_view.php:493 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:935 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 +#: ../../godmode/snmpconsole/snmp_alert.php:28 +#: ../../operation/snmpconsole/snmp_view.php:608 +#: ../../operation/snmpconsole/snmp_view.php:1033 +#: ../../operation/snmpconsole/snmp_view.php:1053 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 msgid "Link down (2)" msgstr "Link down (2)" -#: ../../godmode/snmpconsole/snmp_alert.php:31 -#: ../../operation/snmpconsole/snmp_view.php:494 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:938 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 +#: ../../godmode/snmpconsole/snmp_alert.php:29 +#: ../../operation/snmpconsole/snmp_view.php:609 +#: ../../operation/snmpconsole/snmp_view.php:1034 +#: ../../operation/snmpconsole/snmp_view.php:1057 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 msgid "Link up (3)" msgstr "Link up (3)" -#: ../../godmode/snmpconsole/snmp_alert.php:32 -#: ../../operation/snmpconsole/snmp_view.php:495 -#: ../../operation/snmpconsole/snmp_view.php:922 -#: ../../operation/snmpconsole/snmp_view.php:941 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 +#: ../../godmode/snmpconsole/snmp_alert.php:30 +#: ../../operation/snmpconsole/snmp_view.php:610 +#: ../../operation/snmpconsole/snmp_view.php:1035 +#: ../../operation/snmpconsole/snmp_view.php:1061 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 msgid "Authentication failure (4)" msgstr "Authentication failure (4)" -#: ../../godmode/snmpconsole/snmp_alert.php:78 -#: ../../godmode/snmpconsole/snmp_alert.php:82 -#: ../../godmode/snmpconsole/snmp_alert.php:86 +#: ../../godmode/snmpconsole/snmp_alert.php:76 +#: ../../godmode/snmpconsole/snmp_alert.php:84 +#: ../../godmode/snmpconsole/snmp_alert.php:92 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../godmode/snmpconsole/snmp_filters.php:38 -#: ../../godmode/snmpconsole/snmp_filters.php:42 -#: ../../operation/snmpconsole/snmp_statistics.php:64 -#: ../../operation/snmpconsole/snmp_view.php:540 -#: ../../operation/snmpconsole/snmp_view.php:655 +#: ../../godmode/snmpconsole/snmp_filters.php:37 +#: ../../godmode/snmpconsole/snmp_filters.php:41 +#: ../../operation/snmpconsole/snmp_statistics.php:57 +#: ../../operation/snmpconsole/snmp_view.php:659 +#: ../../operation/snmpconsole/snmp_view.php:750 msgid "SNMP Console" msgstr "SNMP コンソール" -#: ../../godmode/snmpconsole/snmp_alert.php:78 +#: ../../godmode/snmpconsole/snmp_alert.php:76 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:790 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1272 msgid "Update alert" msgstr "アラート設定" -#: ../../godmode/snmpconsole/snmp_alert.php:86 +#: ../../godmode/snmpconsole/snmp_alert.php:92 msgid "Alert overview" msgstr "アラート一覧" -#: ../../godmode/snmpconsole/snmp_alert.php:243 +#: ../../godmode/snmpconsole/snmp_alert.php:255 msgid "There was a problem creating the alert" msgstr "アラートの作成に失敗しました。" -#: ../../godmode/snmpconsole/snmp_alert.php:314 +#: ../../godmode/snmpconsole/snmp_alert.php:377 msgid "There was a problem updating the alert" msgstr "アラートの編集に失敗しました。" -#: ../../godmode/snmpconsole/snmp_alert.php:536 +#: ../../godmode/snmpconsole/snmp_alert.php:656 msgid "There was a problem duplicating the alert" msgstr "アラートの複製で問題が発生しました" -#: ../../godmode/snmpconsole/snmp_alert.php:540 +#: ../../godmode/snmpconsole/snmp_alert.php:659 msgid "Successfully Duplicate" msgstr "複製しました" -#: ../../godmode/snmpconsole/snmp_alert.php:556 +#: ../../godmode/snmpconsole/snmp_alert.php:677 msgid "There was a problem deleting the alert" msgstr "アラートの削除に失敗しました。" -#: ../../godmode/snmpconsole/snmp_alert.php:585 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:137 +#: ../../godmode/snmpconsole/snmp_alert.php:706 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:145 #, php-format msgid "Successfully deleted alerts (%s / %s)" msgstr "アラート (%s / %s) を削除しました" -#: ../../godmode/snmpconsole/snmp_alert.php:589 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:141 +#: ../../godmode/snmpconsole/snmp_alert.php:710 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:153 #, php-format msgid "Unsuccessfully deleted alerts (%s / %s)" msgstr "アラート (%s /%s) を削除できませんでした" -#: ../../godmode/snmpconsole/snmp_alert.php:637 -#: ../../godmode/snmpconsole/snmp_alert.php:1157 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 -#: ../../operation/snmpconsole/snmp_view.php:713 +#: ../../godmode/snmpconsole/snmp_alert.php:754 +#: ../../godmode/snmpconsole/snmp_alert.php:1262 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:92 +#: ../../operation/snmpconsole/snmp_view.php:804 msgid "Enterprise String" msgstr "Enterprise文字列" -#: ../../godmode/snmpconsole/snmp_alert.php:643 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:245 +#: ../../godmode/snmpconsole/snmp_alert.php:754 +msgid "Matches substrings. End the string with $ for exact matches." +msgstr "部分文字列に一致します。 完全に一致させるには、文字列を $ で終了します。" + +#: ../../godmode/snmpconsole/snmp_alert.php:759 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:286 msgid "Custom Value/OID" msgstr "カスタム値/OID" -#: ../../godmode/snmpconsole/snmp_alert.php:652 -#: ../../godmode/snmpconsole/snmp_alert.php:1153 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:78 -#: ../../operation/snmpconsole/snmp_view.php:709 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247 +#: ../../godmode/snmpconsole/snmp_alert.php:767 +#: ../../godmode/snmpconsole/snmp_alert.php:1258 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:112 +#: ../../operation/snmpconsole/snmp_view.php:799 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:288 msgid "SNMP Agent" msgstr "SNMPエージェント" -#: ../../godmode/snmpconsole/snmp_alert.php:664 -#: ../../godmode/snmpconsole/snmp_alert.php:1003 -#: ../../include/functions_snmp.php:377 -#: ../../operation/snmpconsole/snmp_view.php:487 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:169 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:220 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:249 +#: ../../godmode/snmpconsole/snmp_alert.php:796 +#: ../../godmode/snmpconsole/snmp_alert.php:1114 +#: ../../include/functions_snmp.php:443 +#: ../../operation/snmpconsole/snmp_view.php:603 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:185 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:247 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:290 msgid "Trap type" msgstr "トラップタイプ" -#: ../../godmode/snmpconsole/snmp_alert.php:669 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:251 +#: ../../godmode/snmpconsole/snmp_alert.php:801 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:292 msgid "Single value" msgstr "単一値" -#: ../../godmode/snmpconsole/snmp_alert.php:676 -#: ../../godmode/snmpconsole/snmp_alert.php:686 -#: ../../godmode/snmpconsole/snmp_alert.php:696 -#: ../../godmode/snmpconsole/snmp_alert.php:708 -#: ../../godmode/snmpconsole/snmp_alert.php:720 -#: ../../godmode/snmpconsole/snmp_alert.php:732 -#: ../../godmode/snmpconsole/snmp_alert.php:744 -#: ../../godmode/snmpconsole/snmp_alert.php:754 -#: ../../godmode/snmpconsole/snmp_alert.php:764 -#: ../../godmode/snmpconsole/snmp_alert.php:774 -#: ../../godmode/snmpconsole/snmp_alert.php:784 -#: ../../godmode/snmpconsole/snmp_alert.php:793 -#: ../../godmode/snmpconsole/snmp_alert.php:802 -#: ../../godmode/snmpconsole/snmp_alert.php:811 -#: ../../godmode/snmpconsole/snmp_alert.php:820 -#: ../../godmode/snmpconsole/snmp_alert.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:838 -#: ../../godmode/snmpconsole/snmp_alert.php:846 -#: ../../godmode/snmpconsole/snmp_alert.php:854 -#: ../../godmode/snmpconsole/snmp_alert.php:862 +#: ../../godmode/snmpconsole/snmp_alert.php:806 +#: ../../godmode/snmpconsole/snmp_alert.php:813 +#: ../../godmode/snmpconsole/snmp_alert.php:822 +#: ../../godmode/snmpconsole/snmp_alert.php:831 +#: ../../godmode/snmpconsole/snmp_alert.php:840 +#: ../../godmode/snmpconsole/snmp_alert.php:849 +#: ../../godmode/snmpconsole/snmp_alert.php:858 +#: ../../godmode/snmpconsole/snmp_alert.php:866 +#: ../../godmode/snmpconsole/snmp_alert.php:874 +#: ../../godmode/snmpconsole/snmp_alert.php:882 +#: ../../godmode/snmpconsole/snmp_alert.php:890 +#: ../../godmode/snmpconsole/snmp_alert.php:898 +#: ../../godmode/snmpconsole/snmp_alert.php:906 +#: ../../godmode/snmpconsole/snmp_alert.php:914 +#: ../../godmode/snmpconsole/snmp_alert.php:922 +#: ../../godmode/snmpconsole/snmp_alert.php:930 +#: ../../godmode/snmpconsole/snmp_alert.php:938 +#: ../../godmode/snmpconsole/snmp_alert.php:946 +#: ../../godmode/snmpconsole/snmp_alert.php:954 +#: ../../godmode/snmpconsole/snmp_alert.php:962 msgid "Variable bindings/Data" msgstr "変数バインディング/データ" -#: ../../godmode/snmpconsole/snmp_alert.php:933 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:270 +#: ../../godmode/snmpconsole/snmp_alert.php:1028 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:311 msgid "Other value" msgstr "他の値" -#: ../../godmode/snmpconsole/snmp_alert.php:946 -#: ../../godmode/snmpconsole/snmp_alert.php:1151 +#: ../../godmode/snmpconsole/snmp_alert.php:1041 +#: ../../godmode/snmpconsole/snmp_alert.php:1256 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:411 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:520 msgid "Alert action" msgstr "アクション" -#: ../../godmode/snmpconsole/snmp_alert.php:1000 +#: ../../godmode/snmpconsole/snmp_alert.php:1110 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " "Single value, each Variable bindings/Datas." msgstr "説明、OID、カスタム値、SNMPエージェント(IP)、単一値、変数の割り当て・データのフィールドで検索します" -#: ../../godmode/snmpconsole/snmp_alert.php:1019 +#: ../../godmode/snmpconsole/snmp_alert.php:1129 msgid "Alert SNMP control filter" msgstr "SNMPアラート管理フィルタ" -#: ../../godmode/snmpconsole/snmp_alert.php:1112 +#: ../../godmode/snmpconsole/snmp_alert.php:1214 msgid "There are no SNMP alerts" msgstr "SNMP アラートはありません。" -#: ../../godmode/snmpconsole/snmp_alert.php:1160 +#: ../../godmode/snmpconsole/snmp_alert.php:1265 msgid "Custom Value/Enterprise String" msgstr "カスタム値/Enterprise文字列" -#: ../../godmode/snmpconsole/snmp_alert.php:1165 -#: ../../include/functions_treeview.php:429 -#: ../../include/functions_reporting_html.php:2995 -#: ../../include/functions_reporting_html.php:3223 +#: ../../godmode/snmpconsole/snmp_alert.php:1270 +#: ../../include/functions_treeview.php:444 +#: ../../include/functions_reporting_html.php:4020 +#: ../../include/functions_reporting_html.php:4142 msgid "Times fired" msgstr "通知回数" -#: ../../godmode/snmpconsole/snmp_alert.php:1165 +#: ../../godmode/snmpconsole/snmp_alert.php:1270 msgid "TF." msgstr "回数" -#: ../../godmode/snmpconsole/snmp_alert.php:1256 +#: ../../godmode/snmpconsole/snmp_alert.php:1346 msgid "ID Alert SNMP" msgstr "SNMPアラートID" -#: ../../godmode/snmpconsole/snmp_alert.php:1484 +#: ../../godmode/snmpconsole/snmp_alert.php:1592 msgid "Add action " msgstr "アクション追加 " -#: ../../godmode/snmpconsole/snmp_filters.php:42 +#: ../../godmode/snmpconsole/snmp_filters.php:41 msgid "Filter overview" msgstr "フィルタの概要" -#: ../../godmode/snmpconsole/snmp_filters.php:77 +#: ../../godmode/snmpconsole/snmp_filters.php:87 msgid "There was a problem updating the filter" msgstr "フィルタの更新に問題が発生しました。" -#: ../../godmode/snmpconsole/snmp_filters.php:107 +#: ../../godmode/snmpconsole/snmp_filters.php:105 +#: ../../godmode/snmpconsole/snmp_filters.php:131 +msgid "Description is empty" +msgstr "説明が空です" + +#: ../../godmode/snmpconsole/snmp_filters.php:108 +msgid "Filter is empty" +msgstr "フィルタが空です" + +#: ../../godmode/snmpconsole/snmp_filters.php:128 +msgid "Filters are empty" +msgstr "フィルタが空です" + +#: ../../godmode/snmpconsole/snmp_filters.php:138 msgid "There was a problem creating the filter" msgstr "フィルタの作成に問題が発生しました。" -#: ../../godmode/snmpconsole/snmp_filters.php:125 +#: ../../godmode/snmpconsole/snmp_filters.php:157 msgid "There was a problem deleting the filter" msgstr "フィルタの削除で問題が発生しました。" -#: ../../godmode/snmpconsole/snmp_filters.php:169 -#: ../../godmode/snmpconsole/snmp_filters.php:180 +#: ../../godmode/snmpconsole/snmp_filters.php:200 +#: ../../godmode/snmpconsole/snmp_filters.php:210 msgid "" "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:172 +#: ../../godmode/snmpconsole/snmp_filters.php:202 msgid "Click to remove the filter" msgstr "フィルタ削除" -#: ../../godmode/snmpconsole/snmp_filters.php:195 +#: ../../godmode/snmpconsole/snmp_filters.php:228 msgid "Click to add new filter" msgstr "新規フィルタ追加" @@ -18386,707 +20593,729 @@ msgstr "新規フィルタ追加" msgid "SNMP Trap generator" msgstr "SNMPトラップジェネレータ" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:51 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:55 msgid "Empty parameters" msgstr "パラメータが空です" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:56 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:61 msgid "Successfully generated" msgstr "生成しました" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:57 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:62 #, php-format msgid "Could not be generated: %s" msgstr "生成できません: %s" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:66 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:72 msgid "Host address" msgstr "ホストアドレス" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:81 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:122 msgid "SNMP Type" msgstr "SNMPタイプ" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:89 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:155 msgid "Generate trap" msgstr "トラップ生成" -#: ../../godmode/tag/edit_tag.php:53 ../../godmode/tag/edit_tag.php:64 -#: ../../godmode/tag/tag.php:100 +#: ../../godmode/tag/edit_tag.php:51 ../../godmode/tag/edit_tag.php:62 +#: ../../godmode/tag/tag.php:113 msgid "List tags" msgstr "タグ一覧" -#: ../../godmode/tag/edit_tag.php:68 ../../godmode/tag/tag.php:110 +#: ../../godmode/tag/edit_tag.php:68 ../../godmode/tag/tag.php:125 msgid "Tags configuration" msgstr "タグ設定" -#: ../../godmode/tag/edit_tag.php:92 +#: ../../godmode/tag/edit_tag.php:91 msgid "Error updating tag" msgstr "タグ更新に失敗" -#: ../../godmode/tag/edit_tag.php:96 +#: ../../godmode/tag/edit_tag.php:94 msgid "Successfully updated tag" msgstr "タグを更新しました" -#: ../../godmode/tag/edit_tag.php:122 +#: ../../godmode/tag/edit_tag.php:120 msgid "Error creating tag" msgstr "タグを作成できません" -#: ../../godmode/tag/edit_tag.php:128 +#: ../../godmode/tag/edit_tag.php:125 msgid "Successfully created tag" msgstr "タグを作成しました" -#: ../../godmode/tag/edit_tag.php:161 +#: ../../godmode/tag/edit_tag.php:158 msgid "Update Tag" msgstr "タグの更新" -#: ../../godmode/tag/edit_tag.php:164 +#: ../../godmode/tag/edit_tag.php:162 msgid "Create Tag" msgstr "タグの作成" -#: ../../godmode/tag/edit_tag.php:185 -#: ../../include/functions_reporting.php:4365 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1666 -#: ../../enterprise/meta/include/functions_wizard_meta.php:521 +#: ../../godmode/tag/edit_tag.php:184 +#: ../../include/functions_reporting.php:5041 +#: ../../enterprise/meta/include/functions_wizard_meta.php:641 #: ../../enterprise/meta/monitoring/wizard/wizard.php:108 msgid "Url" msgstr "URL" -#: ../../godmode/tag/edit_tag.php:187 +#: ../../godmode/tag/edit_tag.php:186 msgid "Hyperlink to help information that has to exist previously." msgstr "情報がある場所へのハイパーリンク" -#: ../../godmode/tag/edit_tag.php:197 +#: ../../godmode/tag/edit_tag.php:196 ../../godmode/tag/tag.php:228 +#: ../../include/functions_cron.php:508 ../../include/functions_cron.php:560 +#: ../../include/functions_update_manager.php:744 +#: ../../operation/search_users.php:36 +#: ../../enterprise/godmode/setup/setup_auth.php:96 +#: ../../enterprise/include/functions_tasklist.php:224 +#: ../../enterprise/include/functions_tasklist.php:281 +#: ../../enterprise/operation/reporting/custom_reporting.php:20 +msgid "Email" +msgstr "Email" + +#: ../../godmode/tag/edit_tag.php:198 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "タグに関連付けられるアラートで利用するためのメール送信先" -#: ../../godmode/tag/edit_tag.php:205 ../../godmode/tag/tag.php:204 -#: ../../godmode/users/user_list.php:403 +#: ../../godmode/tag/edit_tag.php:208 ../../godmode/tag/tag.php:229 +#: ../../godmode/users/user_list.php:476 msgid "Phone" msgstr "電話番号" -#: ../../godmode/tag/edit_tag.php:207 +#: ../../godmode/tag/edit_tag.php:210 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "タグに関連付けられるアラートで利用するための電話番号" -#: ../../godmode/tag/tag.php:80 +#: ../../godmode/tag/tag.php:93 msgid "Number of modules" msgstr "モジュール数" -#: ../../godmode/tag/tag.php:82 +#: ../../godmode/tag/tag.php:95 msgid "Number of policy modules" msgstr "ポリシーモジュール数" -#: ../../godmode/tag/tag.php:121 +#: ../../godmode/tag/tag.php:141 msgid "Error deleting tag" msgstr "タグを削除できません" -#: ../../godmode/tag/tag.php:125 +#: ../../godmode/tag/tag.php:144 msgid "Successfully deleted tag" msgstr "タグを削除しました" -#: ../../godmode/tag/tag.php:199 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1651 +#: ../../godmode/tag/tag.php:224 msgid "Tag name" msgstr "タグ名" -#: ../../godmode/tag/tag.php:201 +#: ../../godmode/tag/tag.php:226 msgid "Detail information" msgstr "詳細情報" -#: ../../godmode/tag/tag.php:202 +#: ../../godmode/tag/tag.php:227 msgid "Number of modules affected" msgstr "影響するモジュール数" -#: ../../godmode/tag/tag.php:222 +#: ../../godmode/tag/tag.php:249 msgid "Tag details" msgstr "タグ詳細" -#: ../../godmode/tag/tag.php:249 +#: ../../godmode/tag/tag.php:277 #, php-format msgid "Emails for the tag: %s" msgstr "タグ %s のメールアドレス" -#: ../../godmode/tag/tag.php:264 +#: ../../godmode/tag/tag.php:287 #, php-format msgid "Phones for the tag: %s" msgstr "タグ %s の電話番号" -#: ../../godmode/tag/tag.php:282 +#: ../../godmode/tag/tag.php:303 msgid "No tags defined" msgstr "タグが定義されていません" -#: ../../godmode/tag/tag.php:298 +#: ../../godmode/tag/tag.php:317 msgid "Create tag" msgstr "タグの作成" -#: ../../godmode/update_manager/update_manager.messages.php:96 -#: ../../godmode/update_manager/update_manager.messages.php:170 -msgid "Mark as not read" -msgstr "未読にする" - -#: ../../godmode/update_manager/update_manager.messages.php:101 -#: ../../godmode/update_manager/update_manager.messages.php:175 -msgid "Mark as read" -msgstr "既読にする" - -#: ../../godmode/update_manager/update_manager.messages.php:186 -msgid "There is not any update manager messages." -msgstr "アップデートマネージャのメッセージはありません。" - -#: ../../godmode/update_manager/update_manager.offline.php:37 +#: ../../godmode/update_manager/update_manager.offline.php:56 msgid "Drop the package here or" msgstr "ここにパッケージをドロップするかまたは" -#: ../../godmode/update_manager/update_manager.offline.php:38 +#: ../../godmode/update_manager/update_manager.offline.php:57 msgid "browse it" msgstr "ブラウズしてください" -#: ../../godmode/update_manager/update_manager.offline.php:39 +#: ../../godmode/update_manager/update_manager.offline.php:58 msgid "The package has been uploaded successfully." msgstr "パッケージをアップロードしました。" -#: ../../godmode/update_manager/update_manager.offline.php:40 +#: ../../godmode/update_manager/update_manager.offline.php:59 +#, php-format 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." -msgstr "" -"このパッケージは既存の Pandora FMS ファイルを上書きすることに注意してください。アップデートを実行する前にバックアップを取得してください。" +"Please keep in mind that this package is going to override your actual %s " +"files and that it's recommended to conduct a backup before continuing the " +"updating process." +msgstr "このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバックアップを取ることをお勧めします。" -#: ../../godmode/update_manager/update_manager.offline.php:41 +#: ../../godmode/update_manager/update_manager.offline.php:60 msgid "Click on the file below to begin." msgstr "開始するには以下のファイルをクリックします。" -#: ../../godmode/update_manager/update_manager.offline.php:42 +#: ../../godmode/update_manager/update_manager.offline.php:61 msgid "Updating" msgstr "更新中" -#: ../../godmode/update_manager/update_manager.offline.php:43 +#: ../../godmode/update_manager/update_manager.offline.php:62 msgid "Package updated successfully." msgstr "パッケージを更新しました。" -#: ../../godmode/update_manager/update_manager.offline.php:44 +#: ../../godmode/update_manager/update_manager.offline.php:63 msgid "If there are any database change, it will be applied." msgstr "データベースの変更がある場合、それが適用されます。" -#: ../../godmode/update_manager/update_manager.offline.php:45 -#: ../../include/functions_update_manager.php:345 -#: ../../enterprise/include/functions_update_manager.php:177 +#: ../../godmode/update_manager/update_manager.offline.php:64 +#: ../../include/functions_update_manager.php:1367 +#: ../../enterprise/include/functions_update_manager.php:214 msgid "Minor release available" msgstr "マイナーリリースがあります。" -#: ../../godmode/update_manager/update_manager.offline.php:46 -#: ../../include/functions_update_manager.php:346 -#: ../../enterprise/include/functions_update_manager.php:178 +#: ../../godmode/update_manager/update_manager.offline.php:65 +#: ../../include/functions_update_manager.php:1368 +#: ../../enterprise/include/functions_update_manager.php:215 msgid "New package available" msgstr "新たなパッケージがあります。" -#: ../../godmode/update_manager/update_manager.offline.php:47 -#: ../../godmode/update_manager/update_manager.offline.php:49 -#: ../../include/functions_update_manager.php:347 -#: ../../include/functions_update_manager.php:349 -#: ../../enterprise/include/functions_update_manager.php:179 -#: ../../enterprise/include/functions_update_manager.php:181 +#: ../../godmode/update_manager/update_manager.offline.php:66 +#: ../../godmode/update_manager/update_manager.offline.php:68 +#: ../../include/functions_update_manager.php:1369 +#: ../../include/functions_update_manager.php:1371 +#: ../../enterprise/include/functions_update_manager.php:216 +#: ../../enterprise/include/functions_update_manager.php:218 msgid "Minor release rejected. Changes will not apply." msgstr "マイナーリリースを受け付けません。変更は適用されません。" -#: ../../godmode/update_manager/update_manager.offline.php:48 -#: ../../include/functions_update_manager.php:348 -#: ../../enterprise/include/functions_update_manager.php:180 +#: ../../godmode/update_manager/update_manager.offline.php:67 +#: ../../include/functions_update_manager.php:1370 +#: ../../enterprise/include/functions_update_manager.php:217 msgid "" "Minor release rejected. The database will not be updated and the package " "will apply." msgstr "マイナーリリースを受け付けません。データベースがアップデートされませんがパッケージは適用されます。" -#: ../../godmode/update_manager/update_manager.offline.php:50 -#: ../../include/functions_update_manager.php:350 -#: ../../enterprise/include/functions_update_manager.php:182 +#: ../../godmode/update_manager/update_manager.offline.php:69 +#: ../../include/functions_update_manager.php:1372 +#: ../../enterprise/include/functions_update_manager.php:219 msgid "These package changes will not apply." msgstr "これらのパッケージ変更は適用されません。" -#: ../../godmode/update_manager/update_manager.offline.php:51 -#: ../../include/functions_update_manager.php:351 -#: ../../enterprise/include/functions_update_manager.php:183 +#: ../../godmode/update_manager/update_manager.offline.php:70 +#: ../../include/functions_update_manager.php:1373 +#: ../../enterprise/include/functions_update_manager.php:220 msgid "Package rejected. These package changes will not apply." msgstr "パッケージを受け付けられません。これらのパッケージは適用されません。" -#: ../../godmode/update_manager/update_manager.offline.php:52 -#: ../../include/functions_update_manager.php:352 -#: ../../enterprise/include/functions_update_manager.php:184 +#: ../../godmode/update_manager/update_manager.offline.php:71 +#: ../../include/functions_update_manager.php:1374 +#: ../../enterprise/include/functions_update_manager.php:221 msgid "Database successfully updated" msgstr "データベースを更新しました。" -#: ../../godmode/update_manager/update_manager.offline.php:53 -#: ../../include/functions_update_manager.php:353 -#: ../../enterprise/include/functions_update_manager.php:185 +#: ../../godmode/update_manager/update_manager.offline.php:72 +#: ../../include/functions_update_manager.php:1375 +#: ../../enterprise/include/functions_update_manager.php:222 msgid "Error in MR file" msgstr "MR ファイルエラー" -#: ../../godmode/update_manager/update_manager.offline.php:54 -#: ../../include/functions_update_manager.php:354 -#: ../../enterprise/include/functions_update_manager.php:186 +#: ../../godmode/update_manager/update_manager.offline.php:73 +#: ../../include/functions_update_manager.php:1376 +#: ../../enterprise/include/functions_update_manager.php:223 msgid "Package updated successfully" msgstr "パッケージを更新しました。" -#: ../../godmode/update_manager/update_manager.offline.php:55 -#: ../../include/functions_update_manager.php:355 -#: ../../enterprise/include/functions_update_manager.php:187 +#: ../../godmode/update_manager/update_manager.offline.php:74 +#: ../../include/functions_update_manager.php:1377 +#: ../../enterprise/include/functions_update_manager.php:224 msgid "Error in package updated" msgstr "パッケージ更新エラー" -#: ../../godmode/update_manager/update_manager.offline.php:56 -#: ../../include/functions_update_manager.php:356 -#: ../../enterprise/include/functions_update_manager.php:188 +#: ../../godmode/update_manager/update_manager.offline.php:75 +#: ../../include/functions_update_manager.php:1378 +#: ../../enterprise/include/functions_update_manager.php:225 msgid "" "Database MR version is inconsistent, do you want to apply the package?" msgstr "データベースの MR バージョンの不整合があります。パッケージを適用しますか?" -#: ../../godmode/update_manager/update_manager.offline.php:57 -#: ../../include/functions_update_manager.php:357 -#: ../../enterprise/include/functions_update_manager.php:189 +#: ../../godmode/update_manager/update_manager.offline.php:76 +#: ../../include/functions_update_manager.php:1379 +#: ../../enterprise/include/functions_update_manager.php:226 msgid "There are db changes" msgstr "DB の変更があります。" -#: ../../godmode/update_manager/update_manager.offline.php:58 -#: ../../include/functions_update_manager.php:358 -#: ../../enterprise/include/functions_update_manager.php:190 +#: ../../godmode/update_manager/update_manager.offline.php:77 +#: ../../include/functions_update_manager.php:1380 +#: ../../enterprise/include/functions_update_manager.php:227 msgid "" "There are new database changes available to apply. Do you want to start the " "DB update process?" msgstr "新たなデータベースの変更があります。DB 更新プロセスを開始しますか?" -#: ../../godmode/update_manager/update_manager.offline.php:59 -#: ../../include/functions_update_manager.php:359 -#: ../../enterprise/include/functions_update_manager.php:191 +#: ../../godmode/update_manager/update_manager.offline.php:78 +#: ../../include/functions_update_manager.php:1381 +#: ../../enterprise/include/functions_update_manager.php:228 msgid "We recommend launching " msgstr "つぎの実行をお勧めします " -#: ../../godmode/update_manager/update_manager.offline.php:60 -#: ../../include/functions_update_manager.php:360 -#: ../../enterprise/include/functions_update_manager.php:192 +#: ../../godmode/update_manager/update_manager.offline.php:79 +#: ../../include/functions_update_manager.php:1382 +#: ../../enterprise/include/functions_update_manager.php:229 msgid "planned downtime" msgstr "計画停止" -#: ../../godmode/update_manager/update_manager.offline.php:63 -#: ../../godmode/update_manager/update_manager.offline.php:66 -#: ../../include/functions_update_manager.php:363 -#: ../../include/functions_update_manager.php:366 -#: ../../enterprise/include/functions_update_manager.php:195 -#: ../../enterprise/include/functions_update_manager.php:198 +#: ../../godmode/update_manager/update_manager.offline.php:85 +#: ../../include/functions_update_manager.php:1389 +#: ../../enterprise/include/functions_update_manager.php:236 msgid " to this process" msgstr "" -#: ../../godmode/update_manager/update_manager.offline.php:69 -#: ../../include/functions_update_manager.php:369 -#: ../../enterprise/include/functions_update_manager.php:201 +#: ../../godmode/update_manager/update_manager.offline.php:91 +#: ../../include/functions_update_manager.php:1395 +#: ../../enterprise/include/functions_update_manager.php:241 msgid "There is a new update available" msgstr "新たな更新があります。" -#: ../../godmode/update_manager/update_manager.offline.php:70 -#: ../../include/functions_update_manager.php:370 -#: ../../enterprise/include/functions_update_manager.php:202 +#: ../../godmode/update_manager/update_manager.offline.php:92 +#: ../../include/functions_update_manager.php:1396 +#: ../../enterprise/include/functions_update_manager.php:242 msgid "" "There is a new update available to apply. Do you want to start the update " "process?" msgstr "新たな更新があります。更新処理を開始しますか?" -#: ../../godmode/update_manager/update_manager.offline.php:71 -#: ../../include/functions_update_manager.php:371 -#: ../../enterprise/include/functions_update_manager.php:203 +#: ../../godmode/update_manager/update_manager.offline.php:93 +#: ../../include/functions_update_manager.php:1397 +#: ../../enterprise/include/functions_update_manager.php:243 msgid "Applying DB MR" msgstr "DB へ MR適用中" -#: ../../godmode/update_manager/update_manager.offline.php:74 -#: ../../include/functions_update_manager.php:374 -#: ../../enterprise/include/functions_update_manager.php:206 +#: ../../godmode/update_manager/update_manager.offline.php:96 +#: ../../include/functions_update_manager.php:1400 +#: ../../enterprise/include/functions_update_manager.php:246 msgid "Apply MR" msgstr "MR 適用" -#: ../../godmode/update_manager/update_manager.offline.php:75 -#: ../../include/functions_update_manager.php:375 -#: ../../include/functions_visual_map_editor.php:481 -#: ../../enterprise/godmode/policies/policy_agents.php:576 -#: ../../enterprise/godmode/policies/policy_agents.php:820 -#: ../../enterprise/godmode/policies/policy_queue.php:435 -#: ../../enterprise/include/functions_update_manager.php:207 -#: ../../enterprise/meta/advanced/policymanager.apply.php:215 -#: ../../enterprise/meta/advanced/policymanager.queue.php:306 +#: ../../godmode/update_manager/update_manager.offline.php:97 +#: ../../include/functions_update_manager.php:1401 +#: ../../include/functions_visual_map_editor.php:573 +#: ../../enterprise/godmode/policies/policy_agents.php:713 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/godmode/policies/policy_queue.php:507 +#: ../../enterprise/include/functions_update_manager.php:247 +#: ../../enterprise/meta/advanced/policymanager.apply.php:213 +#: ../../enterprise/meta/advanced/policymanager.queue.php:307 msgid "Apply" msgstr "適用" -#: ../../godmode/update_manager/update_manager.online.php:48 -#, php-format -msgid "" -"Your PHP has set memory limit in %s. For avoid problems with big updates " -"please set to 500M" -msgstr "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるためには、500M に設定してください。" - -#: ../../godmode/update_manager/update_manager.online.php:55 -#, php-format -msgid "" -"Your PHP has set post parameter max size limit in %s. For avoid problems " -"with big updates please set to 100M" -msgstr "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時に問題にならないよう、100M に設定してください。" - #: ../../godmode/update_manager/update_manager.online.php:62 #, 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 memory limit in %s. To use Update Manager Online, please " +"set it to %s" msgstr "" -"PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな更新時に問題にならないよう、100M に設定してください。" +"PHP の memory limit が %s に設定されています。オンラインアップデートマネージャを利用するには、%s に設定してください。" -#: ../../godmode/update_manager/update_manager.online.php:85 +#: ../../godmode/update_manager/update_manager.online.php:75 +#, php-format +msgid "" +"Your PHP has post_max_size limited to %s. To use Update Manager Online, " +"please set it to %s" +msgstr "" +"PHP の post_max_size が %s に制限されています。オンラインアップデートマネージャを利用するには、%s に設定してください。" + +#: ../../godmode/update_manager/update_manager.online.php:88 +#, php-format +msgid "" +"Your PHP has set maximum allowed size for uploaded files limit in %s. To use " +"Update Manager Online, please set it to %s" +msgstr "" +"PHP の最大アップロードファイルサイズが %s に制限されています。オンラインアップデートマネージャを利用するには、%s に設定してください。" + +#: ../../godmode/update_manager/update_manager.online.php:102 +msgid "Update Manager Online requires registration" +msgstr "オンラインアップデートマネージャは登録が必要です" + +#: ../../godmode/update_manager/update_manager.online.php:133 msgid "The latest version of package installed is:" msgstr "インストール済の最新パッケージ:" -#: ../../godmode/update_manager/update_manager.online.php:89 +#: ../../godmode/update_manager/update_manager.online.php:141 msgid "Checking for the newest package." msgstr "最新パッケージの確認中。" -#: ../../godmode/update_manager/update_manager.online.php:93 +#: ../../godmode/update_manager/update_manager.online.php:145 msgid "Downloading for the newest package." msgstr "最新パッケージのダウンロード中。" -#: ../../godmode/update_manager/update_manager.php:39 +#: ../../godmode/update_manager/update_manager.php:41 msgid "Offline update manager" msgstr "オフラインアップデートマネージャ" -#: ../../godmode/update_manager/update_manager.php:43 +#: ../../godmode/update_manager/update_manager.php:47 msgid "Online update manager" msgstr "オンラインアップデートマネージャ" -#: ../../godmode/update_manager/update_manager.php:50 -msgid "Update manager messages" -msgstr "アップデートマネージャのメッセージ" - -#: ../../godmode/update_manager/update_manager.php:55 +#: ../../godmode/update_manager/update_manager.php:53 msgid "Update manager » Setup" msgstr "アップデートマネージャ > 設定" -#: ../../godmode/update_manager/update_manager.php:58 +#: ../../godmode/update_manager/update_manager.php:57 msgid "Update manager » Offline" msgstr "アップデートマネージャ > オフライン" -#: ../../godmode/update_manager/update_manager.php:61 +#: ../../godmode/update_manager/update_manager.php:62 msgid "Update manager » Online" msgstr "アップデートマネージャ > オンライン" -#: ../../godmode/update_manager/update_manager.php:64 -msgid "Update manager » Messages" -msgstr "アップデートマネージャ > メッセージ" - -#: ../../godmode/update_manager/update_manager.setup.php:58 -#: ../../godmode/update_manager/update_manager.setup.php:87 -#: ../../enterprise/meta/advanced/metasetup.mail.php:63 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:58 +#: ../../godmode/update_manager/update_manager.setup.php:124 +#: ../../godmode/update_manager/update_manager.setup.php:175 +#: ../../enterprise/meta/advanced/metasetup.mail.php:79 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 msgid "Succesful Update the url config vars." msgstr "URL 設定を更新しました。" -#: ../../godmode/update_manager/update_manager.setup.php:59 -#: ../../godmode/update_manager/update_manager.setup.php:88 -#: ../../enterprise/meta/advanced/metasetup.mail.php:64 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:59 +#: ../../godmode/update_manager/update_manager.setup.php:125 +#: ../../godmode/update_manager/update_manager.setup.php:176 +#: ../../enterprise/meta/advanced/metasetup.mail.php:80 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:89 msgid "Unsuccesful Update the url config vars." msgstr "URL 設定を更新できませんでした。" -#: ../../godmode/update_manager/update_manager.setup.php:100 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:70 +#: ../../godmode/update_manager/update_manager.setup.php:189 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:101 msgid "URL update manager:" msgstr "アップデートマネージャ URL:" -#: ../../godmode/update_manager/update_manager.setup.php:102 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:72 +#: ../../godmode/update_manager/update_manager.setup.php:193 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:105 msgid "URL update manager" msgstr "アップデートマネージャ URL" -#: ../../godmode/update_manager/update_manager.setup.php:104 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:74 +#: ../../godmode/update_manager/update_manager.setup.php:199 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:111 msgid "Proxy server:" msgstr "プロキシサーバ:" -#: ../../godmode/update_manager/update_manager.setup.php:106 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:76 +#: ../../godmode/update_manager/update_manager.setup.php:203 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:115 msgid "Proxy server" msgstr "プロキシサーバ" -#: ../../godmode/update_manager/update_manager.setup.php:108 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:78 +#: ../../godmode/update_manager/update_manager.setup.php:209 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:121 msgid "Proxy port:" msgstr "プロキシポート:" -#: ../../godmode/update_manager/update_manager.setup.php:110 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:80 +#: ../../godmode/update_manager/update_manager.setup.php:213 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:125 msgid "Proxy port" msgstr "プロキシのポート番号" -#: ../../godmode/update_manager/update_manager.setup.php:112 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:82 +#: ../../godmode/update_manager/update_manager.setup.php:219 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:131 msgid "Proxy user:" msgstr "プロキシユーザ:" -#: ../../godmode/update_manager/update_manager.setup.php:114 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:84 +#: ../../godmode/update_manager/update_manager.setup.php:223 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:135 msgid "Proxy user" msgstr "プロキシのユーザ" -#: ../../godmode/update_manager/update_manager.setup.php:116 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:86 +#: ../../godmode/update_manager/update_manager.setup.php:229 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:141 msgid "Proxy password:" msgstr "プロキシパスワード:" -#: ../../godmode/update_manager/update_manager.setup.php:118 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:88 +#: ../../godmode/update_manager/update_manager.setup.php:233 +#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:145 msgid "Proxy password" msgstr "プロキシのパスワード" -#: ../../godmode/update_manager/update_manager.setup.php:122 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:92 +#: ../../godmode/update_manager/update_manager.setup.php:240 +msgid "Registration ID:" +msgstr "登録ID:" + +#: ../../godmode/update_manager/update_manager.setup.php:244 +msgid "Cancel registration:" +msgstr "登録のキャンセル:" + +#: ../../godmode/update_manager/update_manager.setup.php:249 +msgid "Unregister" +msgstr "登録解除" + +#: ../../godmode/update_manager/update_manager.setup.php:256 msgid "Pandora FMS community reminder" msgstr "Pandora FMS コミュニティリマインダ" -#: ../../godmode/update_manager/update_manager.setup.php:123 -#: ../../enterprise/meta/advanced/metasetup.update_manager_setup.php:93 +#: ../../godmode/update_manager/update_manager.setup.php:256 msgid "" "Every 8 days, a message is displayed to admin users to remember to register " "this Pandora instance" msgstr "8日ごとに、この Pandora インスタンスを登録するリマインダメッセージを admin ユーザに表示します。" -#: ../../godmode/users/configure_profile.php:41 -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/configure_user.php:84 -#: ../../godmode/users/profile_list.php:45 -#: ../../godmode/users/profile_list.php:53 -#: ../../godmode/users/user_list.php:113 ../../godmode/users/user_list.php:121 -#: ../../enterprise/meta/general/main_header.php:243 -#: ../../enterprise/meta/general/main_header.php:309 -#: ../../enterprise/meta/include/functions_users_meta.php:168 -#: ../../enterprise/meta/include/functions_users_meta.php:187 +#: ../../godmode/users/configure_profile.php:40 +#: ../../godmode/users/configure_profile.php:51 +#: ../../godmode/users/configure_user.php:83 +#: ../../godmode/users/profile_list.php:44 +#: ../../godmode/users/profile_list.php:55 +#: ../../godmode/users/user_list.php:135 ../../godmode/users/user_list.php:145 +#: ../../operation/users/user_edit_header.php:90 +#: ../../enterprise/meta/general/main_header.php:310 +#: ../../enterprise/meta/general/main_header.php:392 +#: ../../enterprise/meta/include/functions_users_meta.php:182 +#: ../../enterprise/meta/include/functions_users_meta.php:204 msgid "User management" msgstr "ユーザ管理" -#: ../../godmode/users/configure_profile.php:49 -#: ../../godmode/users/profile_list.php:53 -msgid "Profiles defined in Pandora" -msgstr "Pandora 内プロファイル" +#: ../../godmode/users/configure_profile.php:51 +#: ../../godmode/users/profile_list.php:55 +#, php-format +msgid "Profiles defined on %s" +msgstr "%s に定義済のプロファイル" -#: ../../godmode/users/configure_profile.php:113 +#: ../../godmode/users/configure_profile.php:117 msgid "Create profile" msgstr "プロファイル作成" -#: ../../godmode/users/configure_profile.php:119 +#: ../../godmode/users/configure_profile.php:122 msgid "There was a problem loading profile" msgstr "プロファイルの読み込みに失敗しました。" -#: ../../godmode/users/configure_profile.php:219 +#: ../../godmode/users/configure_profile.php:191 msgid "Update profile" msgstr "プロファイルを更新しました。" -#: ../../godmode/users/configure_profile.php:229 +#: ../../godmode/users/configure_profile.php:201 msgid "Update Profile" msgstr "プロファイル更新" -#: ../../godmode/users/configure_profile.php:231 +#: ../../godmode/users/configure_profile.php:203 msgid "Create Profile" msgstr "プロファイル作成" -#: ../../godmode/users/configure_profile.php:249 +#: ../../godmode/users/configure_profile.php:224 msgid "View agents" msgstr "エージェント参照" -#: ../../godmode/users/configure_profile.php:253 +#: ../../godmode/users/configure_profile.php:228 msgid "Disable agents" msgstr "エージェント無効化" -#: ../../godmode/users/configure_profile.php:257 +#: ../../godmode/users/configure_profile.php:232 msgid "Edit agents" msgstr "エージェント編集" -#: ../../godmode/users/configure_profile.php:264 +#: ../../godmode/users/configure_profile.php:239 msgid "Edit alerts" msgstr "アラート編集" -#: ../../godmode/users/configure_profile.php:275 ../../operation/menu.php:311 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 +#: ../../godmode/users/configure_profile.php:250 ../../operation/menu.php:366 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 #: ../../enterprise/meta/event/custom_events.php:38 msgid "View events" msgstr "イベント参照" -#: ../../godmode/users/configure_profile.php:279 +#: ../../godmode/users/configure_profile.php:254 msgid "Edit events" msgstr "イベント編集" -#: ../../godmode/users/configure_profile.php:290 +#: ../../godmode/users/configure_profile.php:265 msgid "View reports" msgstr "レポート表示" -#: ../../godmode/users/configure_profile.php:294 +#: ../../godmode/users/configure_profile.php:269 msgid "Edit reports" msgstr "レポート編集" -#: ../../godmode/users/configure_profile.php:298 +#: ../../godmode/users/configure_profile.php:273 msgid "Manage reports" msgstr "レポート管理" -#: ../../godmode/users/configure_profile.php:305 +#: ../../godmode/users/configure_profile.php:280 msgid "View network maps" msgstr "ネットワークマップ参照" -#: ../../godmode/users/configure_profile.php:309 +#: ../../godmode/users/configure_profile.php:284 msgid "Edit network maps" msgstr "ネットワークマップ編集" -#: ../../godmode/users/configure_profile.php:313 +#: ../../godmode/users/configure_profile.php:288 msgid "Manage network maps" msgstr "ネットワークマップ管理" -#: ../../godmode/users/configure_profile.php:320 -#: ../../include/functions_menu.php:497 +#: ../../godmode/users/configure_profile.php:295 +#: ../../include/functions_menu.php:508 msgid "View visual console" msgstr "ビジュアルコンソール表示" -#: ../../godmode/users/configure_profile.php:324 +#: ../../godmode/users/configure_profile.php:299 msgid "Edit visual console" msgstr "ビジュアルコンソール編集" -#: ../../godmode/users/configure_profile.php:328 -#: ../../include/functions_menu.php:542 +#: ../../godmode/users/configure_profile.php:303 msgid "Manage visual console" msgstr "ビジュアルコンソール管理" -#: ../../godmode/users/configure_profile.php:335 +#: ../../godmode/users/configure_profile.php:310 msgid "View incidents" msgstr "インシデント参照" -#: ../../godmode/users/configure_profile.php:339 +#: ../../godmode/users/configure_profile.php:314 msgid "Edit incidents" msgstr "インシデント編集" -#: ../../godmode/users/configure_profile.php:343 +#: ../../godmode/users/configure_profile.php:318 msgid "Manage incidents" msgstr "インシデント管理" -#: ../../godmode/users/configure_profile.php:350 +#: ../../godmode/users/configure_profile.php:330 msgid "Manage users" msgstr "ユーザ管理" -#: ../../godmode/users/configure_profile.php:357 +#: ../../godmode/users/configure_profile.php:337 msgid "Manage database" msgstr "データベース管理" -#: ../../godmode/users/configure_profile.php:364 -msgid "Pandora management" -msgstr "Pandora システム管理" +#: ../../godmode/users/configure_profile.php:344 +#, php-format +msgid "%s management" +msgstr "%s 管理" -#: ../../godmode/users/configure_user.php:92 -#: ../../operation/users/user_edit.php:62 +#: ../../godmode/users/configure_user.php:94 +#: ../../operation/users/user_edit_header.php:111 msgid "User detail editor" msgstr "ユーザ情報の編集" -#: ../../godmode/users/configure_user.php:150 -#: ../../godmode/users/user_list.php:489 +#: ../../godmode/users/configure_user.php:166 +#: ../../godmode/users/user_list.php:568 +#, php-format 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 on %s" +msgstr "現在の認証スキーマは、%s のユーザ作成に対応していません。" -#: ../../godmode/users/configure_user.php:202 +#: ../../godmode/users/configure_user.php:241 msgid "User ID cannot be empty" msgstr "ユーザ ID は空に設定できません。" -#: ../../godmode/users/configure_user.php:209 +#: ../../godmode/users/configure_user.php:247 +msgid "Invalid user ID: leading or trailing blank spaces not allowed" +msgstr "不正なユーザID: 先頭または末尾にスペースを含めることはできません" + +#: ../../godmode/users/configure_user.php:253 msgid "Passwords cannot be empty" msgstr "パスワードは空に設定できません。" -#: ../../godmode/users/configure_user.php:216 +#: ../../godmode/users/configure_user.php:259 msgid "Passwords didn't match" msgstr "パスワードが一致しません。" -#: ../../godmode/users/configure_user.php:264 +#: ../../godmode/users/configure_user.php:271 +#: ../../enterprise/include/functions_login.php:288 +msgid "Password must contain numbers" +msgstr "パスワードには数字を含めなければいけません" + +#: ../../godmode/users/configure_user.php:284 +#: ../../enterprise/include/functions_login.php:301 +msgid "Password must contain symbols" +msgstr "パスワードには記号を含めなければいけません" + +#: ../../godmode/users/configure_user.php:347 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." msgstr "パフォーマンスに影響するため、管理者ユーザへの厳重な ACL 設定はお勧めしません。" -#: ../../godmode/users/configure_user.php:342 -#: ../../godmode/users/configure_user.php:354 -#: ../../godmode/users/configure_user.php:404 -#: ../../godmode/users/configure_user.php:410 -#: ../../godmode/users/configure_user.php:438 -#: ../../operation/users/user_edit.php:156 -#: ../../operation/users/user_edit.php:166 +#: ../../godmode/users/configure_user.php:449 +#: ../../godmode/users/configure_user.php:473 +#: ../../godmode/users/configure_user.php:536 +#: ../../godmode/users/configure_user.php:543 +#: ../../godmode/users/configure_user.php:574 +#: ../../operation/users/user_edit.php:190 +#: ../../operation/users/user_edit.php:233 msgid "User info successfully updated" msgstr "ユーザ情報を更新しました。" -#: ../../godmode/users/configure_user.php:343 -#: ../../godmode/users/configure_user.php:355 -#: ../../godmode/users/configure_user.php:405 -#: ../../godmode/users/configure_user.php:411 -#: ../../godmode/users/configure_user.php:439 +#: ../../godmode/users/configure_user.php:450 +#: ../../godmode/users/configure_user.php:474 +#: ../../godmode/users/configure_user.php:537 +#: ../../godmode/users/configure_user.php:544 +#: ../../godmode/users/configure_user.php:575 msgid "Error updating user info (no change?)" msgstr "ユーザ情報の更新に失敗しました。(変更なし?)" -#: ../../godmode/users/configure_user.php:361 +#: ../../godmode/users/configure_user.php:490 msgid "Passwords does not match" msgstr "パスワードが一致しません。" -#: ../../godmode/users/configure_user.php:429 +#: ../../godmode/users/configure_user.php:564 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "このユーザには厳重な ACL はお勧めしません。パフォーマンスに影響します。" -#: ../../godmode/users/configure_user.php:461 +#: ../../godmode/users/configure_user.php:604 msgid "Profile added successfully" msgstr "プロファイルを追加しました。" -#: ../../godmode/users/configure_user.php:462 +#: ../../godmode/users/configure_user.php:605 msgid "Profile cannot be added" msgstr "プロファイルの追加に失敗しました。" -#: ../../godmode/users/configure_user.php:488 +#: ../../godmode/users/configure_user.php:643 msgid "Update User" msgstr "ユーザ更新" -#: ../../godmode/users/configure_user.php:491 +#: ../../godmode/users/configure_user.php:645 msgid "Create User" msgstr "ユーザ作成" -#: ../../godmode/users/configure_user.php:504 -#: ../../godmode/users/user_list.php:263 -#: ../../include/functions_reporting_html.php:2939 -#: ../../operation/search_users.php:38 -#: ../../operation/snmpconsole/snmp_view.php:727 -#: ../../operation/users/user_edit.php:186 +#: ../../godmode/users/configure_user.php:660 +#: ../../godmode/users/user_list.php:331 +#: ../../include/functions_reporting_html.php:3952 +#: ../../operation/search_users.php:34 +#: ../../operation/snmpconsole/snmp_view.php:821 +#: ../../operation/users/user_edit.php:243 msgid "User ID" msgstr "ユーザ ID" -#: ../../godmode/users/configure_user.php:508 -#: ../../operation/users/user_edit.php:188 +#: ../../godmode/users/configure_user.php:674 +#: ../../operation/users/user_edit.php:257 msgid "Full (display) name" msgstr "表示名" -#: ../../godmode/users/configure_user.php:512 -#: ../../operation/users/user_edit.php:257 -#: ../../enterprise/extensions/translate_string.php:250 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:132 +#: ../../godmode/users/configure_user.php:688 +#: ../../operation/users/user_edit.php:307 +#: ../../enterprise/extensions/translate_string.php:302 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:171 msgid "Language" msgstr "言語" -#: ../../godmode/users/configure_user.php:520 -#: ../../operation/users/user_edit.php:223 +#: ../../godmode/users/configure_user.php:699 +#: ../../operation/users/user_edit.php:395 +msgid "Timezone" +msgstr "タイムゾーン" + +#: ../../godmode/users/configure_user.php:717 +#: ../../operation/users/user_edit.php:283 msgid "Password confirmation" msgstr "パスワード確認" -#: ../../godmode/users/configure_user.php:527 +#: ../../godmode/users/configure_user.php:735 msgid "Global Profile" msgstr "全体プロファイル" -#: ../../godmode/users/configure_user.php:531 -#: ../../godmode/users/user_list.php:411 ../../operation/search_users.php:64 +#: ../../godmode/users/configure_user.php:739 +#: ../../godmode/users/user_list.php:487 ../../operation/search_users.php:52 msgid "Administrator" msgstr "管理者" -#: ../../godmode/users/configure_user.php:532 +#: ../../godmode/users/configure_user.php:740 msgid "" "This user has permissions to manage all. An admin user should not requiere " "additional group permissions, except for using Enterprise ACL." @@ -19094,391 +21323,894 @@ msgstr "" "このユーザはすべてを管理する権限があります。Enterprise ACL " "の利用を除いて、管理者ユーザは追加のグループパーミッション設定をすべきではありません。" -#: ../../godmode/users/configure_user.php:536 -#: ../../operation/search_users.php:69 +#: ../../godmode/users/configure_user.php:745 +#: ../../operation/search_users.php:61 msgid "Standard User" msgstr "標準ユーザ" -#: ../../godmode/users/configure_user.php:537 +#: ../../godmode/users/configure_user.php:746 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" msgstr "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限られた権限を所有します。" -#: ../../godmode/users/configure_user.php:540 -#: ../../godmode/users/user_list.php:404 -#: ../../operation/users/user_edit.php:210 +#: ../../godmode/users/configure_user.php:749 +#: ../../godmode/users/user_list.php:477 +#: ../../operation/users/user_edit.php:276 msgid "E-mail" msgstr "メールアドレス" -#: ../../godmode/users/configure_user.php:544 -#: ../../operation/users/user_edit.php:212 +#: ../../godmode/users/configure_user.php:763 +#: ../../operation/users/user_edit.php:278 msgid "Phone number" msgstr "電話番号" -#: ../../godmode/users/configure_user.php:579 +#: ../../godmode/users/configure_user.php:815 +msgid "Search custom field view" +msgstr "カスタムフィールド表示検索" + +#: ../../godmode/users/configure_user.php:815 +msgid "Load by default the selected view in custom field view" +msgstr "デフォルトでは、選択した表示をカスタムフィールド表示に読み込みます" + +#: ../../godmode/users/configure_user.php:832 msgid "Use global conf" msgstr "グローバル設定を利用します。" -#: ../../godmode/users/configure_user.php:583 -#: ../../operation/users/user_edit.php:276 +#: ../../godmode/users/configure_user.php:837 +#: ../../operation/users/user_edit.php:336 msgid "Home screen" msgstr "ホーム画面" -#: ../../godmode/users/configure_user.php:584 -#: ../../operation/users/user_edit.php:276 +#: ../../godmode/users/configure_user.php:837 +#: ../../operation/users/user_edit.php:336 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" +"index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 to show " +"agent detail view" msgstr "" -"ユーザはホームページをカスタマイズできます。デフォルトでは、'エージェント詳細' が表示されます。例: 'その他' " -"を選択し、sec=estado&sec2=operation/agentes/estado_agente を入力すると、エージェント詳細が表示されます。" +"ユーザはホームページをカスタマイズできます。 デフォルトでは、'エージェントの詳細' が表示されます。 例: 'その他' " +"を選択し、index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 " +"と入力すると、エージェントの詳細を表示します。" -#: ../../godmode/users/configure_user.php:589 -#: ../../operation/agentes/group_view.php:70 ../../operation/menu.php:49 -#: ../../operation/users/user_edit.php:281 -#: ../../enterprise/meta/monitoring/group_view.php:46 -msgid "Group view" -msgstr "グループ" - -#: ../../godmode/users/configure_user.php:590 -#: ../../mobile/operation/home.php:38 ../../mobile/operation/tactical.php:84 -#: ../../operation/agentes/tactical.php:55 ../../operation/menu.php:46 -#: ../../operation/users/user_edit.php:282 -#: ../../enterprise/dashboard/widgets/tactical.php:27 -#: ../../enterprise/dashboard/widgets/tactical.php:29 -#: ../../enterprise/meta/general/main_header.php:93 -#: ../../enterprise/meta/monitoring/tactical.php:60 +#: ../../godmode/users/configure_user.php:843 +#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:99 +#: ../../operation/agentes/tactical.php:54 ../../operation/menu.php:43 +#: ../../operation/users/user_edit.php:342 +#: ../../enterprise/dashboard/widgets/tactical.php:28 +#: ../../enterprise/dashboard/widgets/tactical.php:203 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../enterprise/meta/monitoring/tactical.php:63 msgid "Tactical view" msgstr "モニタリング概要" -#: ../../godmode/users/configure_user.php:591 -#: ../../operation/agentes/alerts_status.php:165 ../../operation/menu.php:65 -#: ../../operation/users/user_edit.php:283 +#: ../../godmode/users/configure_user.php:844 +#: ../../operation/agentes/alerts_status.php:177 ../../operation/menu.php:61 +#: ../../operation/users/user_edit.php:343 msgid "Alert detail" msgstr "アラート詳細" -#: ../../godmode/users/configure_user.php:592 +#: ../../godmode/users/configure_user.php:845 msgid "External link" msgstr "外部リンク" -#: ../../godmode/users/configure_user.php:595 -#: ../../mobile/include/functions_web.php:21 -#: ../../operation/users/user_edit.php:286 -#: ../../enterprise/extensions/vmware/vmware_view.php:1212 -#: ../../enterprise/extensions/vmware/vmware_view.php:1236 -#: ../../enterprise/mobile/operation/dashboard.php:221 -#: ../../enterprise/operation/menu.php:100 +#: ../../godmode/users/configure_user.php:849 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../mobile/include/functions_web.php:20 +#: ../../operation/users/user_edit.php:347 +#: ../../enterprise/extensions/vmware/vmware_view.php:1284 +#: ../../enterprise/extensions/vmware/vmware_view.php:1304 +#: ../../enterprise/mobile/operation/dashboard.php:247 +#: ../../enterprise/operation/menu.php:143 msgid "Dashboard" msgstr "ダッシュボード" -#: ../../godmode/users/configure_user.php:639 +#: ../../godmode/users/configure_user.php:895 msgid "Metaconsole access" msgstr "メタコンソールアクセス" -#: ../../godmode/users/configure_user.php:647 +#: ../../godmode/users/configure_user.php:913 msgid "Not Login" msgstr "ログイン無し" -#: ../../godmode/users/configure_user.php:648 +#: ../../godmode/users/configure_user.php:914 msgid "The user with not login set only can access to API." msgstr "ログイン無しを設定したユーザは、API にのみアクセスできます。" -#: ../../godmode/users/configure_user.php:651 +#: ../../godmode/users/configure_user.php:917 msgid "Session Time" msgstr "セッション時間" -#: ../../godmode/users/configure_user.php:661 +#: ../../godmode/users/configure_user.php:932 msgid "Default event filter" msgstr "デフォルトイベントフィルタ" -#: ../../godmode/users/configure_user.php:668 +#: ../../godmode/users/configure_user.php:935 +#: ../../include/functions_config.php:447 +msgid "Disabled newsletter" +msgstr "ニュースレターの無効化" + +#: ../../godmode/users/configure_user.php:950 +#: ../../operation/users/user_edit.php:678 +msgid "eHorus user acces enabled" +msgstr "eHorus ユーザアクセスの有効化" + +#: ../../godmode/users/configure_user.php:952 +#: ../../include/functions_config.php:1457 +msgid "eHorus user" +msgstr "eHorus ユーザ" + +#: ../../godmode/users/configure_user.php:953 +#: ../../include/functions_config.php:1461 +msgid "eHorus password" +msgstr "eHorus パスワード" + +#: ../../godmode/users/configure_user.php:963 msgid "Enable agents managment" msgstr "エージェント管理を有効にする" -#: ../../godmode/users/configure_user.php:675 +#: ../../godmode/users/configure_user.php:970 msgid "Assigned node" msgstr "割り当てノード" -#: ../../godmode/users/configure_user.php:675 +#: ../../godmode/users/configure_user.php:970 msgid "Server where the agents created of this user will be placed" msgstr "このユーザでエージェントが作成されたサーバです。" -#: ../../godmode/users/configure_user.php:687 +#: ../../godmode/users/configure_user.php:983 msgid "Enable node access" msgstr "ノードアクセスを有効にする" -#: ../../godmode/users/configure_user.php:687 +#: ../../godmode/users/configure_user.php:983 msgid "With this option enabled, the user will can access to nodes console" msgstr "このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" -#: ../../godmode/users/configure_user.php:718 -#: ../../godmode/users/configure_user.php:727 -#: ../../operation/users/user_edit.php:490 -#: ../../operation/users/user_edit.php:498 -msgid "Profiles/Groups assigned to this user" -msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ" - #: ../../godmode/users/profile_list.php:80 -msgid "" -"Unsucessful delete profile. Because the profile is used by some admin users." -msgstr "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われいます。" - -#: ../../godmode/users/profile_list.php:88 -#: ../../godmode/users/user_list.php:189 +#: ../../godmode/users/user_list.php:221 msgid "There was a problem deleting the profile" msgstr "プロファイルの削除に失敗しました。" -#: ../../godmode/users/profile_list.php:226 +#: ../../godmode/users/profile_list.php:207 msgid "There was a problem updating this profile" msgstr "プロファイルの更新に失敗しました。" -#: ../../godmode/users/profile_list.php:230 +#: ../../godmode/users/profile_list.php:210 msgid "Profile name cannot be empty" msgstr "プロファイル名は空にできません" -#: ../../godmode/users/profile_list.php:282 -#: ../../godmode/users/profile_list.php:286 +#: ../../godmode/users/profile_list.php:256 +#: ../../godmode/users/profile_list.php:259 msgid "There was a problem creating this profile" msgstr "プロファイルの作成に失敗しました。" -#: ../../godmode/users/profile_list.php:304 -#: ../../enterprise/extensions/disabled/check_acls.php:44 -#: ../../enterprise/extensions/disabled/check_acls.php:124 +#: ../../godmode/users/profile_list.php:278 +#: ../../enterprise/extensions/disabled/check_acls.php:49 +#: ../../enterprise/extensions/disabled/check_acls.php:142 msgid "System incidents reading" msgstr "インシデント読み出し" -#: ../../godmode/users/profile_list.php:305 -#: ../../enterprise/extensions/disabled/check_acls.php:45 -#: ../../enterprise/extensions/disabled/check_acls.php:125 +#: ../../godmode/users/profile_list.php:279 +#: ../../enterprise/extensions/disabled/check_acls.php:50 +#: ../../enterprise/extensions/disabled/check_acls.php:143 msgid "System incidents writing" msgstr "インシデント書き込み" -#: ../../godmode/users/profile_list.php:306 -#: ../../enterprise/extensions/disabled/check_acls.php:46 -#: ../../enterprise/extensions/disabled/check_acls.php:126 +#: ../../godmode/users/profile_list.php:280 +#: ../../enterprise/extensions/disabled/check_acls.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:144 msgid "System incidents management" msgstr "インシデント管理" -#: ../../godmode/users/profile_list.php:307 -#: ../../enterprise/extensions/disabled/check_acls.php:47 -#: ../../enterprise/extensions/disabled/check_acls.php:127 +#: ../../godmode/users/profile_list.php:281 +#: ../../enterprise/extensions/disabled/check_acls.php:52 +#: ../../enterprise/extensions/disabled/check_acls.php:145 msgid "Agents reading" msgstr "エージェントからの情報取得" -#: ../../godmode/users/profile_list.php:308 -#: ../../include/functions_menu.php:490 -#: ../../enterprise/extensions/disabled/check_acls.php:48 -#: ../../enterprise/extensions/disabled/check_acls.php:128 +#: ../../godmode/users/profile_list.php:282 +#: ../../include/functions_menu.php:501 +#: ../../enterprise/extensions/disabled/check_acls.php:53 +#: ../../enterprise/extensions/disabled/check_acls.php:146 msgid "Agents management" msgstr "エージェント管理" -#: ../../godmode/users/profile_list.php:309 -#: ../../enterprise/extensions/disabled/check_acls.php:49 -#: ../../enterprise/extensions/disabled/check_acls.php:129 +#: ../../godmode/users/profile_list.php:283 +#: ../../enterprise/extensions/disabled/check_acls.php:54 +#: ../../enterprise/extensions/disabled/check_acls.php:147 msgid "Agents disable" msgstr "エージェント無効化" -#: ../../godmode/users/profile_list.php:310 -#: ../../enterprise/extensions/disabled/check_acls.php:50 -#: ../../enterprise/extensions/disabled/check_acls.php:130 +#: ../../godmode/users/profile_list.php:284 +#: ../../enterprise/extensions/disabled/check_acls.php:55 +#: ../../enterprise/extensions/disabled/check_acls.php:148 msgid "Alerts editing" msgstr "アラート編集" -#: ../../godmode/users/profile_list.php:311 -#: ../../enterprise/extensions/disabled/check_acls.php:53 -#: ../../enterprise/extensions/disabled/check_acls.php:133 +#: ../../godmode/users/profile_list.php:285 +#: ../../enterprise/extensions/disabled/check_acls.php:58 +#: ../../enterprise/extensions/disabled/check_acls.php:151 msgid "Alerts management" msgstr "アラート管理" -#: ../../godmode/users/profile_list.php:313 -#: ../../enterprise/extensions/disabled/check_acls.php:52 -#: ../../enterprise/extensions/disabled/check_acls.php:132 +#: ../../godmode/users/profile_list.php:287 +#: ../../enterprise/extensions/disabled/check_acls.php:57 +#: ../../enterprise/extensions/disabled/check_acls.php:150 msgid "Database management" msgstr "データベース管理" -#: ../../godmode/users/profile_list.php:314 -#: ../../enterprise/extensions/disabled/check_acls.php:57 -#: ../../enterprise/extensions/disabled/check_acls.php:137 +#: ../../godmode/users/profile_list.php:288 +#: ../../enterprise/extensions/disabled/check_acls.php:62 +#: ../../enterprise/extensions/disabled/check_acls.php:155 msgid "Events reading" msgstr "イベント参照" -#: ../../godmode/users/profile_list.php:315 -#: ../../enterprise/extensions/disabled/check_acls.php:58 -#: ../../enterprise/extensions/disabled/check_acls.php:138 +#: ../../godmode/users/profile_list.php:289 +#: ../../enterprise/extensions/disabled/check_acls.php:63 +#: ../../enterprise/extensions/disabled/check_acls.php:156 msgid "Events writing" msgstr "イベント編集" -#: ../../godmode/users/profile_list.php:316 -#: ../../enterprise/extensions/disabled/check_acls.php:59 -#: ../../enterprise/extensions/disabled/check_acls.php:139 +#: ../../godmode/users/profile_list.php:290 +#: ../../enterprise/extensions/disabled/check_acls.php:64 +#: ../../enterprise/extensions/disabled/check_acls.php:157 msgid "Events management" msgstr "イベント管理" -#: ../../godmode/users/profile_list.php:317 -#: ../../enterprise/extensions/disabled/check_acls.php:54 -#: ../../enterprise/extensions/disabled/check_acls.php:134 +#: ../../godmode/users/profile_list.php:291 +#: ../../enterprise/extensions/disabled/check_acls.php:59 +#: ../../enterprise/extensions/disabled/check_acls.php:152 msgid "Reports reading" msgstr "レポート参照" -#: ../../godmode/users/profile_list.php:318 -#: ../../enterprise/extensions/disabled/check_acls.php:55 -#: ../../enterprise/extensions/disabled/check_acls.php:135 +#: ../../godmode/users/profile_list.php:292 +#: ../../enterprise/extensions/disabled/check_acls.php:60 +#: ../../enterprise/extensions/disabled/check_acls.php:153 msgid "Reports writing" msgstr "レポート編集" -#: ../../godmode/users/profile_list.php:319 -#: ../../enterprise/extensions/disabled/check_acls.php:56 -#: ../../enterprise/extensions/disabled/check_acls.php:136 +#: ../../godmode/users/profile_list.php:293 +#: ../../enterprise/extensions/disabled/check_acls.php:61 +#: ../../enterprise/extensions/disabled/check_acls.php:154 msgid "Reports management" msgstr "レポート管理" -#: ../../godmode/users/profile_list.php:320 +#: ../../godmode/users/profile_list.php:294 msgid "Network maps reading" msgstr "ネットワークマップ参照" -#: ../../godmode/users/profile_list.php:321 +#: ../../godmode/users/profile_list.php:295 msgid "Network maps writing" msgstr "ネットワークマップ編集" -#: ../../godmode/users/profile_list.php:322 +#: ../../godmode/users/profile_list.php:296 msgid "Network maps management" msgstr "ネットワークマップ管理" -#: ../../godmode/users/profile_list.php:323 +#: ../../godmode/users/profile_list.php:297 msgid "Visual console reading" msgstr "ビジュアルコンソール参照" -#: ../../godmode/users/profile_list.php:324 +#: ../../godmode/users/profile_list.php:298 msgid "Visual console writing" msgstr "ビジュアルコンソール編集" -#: ../../godmode/users/profile_list.php:325 +#: ../../godmode/users/profile_list.php:299 msgid "Visual console management" msgstr "ビジュアルコンソール管理" -#: ../../godmode/users/profile_list.php:326 -#: ../../enterprise/extensions/disabled/check_acls.php:60 -#: ../../enterprise/extensions/disabled/check_acls.php:140 +#: ../../godmode/users/profile_list.php:300 +#: ../../enterprise/extensions/disabled/check_acls.php:65 +#: ../../enterprise/extensions/disabled/check_acls.php:158 msgid "Systems management" msgstr "システム管理" -#: ../../godmode/users/profile_list.php:398 +#: ../../godmode/users/profile_list.php:375 msgid "There are no defined profiles" msgstr "定義済のプロファイルがありません" -#: ../../godmode/users/user_list.php:121 -msgid "Users defined in Pandora" -msgstr "Pandora 内ユーザ" +#: ../../godmode/users/user_list.php:145 +#, php-format +msgid "Users defined on %s" +msgstr "%s に定義済のユーザ" -#: ../../godmode/users/user_list.php:143 +#: ../../godmode/users/user_list.php:167 #, php-format msgid "Deleted user %s" msgstr "ユーザ %s を削除しました" -#: ../../godmode/users/user_list.php:148 ../../godmode/users/user_list.php:181 +#: ../../godmode/users/user_list.php:174 ../../godmode/users/user_list.php:212 msgid "There was a problem deleting the user" msgstr "ユーザの削除に失敗しました。" -#: ../../godmode/users/user_list.php:163 +#: ../../godmode/users/user_list.php:189 #, php-format msgid "Deleted user %s from metaconsole" msgstr "メタコンソールから、ユーザ %s を削除しました" -#: ../../godmode/users/user_list.php:172 +#: ../../godmode/users/user_list.php:200 #, php-format msgid "Deleted user %s from %s" msgstr "ユーザ %s を %s から削除しました" -#: ../../godmode/users/user_list.php:175 +#: ../../godmode/users/user_list.php:206 #, php-format msgid "Successfully deleted from %s" msgstr "%s から削除しました" -#: ../../godmode/users/user_list.php:176 +#: ../../godmode/users/user_list.php:207 #, php-format msgid "There was a problem deleting the user from %s" msgstr "%s からのユーザ削除で問題が発生しました" -#: ../../godmode/users/user_list.php:204 +#: ../../godmode/users/user_list.php:237 msgid "There was a problem disabling user" msgstr "ユーザの無効化で問題が発生しました" -#: ../../godmode/users/user_list.php:209 +#: ../../godmode/users/user_list.php:243 msgid "There was a problem enabling user" msgstr "ユーザの有効化で問題が発生しました" -#: ../../godmode/users/user_list.php:229 ../../godmode/users/user_list.php:231 +#: ../../godmode/users/user_list.php:272 ../../godmode/users/user_list.php:276 msgid "Search by username, fullname or email" msgstr "ユーザ名、フルネーム、メールアドレスでの検索" -#: ../../godmode/users/user_list.php:247 +#: ../../godmode/users/user_list.php:302 msgid "Users control filter" msgstr "ユーザ制御フィルタ" -#: ../../godmode/users/user_list.php:272 ../../godmode/users/user_list.php:410 -#: ../../operation/search_users.php:63 -#: ../../enterprise/extensions/disabled/check_acls.php:61 -#: ../../enterprise/extensions/disabled/check_acls.php:141 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:250 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:391 +#: ../../godmode/users/user_list.php:335 ../../godmode/users/user_list.php:486 +#: ../../operation/search_users.php:51 +#: ../../enterprise/extensions/disabled/check_acls.php:66 +#: ../../enterprise/extensions/disabled/check_acls.php:159 +#: ../../enterprise/godmode/servers/HA_cluster.php:137 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:273 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:626 msgid "Admin" msgstr "管理者" -#: ../../godmode/users/user_list.php:273 +#: ../../godmode/users/user_list.php:336 msgid "Profile / Group" msgstr "プロファイル / グループ" -#: ../../godmode/users/user_list.php:454 ../../operation/search_users.php:82 +#: ../../godmode/users/user_list.php:531 ../../operation/search_users.php:75 msgid "The user doesn't have any assigned profile/group" msgstr "このユーザには、プロファイル/グループの組み合わせが何も割り当てられていません。" -#: ../../godmode/users/user_list.php:467 +#: ../../godmode/users/user_list.php:545 msgid "Deleting User" msgstr "ユーザの削除" -#: ../../godmode/users/user_list.php:469 +#: ../../godmode/users/user_list.php:547 msgid "Delete from all consoles" msgstr "全コンソールからの削除" -#: ../../godmode/users/user_list.php:469 +#: ../../godmode/users/user_list.php:547 #, php-format msgid "Deleting User %s from all consoles" msgstr "ユーザ %s を全コンソールから削除しました" -#: ../../godmode/users/user_list.php:485 +#: ../../godmode/users/user_list.php:565 msgid "Create user" msgstr "ユーザの作成" -#: ../../include/ajax/double_auth.ajax.php:146 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:161 +#: ../../godmode/wizards/HostDevices.class.php:553 +#: ../../godmode/wizards/HostDevices.class.php:643 +#: ../../godmode/wizards/Wizard.main.php:392 +#: ../../include/class/CustomNetScan.class.php:313 +#: ../../include/class/CustomNetScan.class.php:421 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:445 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:231 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:281 +#: ../../enterprise/include/class/Aws.cloud.php:1011 +#: ../../enterprise/include/class/Azure.cloud.php:661 +#: ../../enterprise/include/class/MySQL.app.php:370 +#: ../../enterprise/include/class/Omnishell.class.php:630 +#: ../../enterprise/include/class/Omnishell.class.php:930 +#: ../../enterprise/include/class/Omnishell.class.php:1296 +#: ../../enterprise/include/class/Oracle.app.php:356 +#: ../../enterprise/include/class/SAP.app.php:380 +#: ../../enterprise/include/class/VMware.app.php:410 +msgid "Go back" +msgstr "戻る" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:223 +msgid "Task successfully deleted" +msgstr "タスクを削除しました" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:293 +msgid "Console Task successfully deleted" +msgstr "コンソールタスクを削除しました" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:325 +#: ../../operation/servers/recon_view.php:33 +msgid "Discovery Server is disabled" +msgstr "自動検出サーバが無効です" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:387 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:460 +#: ../../include/ajax/module.php:910 ../../include/functions_ui.php:1138 +#: ../../operation/agentes/group_view.php:192 +#: ../../operation/agentes/group_view.php:242 +#: ../../operation/servers/recon_view.php:91 +#: ../../operation/servers/recon_view.php:123 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1232 +#: ../../enterprise/godmode/agentes/inventory_manager.php:254 +#: ../../enterprise/operation/services/services.list.php:538 +msgid "Force" +msgstr "強制する" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:391 +#: ../../godmode/wizards/HostDevices.class.php:733 +#: ../../include/class/CustomNetScan.class.php:445 +#: ../../operation/servers/recon_view.php:94 +#: ../../enterprise/include/class/Aws.cloud.php:1086 +#: ../../enterprise/include/class/Azure.cloud.php:734 +#: ../../enterprise/include/class/MySQL.app.php:441 +#: ../../enterprise/include/class/Oracle.app.php:439 +#: ../../enterprise/include/class/SAP.app.php:459 +#: ../../enterprise/include/class/VMware.app.php:518 +msgid "Task name" +msgstr "タスク名" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:394 +#: ../../include/functions_events.php:207 +#: ../../include/functions_events.php.orig:205 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:195 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:270 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:50 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:207 +#: ../../enterprise/meta/include/functions_events_meta.php:130 +msgid "Server name" +msgstr "サーバ名" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:400 +#: ../../godmode/wizards/HostDevices.class.php:763 +#: ../../include/functions_ui.php:853 ../../operation/menu.php:70 +#: ../../operation/servers/recon_view.php:100 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:160 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:180 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1676 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:146 +#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +#: ../../enterprise/extensions/ipam/ipam_list.php:134 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:41 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:65 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:65 +msgid "Network" +msgstr "ネットワーク" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:406 +msgid "Task type" +msgstr "タスクタイプ" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:409 +#: ../../operation/servers/recon_view.php:109 +#: ../../operation/servers/recon_view.php:158 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1254 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1259 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1264 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:673 +#: ../../enterprise/godmode/policies/policy_queue.php:461 +#: ../../enterprise/include/class/Omnishell.class.php:401 +#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +msgid "Progress" +msgstr "進捗状況" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:412 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:418 +#: ../../operation/incidents/incident_detail.php:289 +#: ../../operation/servers/recon_view.php:112 +#: ../../enterprise/operation/agentes/transactional_map.php:186 +msgid "Updated at" +msgstr "更新日時" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:465 +msgid "This task has not been completely defined, please edit it" +msgstr "このタスクは定義が完了していません。編集してください。" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:490 +#: ../../godmode/wizards/HostDevices.class.php:703 +#: ../../include/class/CustomNetScan.class.php:527 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1206 +#: ../../enterprise/extensions/ipam/ipam_list.php:164 +#: ../../enterprise/godmode/services/services.service.php:397 +#: ../../enterprise/include/class/Aws.cloud.php:1212 +#: ../../enterprise/include/class/MySQL.app.php:565 +#: ../../enterprise/include/class/Oracle.app.php:546 +#: ../../enterprise/include/class/SAP.app.php:502 +#: ../../enterprise/include/class/VMware.app.php:569 +#: ../../enterprise/operation/services/services.list.php:227 +#: ../../enterprise/operation/services/services.table_services.php:206 +msgid "Manual" +msgstr "マニュアル" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:500 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:40 +#: ../../operation/servers/recon_view.php:140 +msgid "Done" +msgstr "完了" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:502 +#: ../../operation/servers/recon_view.php:142 +#: ../../enterprise/include/class/DatabaseHA.class.php:210 +#: ../../enterprise/include/class/Omnishell.class.php:363 +#: ../../enterprise/include/class/Omnishell.class.php:1037 +msgid "Pending" +msgstr "保留中" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:511 +msgid "Discovery Cloud Azure Compute" +msgstr "Cloud Azure Compute の自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:513 +msgid "Cloud.Azure.Compute" +msgstr "Cloud.Azure.Compute" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:521 +msgid "Discovery Cloud AWS EC2" +msgstr "Cloud AWS EC2 の自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:523 +msgid "Cloud.AWS.EC2" +msgstr "Cloud.AWS.EC2" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:531 +msgid "Discovery Cloud RDS" +msgstr "Cloud RDS の自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:533 +msgid "Discovery.Cloud.Aws.RDS" +msgstr "Discovery.Cloud.Aws.RDS" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:541 +msgid "Discovery Applications MySQL" +msgstr "MySQL アプリケーションの自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:543 +msgid "Discovery.App.MySQL" +msgstr "Discovery.App.MySQL" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:551 +msgid "Discovery Applications Oracle" +msgstr "Oracle アプリケーションの自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:553 +msgid "Discovery.App.Oracle" +msgstr "Discovery.App.Oracle" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:562 +#: ../../godmode/wizards/HostDevices.class.php:164 +#: ../../enterprise/godmode/menu.php:142 +#: ../../enterprise/include/class/DeploymentCenter.class.php:572 +msgid "Agent deployment" +msgstr "エージェントの展開" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:564 +msgid "Discovery.Agent.Deployment" +msgstr "Discovery.Agent.Deployment" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:574 +msgid "Discovery NetScan" +msgstr "NetScan 自動検出" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:582 +msgid "Discovery.NetScan" +msgstr "Discovery.NetScan" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:607 +msgid "Not executed yet" +msgstr "未実行" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:692 +msgid "has no discovery tasks assigned" +msgstr "" + +#: ../../godmode/wizards/DiscoveryTaskList.class.php:699 +msgid "Server Tasks" +msgstr "サーバタスク" + +#: ../../godmode/wizards/HostDevices.class.php:151 +msgid "Net Scan" +msgstr "ネットスキャン" + +#: ../../godmode/wizards/HostDevices.class.php:158 +#: ../../enterprise/godmode/menu.php:138 +#: ../../enterprise/include/class/CSVImportAgents.class.php:114 +msgid "Import CSV" +msgstr "CSVのインポート" + +#: ../../godmode/wizards/HostDevices.class.php:171 +msgid "Custom NetScan" +msgstr "カスタムネットスキャン" + +#: ../../godmode/wizards/HostDevices.class.php:179 +msgid "Manage NetScan scripts" +msgstr "ネットスキャンスクリプト管理" + +#: ../../godmode/wizards/HostDevices.class.php:195 +#: ../../include/class/CustomNetScan.class.php:351 +#: ../../include/class/ManageNetScanScripts.class.php:104 +#: ../../enterprise/include/class/CSVImportAgents.class.php:98 +#: ../../enterprise/include/class/DeploymentCenter.class.php:553 +msgid "Host & Devices" +msgstr "ホスト & デバイス" + +#: ../../godmode/wizards/HostDevices.class.php:328 +msgid "" +"This network scan task has been already defined. Please edit it or create a " +"new one." +msgstr "このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに作成してください。" + +#: ../../godmode/wizards/HostDevices.class.php:352 +#: ../../include/class/CustomNetScan.class.php:158 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:139 +#: ../../enterprise/include/class/Aws.cloud.php:792 +#: ../../enterprise/include/class/Azure.cloud.php:409 +#: ../../enterprise/include/class/MySQL.app.php:195 +#: ../../enterprise/include/class/Oracle.app.php:187 +#: ../../enterprise/include/class/SAP.app.php:176 +#: ../../enterprise/include/class/VMware.app.php:231 +msgid "You have no access to edit this task." +msgstr "このタスクの編集権限がありません。" + +#: ../../godmode/wizards/HostDevices.class.php:362 +#: ../../include/class/CustomNetScan.class.php:168 +#: ../../enterprise/include/class/Aws.cloud.php:802 +#: ../../enterprise/include/class/MySQL.app.php:205 +#: ../../enterprise/include/class/Oracle.app.php:197 +#: ../../enterprise/include/class/SAP.app.php:186 +#: ../../enterprise/include/class/VMware.app.php:241 +msgid "You must provide a task name." +msgstr "タスク名を設定する必要があります。" + +#: ../../godmode/wizards/HostDevices.class.php:367 +#: ../../include/class/CustomNetScan.class.php:173 +#: ../../enterprise/include/class/Aws.cloud.php:807 +#: ../../enterprise/include/class/MySQL.app.php:210 +#: ../../enterprise/include/class/Oracle.app.php:202 +#: ../../enterprise/include/class/SAP.app.php:191 +#: ../../enterprise/include/class/VMware.app.php:246 +msgid "You must select a Discovery Server." +msgstr "自動検出サーバを選択する必要があります。" + +#: ../../godmode/wizards/HostDevices.class.php:373 +msgid "You must provide a valid network." +msgstr "正しいネットワークを指定する必要があります。" + +#: ../../godmode/wizards/HostDevices.class.php:378 +#: ../../include/class/CustomNetScan.class.php:178 +#: ../../enterprise/include/class/Aws.cloud.php:812 +#: ../../enterprise/include/class/MySQL.app.php:225 +#: ../../enterprise/include/class/Oracle.app.php:212 +#: ../../enterprise/include/class/SAP.app.php:201 +#: ../../enterprise/include/class/VMware.app.php:256 +msgid "You must select a valid group." +msgstr "正しいグループを選択する必要があります。" + +#: ../../godmode/wizards/HostDevices.class.php:422 +#: ../../godmode/wizards/HostDevices.class.php:500 +#: ../../include/class/CustomNetScan.class.php:221 +msgid "Failed to find network scan task." +msgstr "ネットワークスキャンタスクを見つけられませんでした。" + +#: ../../godmode/wizards/HostDevices.class.php:604 +#: ../../enterprise/include/class/Aws.cloud.php:398 +msgid "NetScan" +msgstr "ネットスキャン" + +#: ../../godmode/wizards/HostDevices.class.php:624 +#: ../../include/class/CustomNetScan.class.php:402 +msgid "Internal error, please re-run this wizard." +msgstr "内部エラー。このウィザードを再実行してください。" + +#: ../../godmode/wizards/HostDevices.class.php:695 +#: ../../include/class/CustomNetScan.class.php:519 +#: ../../enterprise/include/class/Aws.cloud.php:1204 +#: ../../enterprise/include/class/MySQL.app.php:557 +#: ../../enterprise/include/class/Oracle.app.php:538 +#: ../../enterprise/include/class/SAP.app.php:494 +#: ../../enterprise/include/class/VMware.app.php:561 +msgid "Manual interval means that it will be executed only On-demand" +msgstr "手動は、オンデマンドでのみの実行を意味します。" + +#: ../../godmode/wizards/HostDevices.class.php:702 +#: ../../include/class/CustomNetScan.class.php:526 +#: ../../include/functions_reporting_html.php:1914 +#: ../../enterprise/include/class/Aws.cloud.php:1211 +#: ../../enterprise/include/class/MySQL.app.php:564 +#: ../../enterprise/include/class/Oracle.app.php:545 +#: ../../enterprise/include/class/SAP.app.php:501 +#: ../../enterprise/include/class/VMware.app.php:568 +#: ../../enterprise/include/class/VMware.app.php:776 +msgid "Defined" +msgstr "定義済み" + +#: ../../godmode/wizards/HostDevices.class.php:719 +#: ../../include/class/CustomNetScan.class.php:543 +msgid "The minimum recomended interval for Recon Task is 5 minutes" +msgstr "自動検出タスクの最小間隔は、5分をお勧めします。" + +#: ../../godmode/wizards/HostDevices.class.php:744 +#: ../../include/class/CustomNetScan.class.php:479 +#: ../../enterprise/include/class/Aws.cloud.php:1098 +#: ../../enterprise/include/class/MySQL.app.php:453 +#: ../../enterprise/include/class/Oracle.app.php:451 +#: ../../enterprise/include/class/SAP.app.php:472 +#: ../../enterprise/include/class/VMware.app.php:529 +msgid "" +"You must select a Discovery Server to run the Task, otherwise the Recon Task " +"will never run" +msgstr "タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検出タスクは実行されません。" + +#: ../../godmode/wizards/HostDevices.class.php:764 +msgid "" +"You can specify several networks, separated by commas, for example: " +"192.168.50.0/24,192.168.60.0/24" +msgstr "カンマ区切りで複数のネットワークを指定できます。例: 192.168.50.0/24,192.168.60.0/24" + +#: ../../godmode/wizards/HostDevices.class.php:885 +msgid "Module template" +msgstr "モジュールテンプレート" + +#: ../../godmode/wizards/HostDevices.class.php:902 +msgid "Apply autoconfiguration rules" +msgstr "自動設定ルールの適用" + +#: ../../godmode/wizards/HostDevices.class.php:904 +msgid "" +"System is able to auto configure detected host & devices by applying your " +"defined configuration rules." +msgstr "システムは、定義された設定ルールを適用することにより、検出されたホストとデバイスを自動設定できます。" + +#: ../../godmode/wizards/HostDevices.class.php:954 +#: ../../include/class/CustomNetScan.class.php:756 +#: ../../enterprise/include/class/Aws.cloud.php:1494 +#: ../../enterprise/include/class/Azure.cloud.php:914 +#: ../../enterprise/include/class/MySQL.app.php:942 +#: ../../enterprise/include/class/Oracle.app.php:971 +#: ../../enterprise/include/class/SAP.app.php:844 +#: ../../enterprise/include/class/VMware.app.php:897 +msgid "Task configured." +msgstr "タスクを設定しました。" + +#: ../../godmode/wizards/HostDevices.class.php:958 +#: ../../include/class/CustomNetScan.class.php:760 +#: ../../enterprise/include/class/Azure.cloud.php:918 +#: ../../enterprise/include/class/MySQL.app.php:946 +#: ../../enterprise/include/class/Oracle.app.php:975 +#: ../../enterprise/include/class/SAP.app.php:848 +#: ../../enterprise/include/class/VMware.app.php:901 +msgid "Wizard failed. Cannot configure task." +msgstr "ウィザードに失敗しました。タスクを設定できません。" + +#: ../../include/ajax/custom_fields.php:403 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2025 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2213 +msgid "Treshold" +msgstr "閾値" + +#: ../../include/ajax/custom_fields.php:404 +msgid "Current interval" +msgstr "現在の間隔" + +#: ../../include/ajax/custom_fields.php:450 +#: ../../include/ajax/custom_fields.php:503 +msgid "Modules normal" +msgstr "正常状態のモジュール" + +#: ../../include/ajax/custom_fields.php:461 +msgid "Modules critical" +msgstr "障害状態のモジュール" + +#: ../../include/ajax/custom_fields.php:472 +msgid "Modules warning" +msgstr "警告状態のモジュール" + +#: ../../include/ajax/custom_fields.php:482 +msgid "Modules unknown" +msgstr "不明状態のモジュール" + +#: ../../include/ajax/custom_fields.php:493 +msgid "Modules no init" +msgstr "未初期化モジュール" + +#: ../../include/ajax/custom_fields.php:535 +msgid "New Filter" +msgstr "新規フィルタ" + +#: ../../include/ajax/custom_fields.php:542 +msgid "Existing Filter" +msgstr "既存フィルタ" + +#: ../../include/ajax/custom_fields.php:577 ../../include/ajax/events.php:387 +#: ../../include/ajax/events.php:403 ../../operation/events/events.php:975 +#: ../../operation/events/events_list.php:372 +#: ../../operation/events/events_list.php:512 +#: ../../operation/events/events_list.php:523 +#: ../../operation/events/events_list.php:1039 +#: ../../operation/netflow/nf_live_view.php:389 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:281 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:287 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:288 +msgid "Load filter" +msgstr "フィルタ読み込み" + +#: ../../include/ajax/custom_fields.php:690 +msgid "Delete filter" +msgstr "フィルタの削除" + +#: ../../include/ajax/custom_fields.php:740 +msgid "Filter name already exists in the bbdd" +msgstr "データベースにフィルタがすでに存在します" + +#: ../../include/ajax/custom_fields.php:752 +msgid "Please, select a custom field" +msgstr "カスタムフィールドを選択してください" + +#: ../../include/ajax/custom_fields.php:780 +msgid "Success create filter." +msgstr "フィルタを作成しました。" + +#: ../../include/ajax/custom_fields.php:787 +msgid "Error create filter." +msgstr "フィルタ作成エラー。" + +#: ../../include/ajax/custom_fields.php:812 +#: ../../include/ajax/custom_fields.php:885 +msgid "please, select a filter" +msgstr "フィルタを選択してください。" + +#: ../../include/ajax/custom_fields.php:828 +msgid "please, select a custom field" +msgstr "カスタムフィールドを選択してください。" + +#: ../../include/ajax/custom_fields.php:854 +msgid "Success update filter." +msgstr "フィルタを更新しました。" + +#: ../../include/ajax/custom_fields.php:861 +msgid "Error update filter." +msgstr "フィルタ更新エラー。" + +#: ../../include/ajax/custom_fields.php:904 +msgid "Success delete filter." +msgstr "フィルタを削除しました。" + +#: ../../include/ajax/custom_fields.php:911 +msgid "Error delete filter." +msgstr "フィルタ削除エラー。" + +#: ../../include/ajax/double_auth.ajax.php:140 msgid "" "This is the private code that you should use with your authenticator app" msgstr "これは、認証アプリケーションで利用するプライベートコードです" -#: ../../include/ajax/double_auth.ajax.php:147 -#: ../../include/ajax/double_auth.ajax.php:283 +#: ../../include/ajax/double_auth.ajax.php:141 +#: ../../include/ajax/double_auth.ajax.php:279 msgid "" "You could enter the code manually or use the QR code to add it automatically" msgstr "コードを手動で入力するか、QRコードを使って自動追加できます。" -#: ../../include/ajax/double_auth.ajax.php:151 -#: ../../include/ajax/double_auth.ajax.php:287 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:97 +#: ../../include/ajax/double_auth.ajax.php:145 +#: ../../include/ajax/double_auth.ajax.php:283 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 msgid "Code" msgstr "コード" -#: ../../include/ajax/double_auth.ajax.php:153 -#: ../../include/ajax/double_auth.ajax.php:289 +#: ../../include/ajax/double_auth.ajax.php:147 +#: ../../include/ajax/double_auth.ajax.php:285 msgid "QR" msgstr "QR" -#: ../../include/ajax/double_auth.ajax.php:189 +#: ../../include/ajax/double_auth.ajax.php:183 msgid "You are about to activate the double authentication" msgstr "二段階認証を有効化しようとしています" -#: ../../include/ajax/double_auth.ajax.php:190 +#: ../../include/ajax/double_auth.ajax.php:185 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 " @@ -19487,402 +22219,585 @@ msgstr "" "このオプションを有効化すると、あなたのアカウントはよりセキュアになります。\n" "\t\tログイン後、他のアプリケーションで生成したコードが必要になります。" -#: ../../include/ajax/double_auth.ajax.php:194 +#: ../../include/ajax/double_auth.ajax.php:190 msgid "" "You will need to install the app from the following link before continue" msgstr "先に進む前に、次のリンクからアプリケーションをインストールする必要があります。" -#: ../../include/ajax/double_auth.ajax.php:199 +#: ../../include/ajax/double_auth.ajax.php:195 msgid "Download the app" msgstr "アプリケーションをダウンロード" -#: ../../include/ajax/double_auth.ajax.php:203 -#: ../../include/ajax/double_auth.ajax.php:294 +#: ../../include/ajax/double_auth.ajax.php:199 +#: ../../include/ajax/double_auth.ajax.php:290 +#: ../../include/functions_update_manager.php:213 msgid "Continue" msgstr "続ける" -#: ../../include/ajax/double_auth.ajax.php:219 +#: ../../include/ajax/double_auth.ajax.php:215 msgid "Are you installed the app yet?" msgstr "アプリケーションをインストールしましたか。" -#: ../../include/ajax/double_auth.ajax.php:254 -#: ../../include/ajax/double_auth.ajax.php:351 -#: ../../include/ajax/double_auth.ajax.php:396 -#: ../../include/ajax/double_auth.ajax.php:511 -#: ../../operation/users/user_edit.php:711 -#: ../../operation/users/user_edit.php:776 +#: ../../include/ajax/double_auth.ajax.php:250 +#: ../../include/ajax/double_auth.ajax.php:347 +#: ../../include/ajax/double_auth.ajax.php:392 +#: ../../include/ajax/double_auth.ajax.php:507 +#: ../../operation/users/user_edit.php:984 +#: ../../operation/users/user_edit.php:1050 msgid "There was an error loading the data" msgstr "データのロードでエラーが発生しました" -#: ../../include/ajax/double_auth.ajax.php:277 +#: ../../include/ajax/double_auth.ajax.php:273 msgid "A private code has been generated" msgstr "プライベートコードを生成しました" -#: ../../include/ajax/double_auth.ajax.php:282 +#: ../../include/ajax/double_auth.ajax.php:278 msgid "" "Before continue, you should create a new entry into the authenticator app" msgstr "次に進む前に、認証アプリケーションに新たなエントリーを作成する必要があります。" -#: ../../include/ajax/double_auth.ajax.php:292 +#: ../../include/ajax/double_auth.ajax.php:288 msgid "Refresh code" msgstr "コードのリフレッシュ" -#: ../../include/ajax/double_auth.ajax.php:360 +#: ../../include/ajax/double_auth.ajax.php:356 msgid "Are you introduced the code in the authenticator app yet?" msgstr "認証アプリケーションにコードを入力しましたか。" -#: ../../include/ajax/double_auth.ajax.php:422 +#: ../../include/ajax/double_auth.ajax.php:418 msgid "Introduce a code generated by the app" msgstr "アプリケーションにより生成されたコードを入力してください" -#: ../../include/ajax/double_auth.ajax.php:423 +#: ../../include/ajax/double_auth.ajax.php:419 msgid "If the code is valid, the double authentication will be activated" msgstr "コードが正しければ、二段階認証が有効化されます。" -#: ../../include/ajax/double_auth.ajax.php:432 +#: ../../include/ajax/double_auth.ajax.php:428 msgid "Validate code" msgstr "コードを確認" -#: ../../include/ajax/double_auth.ajax.php:483 +#: ../../include/ajax/double_auth.ajax.php:479 msgid "The code is valid, you can exit now" msgstr "正しいコードです。終了します。" -#: ../../include/ajax/double_auth.ajax.php:491 -#: ../../mobile/include/user.class.php:171 ../../enterprise/meta/index.php:217 -#: ../../index.php:273 +#: ../../include/ajax/double_auth.ajax.php:487 +#: ../../mobile/include/user.class.php:189 ../../enterprise/meta/index.php:262 +#: ../../index.php:320 msgid "Invalid code" msgstr "不正なコード" -#: ../../include/ajax/double_auth.ajax.php:499 +#: ../../include/ajax/double_auth.ajax.php:495 msgid "The code is valid, but it was an error saving the data" msgstr "正しいコードですが、データの保存でエラーが発生しました。" -#: ../../include/ajax/events.php:203 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:269 +#: ../../include/ajax/events.php:93 +msgid "Failed to retrieve comments" +msgstr "コメントを取得できませんでした" + +#: ../../include/ajax/events.php:541 ../../operation/events/events_list.php:406 +msgid "New filter" +msgstr "新規フィルタ" + +#: ../../include/ajax/events.php:559 ../../operation/events/events_list.php:424 +msgid "Save in Group" +msgstr "保存グループ" + +#: ../../include/ajax/events.php:595 ../../operation/events/events_list.php:453 +msgid "Overwrite filter" +msgstr "フィルタの上書き" + +#: ../../include/ajax/events.php:622 ../../operation/events/events.php:983 +#: ../../operation/events/events_list.php:364 +#: ../../operation/events/events_list.php:481 +#: ../../operation/events/events_list.php:1036 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:267 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:273 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:274 +msgid "Save filter" +msgstr "フィルタの保存" + +#: ../../include/ajax/events.php:666 +#: ../../operation/events/events_list.php:1518 +msgid "Filter name cannot be left blank" +msgstr "フィルタ名は空にできません" + +#: ../../include/ajax/events.php:1002 +msgid "Error executing response" +msgstr "応答の実行エラー" + +#: ../../include/ajax/events.php:1030 ../../include/ajax/events.php:1063 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:329 #, php-format msgid "Executing command: %s" msgstr "コマンド実行中: %s" -#: ../../include/ajax/events.php:210 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:276 +#: ../../include/ajax/events.php:1047 ../../include/ajax/events.php:1070 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:336 msgid "Execute again" msgstr "再実行" -#: ../../include/ajax/events.php:345 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:210 +#: ../../include/ajax/events.php:1227 +msgid "Related" +msgstr "関連" + +#: ../../include/ajax/events.php:1230 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:66 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:429 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1191 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:272 msgid "Details" msgstr "詳細" -#: ../../include/ajax/events.php:346 +#: ../../include/ajax/events.php:1231 msgid "Agent fields" msgstr "エージェントフィールド" -#: ../../include/ajax/events.php:354 +#: ../../include/ajax/events.php:1253 msgid "Custom data" msgstr "カスタムデータ" -#: ../../include/ajax/events.php:422 +#: ../../include/ajax/events.php:1339 msgid "Error adding comment" msgstr "コメント追加エラー" -#: ../../include/ajax/events.php:423 +#: ../../include/ajax/events.php:1340 msgid "Comment added successfully" msgstr "コメントを追加しました" -#: ../../include/ajax/events.php:424 +#: ../../include/ajax/events.php:1341 msgid "Error changing event status" msgstr "イベント状態変更エラー" -#: ../../include/ajax/events.php:425 +#: ../../include/ajax/events.php:1342 msgid "Event status changed successfully" msgstr "イベントの状態を変更しました" -#: ../../include/ajax/events.php:426 +#: ../../include/ajax/events.php:1343 msgid "Error changing event owner" msgstr "イベント所有者変更エラー" -#: ../../include/ajax/events.php:427 +#: ../../include/ajax/events.php:1344 msgid "Event owner changed successfully" msgstr "イベントの所有者を変更しました" -#: ../../include/ajax/events.php:495 -#: ../../include/functions_reporting.php:7031 -#: ../../include/functions_events.php:928 -#: ../../include/functions_events.php:2368 -#: ../../include/functions_events.php:3756 -#: ../../include/functions_reporting_html.php:848 -#: ../../include/functions_reporting_html.php:1064 -#: ../../include/functions_reporting_html.php:1676 -#: ../../mobile/operation/events.php:247 -#: ../../operation/events/events.build_table.php:304 +#: ../../include/ajax/events.php:1471 ../../include/functions_events.php:2429 +#: ../../include/functions_events.php:4365 +#: ../../include/functions_events.php:6160 +#: ../../include/functions_events.php.orig:2335 +#: ../../include/functions_events.php.orig:4268 +#: ../../include/functions_events.php.orig:6064 +#: ../../include/functions_reporting_html.php:993 +#: ../../include/functions_reporting_html.php:1216 +#: ../../include/functions_reporting_html.php:1981 +#: ../../include/functions_reporting.php:8316 +#: ../../mobile/operation/events.php:267 +#: ../../operation/events/events.build_table.php:413 +#: ../../operation/events/events.php:1921 msgid "New event" msgstr "新規イベント" -#: ../../include/ajax/events.php:499 -#: ../../include/functions_reporting.php:7035 -#: ../../include/functions_events.php:932 -#: ../../include/functions_events.php:2373 -#: ../../include/functions_events.php:3760 -#: ../../include/functions_reporting_html.php:852 -#: ../../include/functions_reporting_html.php:1068 -#: ../../include/functions_reporting_html.php:1680 -#: ../../mobile/operation/events.php:251 -#: ../../operation/events/events.build_table.php:308 -#: ../../operation/events/events.php:715 ../../operation/events/events.php:744 -#: ../../operation/events/events.php:745 ../../operation/events/events.php:965 -#: ../../operation/events/events.php:970 ../../operation/events/events.php:971 +#: ../../include/ajax/events.php:1476 ../../include/functions_events.php:2434 +#: ../../include/functions_events.php:4371 +#: ../../include/functions_events.php:6165 +#: ../../include/functions_events.php.orig:2340 +#: ../../include/functions_events.php.orig:4274 +#: ../../include/functions_events.php.orig:6069 +#: ../../include/functions_reporting_html.php:998 +#: ../../include/functions_reporting_html.php:1221 +#: ../../include/functions_reporting_html.php:1986 +#: ../../include/functions_reporting.php:8321 +#: ../../mobile/operation/events.php:272 +#: ../../operation/events/events.build_table.php:418 +#: ../../operation/events/events.php:1925 msgid "Event validated" msgstr "承諾済" -#: ../../include/ajax/events.php:503 -#: ../../include/functions_reporting.php:7039 -#: ../../include/functions_events.php:936 -#: ../../include/functions_events.php:2378 -#: ../../include/functions_events.php:3764 -#: ../../include/functions_reporting_html.php:856 -#: ../../include/functions_reporting_html.php:1072 -#: ../../include/functions_reporting_html.php:1684 -#: ../../mobile/operation/events.php:255 -#: ../../operation/events/events.build_table.php:312 -#: ../../operation/events/events.php:777 ../../operation/events/events.php:815 -#: ../../operation/events/events.php:816 ../../operation/events/events.php:975 -#: ../../operation/events/events.php:989 ../../operation/events/events.php:990 +#: ../../include/ajax/events.php:1481 ../../include/functions_events.php:2439 +#: ../../include/functions_events.php:4377 +#: ../../include/functions_events.php:6170 +#: ../../include/functions_events.php.orig:2345 +#: ../../include/functions_events.php.orig:4280 +#: ../../include/functions_events.php.orig:6074 +#: ../../include/functions_reporting_html.php:1003 +#: ../../include/functions_reporting_html.php:1226 +#: ../../include/functions_reporting_html.php:1991 +#: ../../include/functions_reporting.php:8326 +#: ../../mobile/operation/events.php:277 +#: ../../operation/events/events.build_table.php:423 +#: ../../operation/events/events.php:1929 msgid "Event in process" msgstr "処理中イベント" -#: ../../include/ajax/events.php:562 +#: ../../include/ajax/events.php:1550 msgid "Show all Events 24h" msgstr "24h以内の全イベント表示" -#: ../../include/ajax/graph.ajax.php:145 +#: ../../include/ajax/events.php:1683 +msgid "These commands will apply to all selected events" +msgstr "これらのコマンドは、選択したすべてのイベントに適用されます。" + +#: ../../include/ajax/events.php:1784 +msgid "Alert fired in module " +msgstr "モジュールのアラートフィールド " + +#: ../../include/ajax/events.php:1798 ../../include/ajax/events.php:1812 +#: ../../include/ajax/events.php:1826 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 +msgid "Module " +msgstr "モジュール " + +#: ../../include/ajax/events.php:1799 +msgid " is going to critical" +msgstr " は障害状態になりました" + +#: ../../include/ajax/events.php:1813 +msgid " is going to warning" +msgstr " は警告状態になりました" + +#: ../../include/ajax/events.php:1827 +msgid " is going to unknown" +msgstr " は不明状態になりました" + +#: ../../include/ajax/graph.ajax.php:157 msgid "Time container lapse" msgstr "時間コンテナの経過" -#: ../../include/ajax/module.php:138 ../../include/functions.php:2615 +#: ../../include/ajax/module.php:164 ../../include/functions.php:3197 msgid "30 minutes" msgstr "30 分" -#: ../../include/ajax/module.php:140 -#: ../../enterprise/godmode/agentes/inventory_manager.php:178 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:192 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:184 +#: ../../include/ajax/module.php:166 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 msgid "6 hours" msgstr "6 時間" -#: ../../include/ajax/module.php:146 ../../include/functions_netflow.php:1063 +#: ../../include/ajax/module.php:172 msgid "3 months" msgstr "3ヵ月" -#: ../../include/ajax/module.php:147 ../../include/functions_netflow.php:1064 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:193 +#: ../../include/ajax/module.php:173 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:197 msgid "6 months" msgstr "6ヵ月" -#: ../../include/ajax/module.php:148 ../../include/functions.php:2066 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:194 +#: ../../include/ajax/module.php:174 ../../include/functions.php:2544 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:198 msgid "1 year" msgstr "1年" -#: ../../include/ajax/module.php:149 ../../include/functions_netflow.php:1066 +#: ../../include/ajax/module.php:175 msgid "2 years" msgstr "2年" -#: ../../include/ajax/module.php:150 +#: ../../include/ajax/module.php:176 msgid "3 years" msgstr "3 年" -#: ../../include/ajax/module.php:154 -#: ../../operation/agentes/datos_agente.php:185 +#: ../../include/ajax/module.php:188 +#: ../../operation/agentes/datos_agente.php:194 msgid "Choose a time from now" msgstr "現在からさかのぼって表示する期間を選択" -#: ../../include/ajax/module.php:166 -#: ../../operation/agentes/datos_agente.php:188 +#: ../../include/ajax/module.php:204 +#: ../../operation/agentes/datos_agente.php:197 msgid "Specify time range" msgstr "時間範囲指定" -#: ../../include/ajax/module.php:167 -#: ../../operation/agentes/datos_agente.php:189 -#: ../../operation/events/events_list.php:558 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:450 +#: ../../include/ajax/module.php:205 +#: ../../operation/agentes/datos_agente.php:198 +#: ../../operation/events/events_list.php:867 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:598 msgid "Timestamp from:" msgstr "開始日時:" -#: ../../include/ajax/module.php:175 -#: ../../operation/agentes/datos_agente.php:195 -#: ../../operation/events/events_list.php:561 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 +#: ../../include/ajax/module.php:225 +#: ../../operation/agentes/datos_agente.php:204 +#: ../../operation/events/events_list.php:870 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:616 msgid "Timestamp to:" msgstr "終了日時:" -#: ../../include/ajax/module.php:188 +#: ../../include/ajax/module.php:250 msgid "Exact phrase" msgstr "完全なフレーズ" -#: ../../include/ajax/module.php:768 -#: ../../operation/agentes/alerts_status.php:455 -#: ../../operation/agentes/alerts_status.php:499 -#: ../../operation/agentes/alerts_status.php:533 -#: ../../operation/agentes/alerts_status.php:568 +#: ../../include/ajax/module.php:828 +#: ../../operation/agentes/alerts_status.php:508 +#: ../../operation/agentes/alerts_status.php:544 +#: ../../operation/agentes/alerts_status.php:578 +#: ../../operation/agentes/alerts_status.php:611 msgid "Force execution" msgstr "確認の強制(再)実行" -#: ../../include/ajax/module.php:768 -#: ../../operation/agentes/alerts_status.php:456 -#: ../../operation/agentes/alerts_status.php:499 -#: ../../operation/agentes/alerts_status.php:533 -#: ../../operation/agentes/alerts_status.php:568 +#: ../../include/ajax/module.php:828 +#: ../../operation/agentes/alerts_status.php:508 +#: ../../operation/agentes/alerts_status.php:544 +#: ../../operation/agentes/alerts_status.php:578 +#: ../../operation/agentes/alerts_status.php:611 msgid "F." msgstr "F." -#: ../../include/ajax/module.php:784 -#: ../../enterprise/meta/include/functions_wizard_meta.php:858 -#: ../../enterprise/meta/include/functions_wizard_meta.php:944 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1161 +#: ../../include/ajax/module.php:839 +#: ../../enterprise/meta/include/functions_wizard_meta.php:993 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1080 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1314 msgid "Thresholds" msgstr "しきい値" -#: ../../include/ajax/module.php:841 ../../include/functions_ui.php:861 -#: ../../include/functions_groups.php:765 -#: ../../include/functions_groups.php:958 -#: ../../operation/agentes/group_view.php:163 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/servers/recon_view.php:89 -#: ../../operation/servers/recon_view.php:121 -#: ../../enterprise/extensions/ipam/ipam_network.php:154 -#: ../../enterprise/godmode/agentes/inventory_manager.php:272 -#: ../../enterprise/operation/services/services.list.php:469 -msgid "Force" -msgstr "強制する" - -#: ../../include/ajax/module.php:1155 +#: ../../include/ajax/module.php:1197 msgid "Any monitors aren't with this filter." msgstr "このフィルタに合うモニタ項目がありません。" -#: ../../include/ajax/module.php:1158 +#: ../../include/ajax/module.php:1199 msgid "This agent doesn't have any active monitors." msgstr "エージェントに有効な監視がありません。" -#: ../../include/ajax/rolling_release.ajax.php:56 +#: ../../include/ajax/rolling_release.ajax.php:55 msgid "The sql file contains a dangerous query" msgstr "SQL ファイルに危険なクエリが含まれています。" -#: ../../include/ajax/rolling_release.ajax.php:103 +#: ../../include/ajax/rolling_release.ajax.php:98 msgid "" "An error occurred while updating the database schema to the minor release " msgstr "マイナーリリースへのデータベーススキーマ更新でエラーが発生しました " -#: ../../include/ajax/rolling_release.ajax.php:117 -#: ../../include/ajax/rolling_release.ajax.php:130 +#: ../../include/ajax/rolling_release.ajax.php:111 +#: ../../include/ajax/rolling_release.ajax.php:123 msgid "The directory " msgstr "ディレクトリ " -#: ../../include/ajax/rolling_release.ajax.php:117 +#: ../../include/ajax/rolling_release.ajax.php:111 msgid " should have read permissions in order to update the database schema" msgstr " は、データベーススキーマ更新のために読み込み権限が必要です" -#: ../../include/ajax/rolling_release.ajax.php:130 +#: ../../include/ajax/rolling_release.ajax.php:123 msgid " does not exist" msgstr " が存在しません" -#: ../../include/ajax/update_manager.ajax.php:75 -#: ../../enterprise/include/functions_update_manager.php:369 +#: ../../include/ajax/task_list.ajax.php:50 +msgid "Overall Progress" +msgstr "全体の進捗" + +#: ../../include/ajax/task_list.ajax.php:70 +msgid "Scanning network" +msgstr "ネットワークスキャン中" + +#: ../../include/ajax/task_list.ajax.php:74 +msgid "Finding AFT connectivity" +msgstr "AFT 接続検出中" + +#: ../../include/ajax/task_list.ajax.php:78 +msgid "Finding traceroute connectivity" +msgstr "traceroute 到達性検出中" + +#: ../../include/ajax/task_list.ajax.php:82 +msgid "Finding gateway connectivity" +msgstr "ゲートウェイ到達性検出中" + +#: ../../include/ajax/task_list.ajax.php:86 +msgid "Searching for devices..." +msgstr "デバイスを検索中..." + +#: ../../include/ajax/task_list.ajax.php:122 +msgid "Hosts discovered" +msgstr "ホストが見つかりました" + +#: ../../include/ajax/task_list.ajax.php:127 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1734 +#: ../../enterprise/extensions/ipam/ipam_network.php:342 +msgid "Alive" +msgstr "稼働" + +#: ../../include/ajax/task_list.ajax.php:132 +#: ../../enterprise/extensions/ipam/ipam_network.php:351 +msgid "Not alive" +msgstr "停止" + +#: ../../include/ajax/task_list.ajax.php:137 +msgid "Responding SNMP" +msgstr "SNMP 応答" + +#: ../../include/ajax/task_list.ajax.php:142 +msgid "Responding WMI" +msgstr "WMI 応答" + +#: ../../include/ajax/task_list.ajax.php:147 +#: ../../include/functions_netflow.php:1034 +#: ../../include/functions_reporting_html.php:3783 +#: ../../include/functions_reporting_html.php:3920 +#: ../../enterprise/dashboard/widgets/tactical.php:50 +msgid "Summary" +msgstr "サマリ" + +#: ../../include/ajax/task_list.ajax.php:152 +#: ../../include/ajax/visual_console_builder.ajax.php:343 +#: ../../include/functions_visual_map.php:2922 +#: ../../enterprise/godmode/reporting/visual_console_template.php:227 +#: ../../enterprise/godmode/setup/setup_acl.php:693 +#: ../../enterprise/operation/agentes/wux_console_view.php:558 +msgid "No data to show" +msgstr "表示するデータがありません" + +#: ../../include/ajax/update_manager.ajax.php:96 +#: ../../enterprise/include/functions_update_manager.php:453 msgid "There was an error extracting the file '" msgstr "次のファイル展開中にエラーが発生しました '" -#: ../../include/ajax/update_manager.ajax.php:91 -#: ../../enterprise/include/functions_update_manager.php:386 +#: ../../include/ajax/update_manager.ajax.php:113 +#: ../../enterprise/include/functions_update_manager.php:470 msgid "The package was not extracted." msgstr "パッケージが展開されませんでした。" -#: ../../include/ajax/update_manager.ajax.php:97 +#: ../../include/ajax/update_manager.ajax.php:119 msgid "Invalid extension. The package must have the extension .oum." msgstr "不正な拡張子です。パッケージの拡張子は、.oum でなければいけません。" -#: ../../include/ajax/update_manager.ajax.php:104 +#: ../../include/ajax/update_manager.ajax.php:126 msgid "The file was not uploaded succesfully." msgstr "ファイルのアップロードに失敗しました。" -#: ../../include/ajax/update_manager.ajax.php:181 -#: ../../include/ajax/update_manager.ajax.php:185 +#: ../../include/ajax/update_manager.ajax.php:207 #: ../../include/ajax/update_manager.ajax.php:212 -#: ../../include/functions_update_manager.php:128 -#: ../../include/functions_update_manager.php:132 -#: ../../include/functions_update_manager.php:158 -#: ../../enterprise/include/functions_update_manager.php:508 -#: ../../enterprise/include/functions_update_manager.php:512 -#: ../../enterprise/include/functions_update_manager.php:539 +#: ../../include/ajax/update_manager.ajax.php:238 +#: ../../include/functions_update_manager.php:1107 +#: ../../include/functions_update_manager.php:1112 +#: ../../include/functions_update_manager.php:1132 +#: ../../enterprise/include/functions_update_manager.php:628 +#: ../../enterprise/include/functions_update_manager.php:633 +#: ../../enterprise/include/functions_update_manager.php:653 msgid "Some of your files might not be recovered." msgstr "いくつかのファイルをリカバーできていない可能性があります。" -#: ../../include/ajax/update_manager.ajax.php:189 -#: ../../include/ajax/update_manager.ajax.php:206 -#: ../../include/functions_update_manager.php:136 -#: ../../include/functions_update_manager.php:152 -#: ../../enterprise/include/functions_update_manager.php:517 -#: ../../enterprise/include/functions_update_manager.php:533 +#: ../../include/ajax/update_manager.ajax.php:217 +#: ../../include/ajax/update_manager.ajax.php:232 +#: ../../include/functions_update_manager.php:1102 +#: ../../include/functions_update_manager.php:1141 +#: ../../enterprise/include/functions_update_manager.php:619 +#: ../../enterprise/include/functions_update_manager.php:662 msgid "Some of your old files might not be recovered." msgstr "いくつかの古いファイルをリカバーできていない可能性があります。" -#: ../../include/ajax/update_manager.ajax.php:227 -#: ../../include/functions_update_manager.php:173 -#: ../../enterprise/include/functions_update_manager.php:554 +#: ../../include/ajax/update_manager.ajax.php:253 +#: ../../include/functions_update_manager.php:1061 +#: ../../enterprise/include/functions_update_manager.php:575 msgid "An error ocurred while reading a file." msgstr "ファイル読み込み中にエラーが発生しました。" -#: ../../include/ajax/update_manager.ajax.php:234 -#: ../../include/functions_update_manager.php:180 -#: ../../enterprise/include/functions_update_manager.php:561 +#: ../../include/ajax/update_manager.ajax.php:259 +#: ../../include/functions_update_manager.php:1163 +#: ../../enterprise/include/functions_update_manager.php:684 msgid "The package does not exist" msgstr "パッケージが存在しません。" -#: ../../include/ajax/update_manager.ajax.php:248 +#: ../../include/ajax/update_manager.ajax.php:280 msgid "Package rejected." msgstr "パッケージを受け入れられませんでした。" -#: ../../include/ajax/update_manager.ajax.php:422 -#: ../../enterprise/include/functions_update_manager.php:322 +#: ../../include/ajax/update_manager.ajax.php:462 +#: ../../enterprise/include/functions_update_manager.php:383 msgid "Fail to update to the last package." msgstr "最新パッケージへの更新に失敗しました。" -#: ../../include/ajax/update_manager.ajax.php:430 -#: ../../enterprise/include/functions_update_manager.php:337 +#: ../../include/ajax/update_manager.ajax.php:474 +#: ../../enterprise/include/functions_update_manager.php:409 msgid "Starting to update to the last package." msgstr "最新パッケージへの更新を開始します。" -#: ../../include/ajax/update_manager.ajax.php:501 -#: ../../enterprise/include/functions_update_manager.php:430 +#: ../../include/ajax/update_manager.ajax.php:571 +#: ../../enterprise/include/functions_update_manager.php:526 msgid "progress" msgstr "処理状況" -#: ../../include/ajax/update_manager.ajax.php:522 +#: ../../include/ajax/update_manager.ajax.php:596 msgid "The package is extracted." msgstr "パッケージを展開しました。" -#: ../../include/ajax/update_manager.ajax.php:526 +#: ../../include/ajax/update_manager.ajax.php:599 msgid "Error in package extraction." msgstr "パッケージ展開エラーです。" -#: ../../include/ajax/update_manager.ajax.php:544 -#: ../../include/functions_update_manager.php:189 -#: ../../enterprise/include/functions_update_manager.php:570 +#: ../../include/ajax/update_manager.ajax.php:617 +#: ../../include/functions_update_manager.php:1178 +#: ../../enterprise/include/functions_update_manager.php:697 msgid "The package is installed." msgstr "パッケージがインストールされました。" -#: ../../include/ajax/update_manager.ajax.php:548 +#: ../../include/ajax/update_manager.ajax.php:620 msgid "An error ocurred in the installation process." msgstr "インストール処理でエラーが発生しました。" -#: ../../include/auth/mysql.php:240 +#: ../../include/ajax/update_manager.ajax.php:749 +msgid "Delete files" +msgstr "ファイル削除" + +#: ../../include/ajax/update_manager.ajax.php:750 +msgid "The oum has no files to remove" +msgstr "削除する oum ファイルがありません" + +#: ../../include/ajax/update_manager.ajax.php:751 +#: ../../enterprise/godmode/services/services.service.php:227 +#: ../../enterprise/godmode/services/services.service.php:262 +#: ../../enterprise/operation/services/services.service.php:37 +#: ../../enterprise/operation/services/services.service_map.php:44 +msgid "Not found" +msgstr "見つかりません" + +#: ../../include/ajax/update_manager.ajax.php:752 +msgid "Not deleted" +msgstr "未削除" + +#: ../../include/ajax/update_manager.ajax.php:753 +msgid "The file delete_file.txt can not be read" +msgstr "delete_file.txt ファイルを読めません" + +#: ../../include/ajax/update_manager.ajax.php:754 +msgid "'deleted' folder could not be created" +msgstr "'deleted' フォルダを作成できません" + +#: ../../include/ajax/update_manager.ajax.php:755 +msgid "'deleted' folder was created" +msgstr "'deleted' フォルダを作成しました" + +#: ../../include/ajax/update_manager.ajax.php:757 +msgid "The \"delete files\" could not be the \"delete\" folder" +msgstr "\"削除ファイル\" を \"delete\" フォルダに置けません" + +#: ../../include/ajax/update_manager.ajax.php:760 +msgid "The \"delete files\" is moved to the \"delete\" folder" +msgstr "\"削除ファイル\" を \"delete\" フォルダへ移動しました" + +#: ../../include/api.php:206 +msgid "User or group not specified" +msgstr "ユーザまたはグループが指定されていません" + +#: ../../include/api.php:207 +msgid "User, group not specified" +msgstr "ユーザ、グループが指定されていません" + +#: ../../include/api.php:238 +msgid "User, group or profile not specified" +msgstr "ユーザ、グループまたは、プロファイルが指定されていません" + +#: ../../include/api.php:239 +msgid "User, group or profile status not specified" +msgstr "ユーザ、グループまたは、プロファイルの状態が指定されていません" + +#: ../../include/auth/mysql.php:276 ../../include/auth/mysql.php:313 msgid "" "Problems with configuration permissions. Please contact with Administrator" msgstr "パーミッション設定に問題があります。管理者に連絡してください。" -#: ../../include/auth/mysql.php:246 ../../include/auth/mysql.php:257 +#: ../../include/auth/mysql.php:280 ../../include/auth/mysql.php:291 +#: ../../include/auth/mysql.php:317 msgid "Your permissions have changed. Please, login again." msgstr "権限が変更されました。ログインし直してください。" -#: ../../include/auth/mysql.php:271 +#: ../../include/auth/mysql.php:300 ../../include/auth/mysql.php:403 +#: ../../include/auth/mysql.php:423 +msgid "User not found in database or incorrect password" +msgstr "データベース上にユーザが存在しないかパスワードが不正です" + +#: ../../include/auth/mysql.php:331 msgid "" "Ooops User not found in \n" "\t\t\t\tdatabase or incorrect password" @@ -19890,17 +22805,17 @@ msgstr "" "データベースにユーザがいないか\n" "\t\t\t\tパスワードが不正です。" -#: ../../include/auth/mysql.php:289 ../../include/auth/mysql.php:322 -#: ../../include/auth/mysql.php:396 +#: ../../include/auth/mysql.php:349 ../../include/auth/mysql.php:390 +#: ../../include/auth/mysql.php:442 msgid "Fail the group synchronizing" msgstr "グループの同期に失敗しました" -#: ../../include/auth/mysql.php:295 ../../include/auth/mysql.php:328 -#: ../../include/auth/mysql.php:402 +#: ../../include/auth/mysql.php:355 ../../include/auth/mysql.php:396 +#: ../../include/auth/mysql.php:448 msgid "Fail the tag synchronizing" msgstr "タグの同期に失敗しました" -#: ../../include/auth/mysql.php:308 +#: ../../include/auth/mysql.php:376 msgid "" "User not found in database \n" "\t\t\t\t\tor incorrect password" @@ -19908,3196 +22823,362 @@ msgstr "" "データベースにユーザがいないか\n" "\t\t\t\t\tパスワードが不正です。" -#: ../../include/auth/mysql.php:361 ../../include/auth/mysql.php:382 -msgid "User not found in database or incorrect password" -msgstr "データベース上にユーザが存在しないかパスワードが不正です" - -#: ../../include/auth/mysql.php:665 +#: ../../include/auth/mysql.php:753 msgid "Could not changes password on remote pandora" msgstr "リモートの pandora のパスワードを変更できません" -#: ../../include/auth/mysql.php:702 +#: ../../include/auth/mysql.php:801 msgid "Your installation of PHP does not support LDAP" msgstr "インストールされている PHP が LDAP に対応していません" -#: ../../include/class/Tree.class.php:1506 -#: ../../include/functions_modules.php:1956 -#: ../../include/functions_modules.php:1976 -#: ../../mobile/operation/modules.php:459 -#: ../../mobile/operation/modules.php:477 -#: ../../mobile/operation/modules.php:512 -#: ../../mobile/operation/modules.php:530 -#: ../../operation/agentes/pandora_networkmap.view.php:301 -#: ../../operation/agentes/pandora_networkmap.view.php:323 -#: ../../operation/agentes/status_monitor.php:1166 -#: ../../operation/agentes/status_monitor.php:1170 -#: ../../operation/agentes/status_monitor.php:1203 -#: ../../operation/agentes/status_monitor.php:1208 -#: ../../operation/search_modules.php:112 -#: ../../operation/search_modules.php:132 -#: ../../enterprise/extensions/vmware/vmware_view.php:949 -#: ../../enterprise/include/functions_services.php:1684 -#: ../../enterprise/include/functions_services.php:1708 -#: ../../enterprise/operation/agentes/policy_view.php:363 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/tag_view.php:810 -#: ../../enterprise/operation/agentes/tag_view.php:814 -#: ../../enterprise/operation/agentes/tag_view.php:847 -#: ../../enterprise/operation/agentes/tag_view.php:852 -msgid "CRITICAL" -msgstr "障害" +#: ../../include/chart_generator.php:114 +#: ../../operation/agentes/interface_traffic_graph_win.php:42 +#: ../../operation/agentes/realtime_win.php:37 +#: ../../operation/agentes/stat_win.php:37 +msgid "There was a problem connecting with the node" +msgstr "ノード接続で問題が発生しました" -#: ../../include/class/Tree.class.php:1513 -#: ../../include/functions_pandora_networkmap.php:1013 -#: ../../include/functions_modules.php:1960 -#: ../../include/functions_modules.php:1980 -#: ../../mobile/operation/modules.php:463 -#: ../../mobile/operation/modules.php:482 -#: ../../mobile/operation/modules.php:516 -#: ../../mobile/operation/modules.php:535 -#: ../../operation/agentes/pandora_networkmap.view.php:305 -#: ../../operation/agentes/pandora_networkmap.view.php:328 -#: ../../operation/agentes/status_monitor.php:1176 -#: ../../operation/agentes/status_monitor.php:1180 -#: ../../operation/agentes/status_monitor.php:1215 -#: ../../operation/agentes/status_monitor.php:1220 -#: ../../operation/search_modules.php:116 -#: ../../operation/search_modules.php:139 -#: ../../enterprise/extensions/vmware/vmware_view.php:953 -#: ../../enterprise/include/functions_login.php:32 -#: ../../enterprise/include/functions_services.php:1688 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/operation/agentes/policy_view.php:367 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/tag_view.php:820 -#: ../../enterprise/operation/agentes/tag_view.php:824 -#: ../../enterprise/operation/agentes/tag_view.php:859 -#: ../../enterprise/operation/agentes/tag_view.php:864 -msgid "WARNING" -msgstr "警告" +#: ../../include/class/ConsoleSupervisor.php:732 +msgid "Limited mode." +msgstr "制限モード" -#: ../../include/class/Tree.class.php:1518 -#: ../../include/functions_modules.php:1971 -#: ../../include/functions_modules.php:1975 -#: ../../include/functions_modules.php:1979 -#: ../../mobile/operation/modules.php:471 -#: ../../mobile/operation/modules.php:476 -#: ../../mobile/operation/modules.php:481 -#: ../../mobile/operation/modules.php:524 -#: ../../mobile/operation/modules.php:529 -#: ../../mobile/operation/modules.php:534 -#: ../../operation/agentes/pandora_networkmap.view.php:317 -#: ../../operation/agentes/pandora_networkmap.view.php:322 -#: ../../operation/agentes/pandora_networkmap.view.php:327 -#: ../../operation/agentes/status_monitor.php:1190 -#: ../../operation/agentes/status_monitor.php:1195 -#: ../../operation/agentes/status_monitor.php:1202 -#: ../../operation/agentes/status_monitor.php:1207 -#: ../../operation/agentes/status_monitor.php:1214 -#: ../../operation/agentes/status_monitor.php:1219 -#: ../../operation/search_modules.php:124 -#: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../enterprise/extensions/vmware/vmware_view.php:957 -#: ../../enterprise/include/functions_services.php:1695 -#: ../../enterprise/include/functions_services.php:1703 -#: ../../enterprise/include/functions_services.php:1708 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/include/functions_services.php:1716 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/tag_view.php:834 -#: ../../enterprise/operation/agentes/tag_view.php:839 -#: ../../enterprise/operation/agentes/tag_view.php:846 -#: ../../enterprise/operation/agentes/tag_view.php:851 -#: ../../enterprise/operation/agentes/tag_view.php:858 -#: ../../enterprise/operation/agentes/tag_view.php:863 -msgid "UNKNOWN" -msgstr "不明" +#: ../../include/class/ConsoleSupervisor.php:747 +msgid "License is about to expire" +msgstr "ライセンスの有効期限が近づいています" -#: ../../include/class/Tree.class.php:1524 -msgid "NO DATA" -msgstr "データがありません" - -#: ../../include/class/Tree.class.php:1532 -#: ../../include/functions_modules.php:1964 -#: ../../include/functions_modules.php:1972 -#: ../../mobile/operation/modules.php:455 -#: ../../mobile/operation/modules.php:472 -#: ../../mobile/operation/modules.php:508 -#: ../../mobile/operation/modules.php:525 -#: ../../operation/agentes/pandora_networkmap.view.php:309 -#: ../../operation/agentes/pandora_networkmap.view.php:318 -#: ../../operation/agentes/status_monitor.php:1156 -#: ../../operation/agentes/status_monitor.php:1160 -#: ../../operation/agentes/status_monitor.php:1191 -#: ../../operation/agentes/status_monitor.php:1196 -#: ../../operation/search_modules.php:108 -#: ../../operation/search_modules.php:125 -#: ../../enterprise/extensions/vmware/vmware_view.php:945 -#: ../../enterprise/include/functions_services.php:1680 -#: ../../enterprise/include/functions_services.php:1703 -#: ../../enterprise/operation/agentes/policy_view.php:371 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/tag_view.php:800 -#: ../../enterprise/operation/agentes/tag_view.php:804 -#: ../../enterprise/operation/agentes/tag_view.php:835 -#: ../../enterprise/operation/agentes/tag_view.php:840 -msgid "NORMAL" -msgstr "正常" - -#: ../../include/class/Tree.class.php:1619 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 -msgid "Module alerts" -msgstr "モジュールアラート" - -#: ../../include/functions.php:215 -#: ../../enterprise/include/functions_reporting_csv.php:1646 -msgid "." -msgstr "." - -#: ../../include/functions.php:217 -msgid "," -msgstr "," - -#: ../../include/functions.php:439 ../../include/functions.php:573 -msgid "s" -msgstr "s" - -#: ../../include/functions.php:440 ../../include/functions.php:574 -msgid "d" -msgstr "d" - -#: ../../include/functions.php:441 ../../include/functions.php:575 -msgid "M" -msgstr "M" - -#: ../../include/functions.php:442 ../../include/functions.php:576 -msgid "Y" -msgstr "Y" - -#: ../../include/functions.php:443 ../../include/functions.php:577 -msgid "m" -msgstr "m" - -#: ../../include/functions.php:444 ../../include/functions.php:578 -msgid "h" -msgstr "h" - -#: ../../include/functions.php:445 ../../include/functions.php:579 -msgid "N" -msgstr "N" - -#: ../../include/functions.php:867 ../../include/functions.php:1075 -#: ../../include/functions.php:1108 ../../include/functions_events.php:1463 -#: ../../include/functions_graph.php:3259 -#: ../../include/functions_graph.php:3759 -#: ../../include/functions_graph.php:3760 -#: ../../include/functions_graph.php:6073 -#: ../../include/functions_incidents.php:34 -#: ../../include/functions_incidents.php:69 -msgid "Maintenance" -msgstr "メンテナンス" - -#: ../../include/functions.php:870 ../../include/functions.php:1076 -#: ../../include/functions.php:1111 ../../include/functions_events.php:1466 -#: ../../include/functions_graph.php:3763 -#: ../../include/functions_graph.php:3764 -#: ../../include/functions_graph.php:6076 -msgid "Informational" -msgstr "情報" - -#: ../../include/functions.php:882 ../../include/functions.php:1078 -#: ../../include/functions.php:1123 ../../include/functions_graph.php:3771 -#: ../../include/functions_graph.php:3772 -#: ../../include/functions_graph.php:6088 -msgid "Minor" -msgstr "マイナー" - -#: ../../include/functions.php:885 ../../include/functions.php:1080 -#: ../../include/functions.php:1126 ../../include/functions_graph.php:3779 -#: ../../include/functions_graph.php:3780 -#: ../../include/functions_graph.php:6091 -msgid "Major" -msgstr "メジャー" - -#: ../../include/functions.php:1029 ../../include/functions_events.php:1399 -msgid "Monitor Critical" -msgstr "障害" - -#: ../../include/functions.php:1030 ../../include/functions_events.php:1402 -msgid "Monitor Warning" -msgstr "警告" - -#: ../../include/functions.php:1031 ../../include/functions_events.php:1405 -msgid "Monitor Normal" -msgstr "正常" - -#: ../../include/functions.php:1033 -msgid "Monitor Unknown" -msgstr "不明状態" - -#: ../../include/functions.php:1036 ../../include/functions_events.php:1138 -#: ../../include/functions_events.php:1411 -msgid "Alert recovered" -msgstr "復旧したアラート" - -#: ../../include/functions.php:1037 ../../include/functions_events.php:1173 -#: ../../include/functions_events.php:1414 -msgid "Alert ceased" -msgstr "停止されたアラート" - -#: ../../include/functions.php:1038 ../../include/functions_events.php:1417 -msgid "Alert manual validation" -msgstr "承諾されたアラート" - -#: ../../include/functions.php:1040 -msgid "Agent created" -msgstr "エージェント作成" - -#: ../../include/functions.php:1041 ../../include/functions_events.php:1420 -msgid "Recon host detected" -msgstr "自動検出" - -#: ../../include/functions.php:1044 ../../include/functions_events.php:1170 -#: ../../include/functions_events.php:1429 -msgid "Configuration change" -msgstr "設定変更" - -#: ../../include/functions.php:2055 ../../include/functions.php:2056 +#: ../../include/class/ConsoleSupervisor.php:749 #, php-format -msgid "%s minutes" -msgstr "%s 分" - -#: ../../include/functions.php:2064 ../../include/functions.php:2065 -#, php-format -msgid "%s months" -msgstr "%s ヶ月" - -#: ../../include/functions.php:2067 ../../include/functions.php:2068 -#, php-format -msgid "%s years" -msgstr "%s 年" - -#: ../../include/functions.php:2071 -msgid "Default values will be used" -msgstr "デフォルト値を利用します" - -#: ../../include/functions.php:2220 -msgid "The uploaded file was only partially uploaded" -msgstr "ファイルは部分的にのみアップロードされました" - -#: ../../include/functions.php:2223 -msgid "No file was uploaded" -msgstr "ファイルがアップロードされませんでした" - -#: ../../include/functions.php:2226 -msgid "Missing a temporary folder" -msgstr "テンポラリフォルダがありません" - -#: ../../include/functions.php:2229 -msgid "Failed to write file to disk" -msgstr "ファイルのディスクへの書き込みに失敗しました" - -#: ../../include/functions.php:2232 -msgid "File upload stopped by extension" -msgstr "拡張によりファイルのアップロードが停止されました" - -#: ../../include/functions.php:2236 -msgid "Unknown upload error" -msgstr "不明なアップロードエラー" - -#: ../../include/functions.php:2321 -msgid "No data found to export" -msgstr "エクスポートするデータがありません" - -#: ../../include/functions.php:2339 -msgid "Source ID" -msgstr "ソース ID" - -#: ../../include/functions.php:2607 -#: ../../operation/gis_maps/render_view.php:135 -msgid "5 seconds" -msgstr "5 秒" - -#: ../../include/functions.php:2608 -#: ../../operation/gis_maps/render_view.php:136 -msgid "10 seconds" -msgstr "10 秒" - -#: ../../include/functions.php:2609 -msgid "15 seconds" -msgstr "15秒" - -#: ../../include/functions.php:2610 -#: ../../operation/gis_maps/render_view.php:137 -msgid "30 seconds" -msgstr "30 秒" - -#: ../../include/functions.php:2614 -msgid "15 minutes" -msgstr "15 分" - -#: ../../include/functions_reporting.php:207 -#: ../../include/functions_reporting.php:10943 -msgid " agents" -msgstr " エージェント" - -#: ../../include/functions_reporting.php:211 -#: ../../include/functions_reporting.php:10984 -msgid " modules" -msgstr " モジュール" - -#: ../../include/functions_reporting.php:618 -#: ../../include/functions_reports.php:540 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:112 -#: ../../enterprise/godmode/services/services.service.php:341 -#: ../../enterprise/include/functions_reporting_csv.php:1020 -msgid "S.L.A." -msgstr "SLA" - -#: ../../include/functions_reporting.php:651 -#: ../../include/functions_reporting.php:5659 -#: ../../enterprise/include/functions_reporting.php:2092 -#: ../../enterprise/include/functions_reporting.php:2818 -#: ../../enterprise/include/functions_reporting.php:3599 -#: ../../enterprise/include/functions_reporting.php:4934 -#: ../../enterprise/include/functions_reporting.php:4940 -msgid "There are no SLAs defined" -msgstr "SLA が定義されていません。" - -#: ../../include/functions_reporting.php:707 -#: ../../include/functions_reporting.php:5699 -#: ../../include/functions_maps.php:43 -#: ../../include/functions_networkmap.php:1759 -#: ../../enterprise/include/functions_reporting.php:2136 -#: ../../enterprise/include/functions_reporting.php:2862 -#: ../../enterprise/include/functions_reporting.php:3643 -msgid "Dynamic" -msgstr "動的" - -#: ../../include/functions_reporting.php:718 -#: ../../include/functions_reporting.php:5710 -#: ../../enterprise/include/functions_reporting.php:2147 -#: ../../enterprise/include/functions_reporting.php:2873 -#: ../../enterprise/include/functions_reporting.php:3654 -msgid "Inverse" -msgstr "反転" - -#: ../../include/functions_reporting.php:1028 -#: ../../enterprise/dashboard/widgets/top_n.php:31 -msgid "Top N" -msgstr "トップ N" - -#: ../../include/functions_reporting.php:1047 -#: ../../operation/snmpconsole/snmp_statistics.php:127 -#: ../../operation/snmpconsole/snmp_statistics.php:185 -#: ../../enterprise/include/functions_reporting_csv.php:430 -#, php-format -msgid "Top %d" -msgstr "トップ %d" - -#: ../../include/functions_reporting.php:1085 -#: ../../include/functions_reporting.php:1910 -#: ../../include/functions_reporting_html.php:2498 -#: ../../include/functions_reporting_html.php:2768 -#: ../../enterprise/dashboard/widgets/top_n.php:468 -#: ../../enterprise/include/functions_reporting_pdf.php:871 -#: ../../enterprise/include/functions_reporting_pdf.php:1339 -#: ../../enterprise/include/functions_reporting_pdf.php:2094 -msgid "There are no Agent/Modules defined" -msgstr "定義済のエージェント/モジュールがありません" - -#: ../../include/functions_reporting.php:1138 -#: ../../enterprise/dashboard/widgets/top_n.php:534 -msgid "Insuficient data" -msgstr "不十分なデータ" - -#: ../../include/functions_reporting.php:1295 -#: ../../include/functions_reporting.php:1450 -#: ../../include/functions_reporting.php:1469 -#: ../../include/functions_reporting.php:1490 -#: ../../include/functions_reporting.php:1511 -#: ../../include/functions_reporting.php:2181 -#: ../../include/functions_reporting.php:2363 -#: ../../include/functions_reporting.php:2384 -#: ../../include/functions_reporting.php:2405 -#: ../../include/functions_reporting.php:6871 -#: ../../include/functions_reporting.php:6891 -#: ../../include/functions_reporting.php:6911 -#: ../../include/functions_graph.php:2598 -#: ../../include/functions_graph.php:2678 -#: ../../include/functions_graph.php:2751 -#: ../../include/functions_graph.php:3520 -#: ../../include/functions_graph.php:4019 -#: ../../include/functions_reporting_html.php:3047 -#: ../../include/functions_reporting_html.php:3125 -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:180 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:197 -msgid "other" -msgstr "その他" - -#: ../../include/functions_reporting.php:1373 -msgid "Event Report Group" -msgstr "イベントレポートグループ" - -#: ../../include/functions_reporting.php:1417 -#: ../../include/functions_reporting.php:1589 -#: ../../include/functions_events.php:865 -#: ../../include/functions_events.php:869 -#: ../../include/functions_reporting_html.php:3893 -#: ../../include/functions_reporting_html.php:4065 -#: ../../mobile/operation/events.php:790 -#: ../../operation/events/events.build_table.php:118 -#: ../../operation/events/events.build_table.php:787 -msgid "No events" -msgstr "イベントがありません。" - -#: ../../include/functions_reporting.php:1550 -msgid "Event Report Module" -msgstr "イベントレポートモジュール" - -#: ../../include/functions_reporting.php:1616 -#: ../../enterprise/include/functions_reporting_csv.php:302 -msgid "Inventory Changes" -msgstr "インベントリ変更" - -#: ../../include/functions_reporting.php:1658 -#: ../../enterprise/extensions/ipam/ipam_action.php:198 -msgid "No changes found." -msgstr "変更が見つかりません。" - -#: ../../include/functions_reporting.php:1745 -msgid "Agent/Modules" -msgstr "エージェント/モジュール" - -#: ../../include/functions_reporting.php:1816 -#: ../../include/functions_reports.php:586 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -#: ../../enterprise/include/functions_reporting_csv.php:403 -msgid "Exception" -msgstr "例外" - -#: ../../include/functions_reporting.php:1834 -msgid "Exception - Everything" -msgstr "例外 - 全て" - -#: ../../include/functions_reporting.php:1839 -#, php-format -msgid "Exception - Modules over or equal to %s" -msgstr "例外 - モジュールが %s 以上" - -#: ../../include/functions_reporting.php:1841 -#, php-format -msgid "Modules over or equal to %s" -msgstr "%s 以上のモジュール" - -#: ../../include/functions_reporting.php:1845 -#, php-format -msgid "Exception - Modules under or equal to %s" -msgstr "例外 - モジュールが %s 以下" - -#: ../../include/functions_reporting.php:1847 -#, php-format -msgid "Modules under or equal to %s" -msgstr "%s 以下のモジュール" - -#: ../../include/functions_reporting.php:1851 -#, php-format -msgid "Exception - Modules under %s" -msgstr "例外 - モジュールが %s 未満" - -#: ../../include/functions_reporting.php:1853 -#, php-format -msgid "Modules under %s" -msgstr "%s 未満のモジュール" - -#: ../../include/functions_reporting.php:1857 -#, php-format -msgid "Exception - Modules over %s" -msgstr "例外 - モジュールが %s より大きい" - -#: ../../include/functions_reporting.php:1859 -#, php-format -msgid "Modules over %s" -msgstr "%s を超えるモジュール" - -#: ../../include/functions_reporting.php:1863 -#, php-format -msgid "Exception - Equal to %s" -msgstr "例外 - %s と同じ" - -#: ../../include/functions_reporting.php:1865 -#, php-format -msgid "Equal to %s" -msgstr "%s と同じ" - -#: ../../include/functions_reporting.php:1869 -#, php-format -msgid "Exception - Not equal to %s" -msgstr "例外 - %s と異なる" - -#: ../../include/functions_reporting.php:1871 -#, php-format -msgid "Not equal to %s" -msgstr "%s と異なる" - -#: ../../include/functions_reporting.php:1875 -msgid "Exception - Modules at normal status" -msgstr "例外 - モジュールが正常状態" - -#: ../../include/functions_reporting.php:1876 -msgid "Modules at normal status" -msgstr "正常状態のモジュール" - -#: ../../include/functions_reporting.php:1880 -msgid "Exception - Modules at critical or warning status" -msgstr "例外 - モジュールが障害または警告状態" - -#: ../../include/functions_reporting.php:1881 -msgid "Modules at critical or warning status" -msgstr "障害または警告状態のモジュール" - -#: ../../include/functions_reporting.php:2070 -msgid "There are no Modules under those conditions." -msgstr "これらの条件のモジュールはありません。" - -#: ../../include/functions_reporting.php:2073 -#, php-format -msgid "There are no Modules over or equal to %s." -msgstr "%s 以上のモジュールがありません。" - -#: ../../include/functions_reporting.php:2076 -#, php-format -msgid "There are no Modules less or equal to %s." -msgstr "%s 以下のモジュールがありません。" - -#: ../../include/functions_reporting.php:2079 -#, php-format -msgid "There are no Modules less %s." -msgstr "%s 未満のモジュールがありません。" - -#: ../../include/functions_reporting.php:2082 -#, php-format -msgid "There are no Modules over %s." -msgstr "%s を超えるモジュールがありません。" - -#: ../../include/functions_reporting.php:2085 -#, php-format -msgid "There are no Modules equal to %s" -msgstr "%s と同じモジュールがありません。" - -#: ../../include/functions_reporting.php:2088 -#, php-format -msgid "There are no Modules not equal to %s" -msgstr "%s と異なるモジュールがありません。" - -#: ../../include/functions_reporting.php:2091 -msgid "There are no Modules normal status" -msgstr "正常状態のモジュールがありません" - -#: ../../include/functions_reporting.php:2094 -msgid "There are no Modules at critial or warning status" -msgstr "障害または警告状態のモジュールはありません" - -#: ../../include/functions_reporting.php:2242 -#: ../../enterprise/include/functions_reporting_csv.php:456 -msgid "Group Report" -msgstr "グループレポート" - -#: ../../include/functions_reporting.php:2296 -msgid "Event Report Agent" -msgstr "イベントレポートエージェント" - -#: ../../include/functions_reporting.php:2498 -msgid "Database Serialized" -msgstr "データベースの並び" - -#: ../../include/functions_reporting.php:2629 -#: ../../include/functions_reports.php:641 -msgid "Group configuration" -msgstr "グループ設定" - -#: ../../include/functions_reporting.php:2705 -msgid "Network interfaces report" -msgstr "ネットワークインタフェースレポート" - -#: ../../include/functions_reporting.php:2728 msgid "" -"The group has no agents or none of the agents has any network interface" -msgstr "グループにエージェントが無いか、ネットワークインタフェースのあるエージェントがありません" +"Your license will expire in %d days. Please, contact our sales department." +msgstr "ライセンスの有効期限まで %d 日です。営業まで問い合わせください。" -#: ../../include/functions_reporting.php:2777 -#: ../../include/functions_reporting.php:2806 -msgid "bytes/s" -msgstr "バイト/秒" +#: ../../include/class/ConsoleSupervisor.php:760 +msgid "Expired license" +msgstr "ライセンス切れ" -#: ../../include/functions_reporting.php:2864 -msgid "Alert Report Group" -msgstr "アラートレポートグループ" +#: ../../include/class/ConsoleSupervisor.php:761 +msgid "Your license has expired. Please, contact our sales department." +msgstr "ライセンスが切れています。営業窓口までご連絡ください。" -#: ../../include/functions_reporting.php:3010 -msgid "Alert Report Agent" -msgstr "アラートレポートエージェント" +#: ../../include/class/ConsoleSupervisor.php:834 +msgid "Attachment directory is not writable" +msgstr "添付ファイルディレクトリ書き込み不可" -#: ../../include/functions_reporting.php:3127 -msgid "Alert Report Module" -msgstr "アラートレポートモジュール" - -#: ../../include/functions_reporting.php:3260 -msgid "SQL Graph Vertical Bars" -msgstr "SQL縦棒グラフ" - -#: ../../include/functions_reporting.php:3263 -msgid "SQL Graph Horizontal Bars" -msgstr "SQL横棒グラフ" - -#: ../../include/functions_reporting.php:3266 -msgid "SQL Graph Pie" -msgstr "SQL円グラフ" - -#: ../../include/functions_reporting.php:3314 -#: ../../enterprise/include/functions_reporting_csv.php:941 -#: ../../enterprise/include/functions_reporting_csv.php:957 -#: ../../enterprise/include/functions_reporting_csv.php:965 -msgid "Monitor Report" -msgstr "モニタレポート" - -#: ../../include/functions_reporting.php:3391 -msgid "Netflow Area" -msgstr "Netflow塗りつぶしグラフ" - -#: ../../include/functions_reporting.php:3394 -msgid "Netflow Pie" -msgstr "NetFlow円グラフ" - -#: ../../include/functions_reporting.php:3397 -msgid "Netflow Data" -msgstr "Netflowデータ" - -#: ../../include/functions_reporting.php:3400 -msgid "Netflow Statistics" -msgstr "Netflow 統計" - -#: ../../include/functions_reporting.php:3403 -msgid "Netflow Summary" -msgstr "Netflow 概要" - -#: ../../include/functions_reporting.php:3466 -#: ../../include/functions_reports.php:501 -msgid "Simple baseline graph" -msgstr "シンプルベースライングラフ" - -#: ../../include/functions_reporting.php:3533 -msgid "Prediction Date" -msgstr "予測日時" - -#: ../../include/functions_reporting.php:3584 -#: ../../enterprise/include/functions_reporting_csv.php:345 -msgid "Projection Graph" -msgstr "予想グラフ" - -#: ../../include/functions_reporting.php:3671 -#: ../../include/functions_reports.php:639 -msgid "Agent configuration" -msgstr "エージェント設定" - -#: ../../include/functions_reporting.php:3825 -#: ../../enterprise/include/functions_reporting_csv.php:904 -#: ../../enterprise/include/functions_reporting_csv.php:920 -#: ../../enterprise/include/functions_reporting_csv.php:927 -msgid "AVG. Value" -msgstr "平均値" - -#: ../../include/functions_reporting.php:3828 -#: ../../include/functions_reporting.php:6342 -#: ../../include/functions_reports.php:574 -#: ../../enterprise/include/functions_reporting_csv.php:735 -#: ../../enterprise/include/functions_reporting_csv.php:751 -#: ../../enterprise/include/functions_reporting_csv.php:758 -msgid "Summatory" -msgstr "合計" - -#: ../../include/functions_reporting.php:3831 -#: ../../include/functions_reports.php:535 -#: ../../enterprise/include/functions_reporting_csv.php:555 -#: ../../enterprise/include/functions_reporting_csv.php:570 -#: ../../enterprise/include/functions_reporting_csv.php:577 -msgid "MTTR" -msgstr "MTTR" - -#: ../../include/functions_reporting.php:3834 -#: ../../include/functions_reports.php:533 -#: ../../enterprise/include/functions_reporting_csv.php:591 -#: ../../enterprise/include/functions_reporting_csv.php:607 -#: ../../enterprise/include/functions_reporting_csv.php:614 -msgid "MTBF" -msgstr "MTBF" - -#: ../../include/functions_reporting.php:3837 -#: ../../include/functions_reports.php:531 -#: ../../enterprise/include/functions_reporting_csv.php:628 -#: ../../enterprise/include/functions_reporting_csv.php:644 -#: ../../enterprise/include/functions_reporting_csv.php:651 -msgid "TTO" -msgstr "TTO" - -#: ../../include/functions_reporting.php:3840 -#: ../../include/functions_reports.php:529 -#: ../../enterprise/include/functions_reporting_csv.php:665 -#: ../../enterprise/include/functions_reporting_csv.php:682 -#: ../../enterprise/include/functions_reporting_csv.php:689 -msgid "TTRT" -msgstr "TTRT" - -#: ../../include/functions_reporting.php:3906 -#: ../../include/functions_reporting.php:3984 -#: ../../include/functions_reporting.php:6348 -msgid "Maximum" -msgstr "最大" - -#: ../../include/functions_reporting.php:3981 -#: ../../include/functions_reporting.php:4126 -#: ../../include/functions_reporting.php:4267 -msgid "Lapse" -msgstr "経過" - -#: ../../include/functions_reporting.php:4050 -#: ../../include/functions_reporting.php:4129 -#: ../../include/functions_reporting.php:6345 -msgid "Minimum" -msgstr "最小" - -#: ../../include/functions_reporting.php:4192 -#: ../../include/functions_reporting.php:4270 -msgid "Average" -msgstr "平均" - -#: ../../include/functions_reporting.php:4420 -#: ../../enterprise/godmode/reporting/mysql_builder.php:142 -#: ../../enterprise/include/functions_reporting_csv.php:700 -msgid "SQL" -msgstr "SQL" - -#: ../../include/functions_reporting.php:4496 +#: ../../include/class/ConsoleSupervisor.php:836 +#, php-format msgid "" -"Illegal query: Due security restrictions, there are some tokens or words you " -"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." +"Directory %s is not writable. Please, configure corresponding permissions." +msgstr "%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。" + +#: ../../include/class/ConsoleSupervisor.php:856 +msgid "There are too many files in attachment directory" +msgstr "添付ファイルディレクトリに多くのファイルがあります" + +#: ../../include/class/ConsoleSupervisor.php:858 +#, php-format +msgid "" +"There are more than %d files in attachment, consider cleaning up attachment " +"directory manually." msgstr "" -"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, password, pass, insert, " -"update といったいくつかのトークンや単語は利用できません。" +"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリを手動で整理することを検討してください。" -#: ../../include/functions_reporting.php:5390 -#: ../../include/functions_reporting.php:5633 -#: ../../include/functions_reports.php:600 -#: ../../enterprise/include/functions_reporting.php:1018 -#: ../../enterprise/include/functions_reporting_csv.php:258 -msgid "Availability" -msgstr "可用性" +#: ../../include/class/ConsoleSupervisor.php:890 +msgid "Remote configuration directory is not readable" +msgstr "リモート設定ディレクトリが読めません" -#: ../../include/functions_reporting.php:5501 -msgid "No Address" -msgstr "アドレスがありません" - -#: ../../include/functions_reporting.php:6020 -#: ../../include/functions_reporting_html.php:2238 -#: ../../include/functions_reports.php:578 -#: ../../enterprise/include/functions_reporting_csv.php:845 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:861 -#: ../../enterprise/include/functions_reporting_csv.php:879 -#: ../../enterprise/include/functions_reporting_pdf.php:363 -msgid "Increment" -msgstr "増分" - -#: ../../include/functions_reporting.php:6074 +#: ../../include/class/ConsoleSupervisor.php:892 +#, php-format msgid "" -"The monitor have no data in this range of dates or monitor type is not " -"numeric" -msgstr "この日付範囲にデータが無いか、数値ではないタイプの監視項目です。" +"Remote configuration directory %s is not readable. Please, adjust " +"configuration." +msgstr "リモート設定ディレクトリ %s が読めません。設定を調整してください。" -#: ../../include/functions_reporting.php:6096 -msgid "The monitor type is not numeric" -msgstr "監視タイプは数値ではありません。" +#: ../../include/class/ConsoleSupervisor.php:909 +msgid "Remote configuration directory is not writable" +msgstr "リモート設定ディレクトリに書けません" -#: ../../include/functions_reporting.php:6352 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:195 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:278 -msgid "Rate" -msgstr "率" - -#: ../../include/functions_reporting.php:6411 -#: ../../include/functions_reporting.php:6560 -#: ../../include/functions_reports.php:499 -msgid "Simple graph" -msgstr "単一グラフ" - -#: ../../include/functions_reporting.php:7016 -msgid "Maximum of events shown" -msgstr "最大表示イベント" - -#: ../../include/functions_reporting.php:7656 -#: ../../include/functions_reporting.php:7693 -msgid "Server health" -msgstr "サーバの正常性" - -#: ../../include/functions_reporting.php:7656 +#: ../../include/class/ConsoleSupervisor.php:911 #, php-format -msgid "%d Downed servers" -msgstr "停止サーバ数 %d" - -#: ../../include/functions_reporting.php:7664 -#: ../../include/functions_reporting.php:7696 -msgid "Monitor health" -msgstr "モニタ項目の正常性" - -#: ../../include/functions_reporting.php:7664 -#, php-format -msgid "%d Not Normal monitors" -msgstr "非正常数 %d" - -#: ../../include/functions_reporting.php:7666 -#: ../../include/functions_reporting.php:7697 -msgid "of monitors up" -msgstr "のモニタ項目が正常です。" - -#: ../../include/functions_reporting.php:7672 -#: ../../include/functions_reporting.php:7699 -msgid "Module sanity" -msgstr "モジュール" - -#: ../../include/functions_reporting.php:7672 -#, php-format -msgid "%d Not inited monitors" -msgstr "未初期化数 %d" - -#: ../../include/functions_reporting.php:7674 -#: ../../include/functions_reporting.php:7700 -msgid "of total modules inited" -msgstr "のモジュールが初期化済みです。" - -#: ../../include/functions_reporting.php:7680 -#: ../../include/functions_reporting.php:7702 -#: ../../include/functions_reporting_html.php:2866 -msgid "Alert level" -msgstr "アラートレベル" - -#: ../../include/functions_reporting.php:7680 -#: ../../include/functions_reporting.php:8704 -#: ../../include/functions_reporting.php:8713 -#, php-format -msgid "%d Fired alerts" -msgstr "アラート発報数 %d" - -#: ../../include/functions_reporting.php:7682 -#: ../../include/functions_reporting.php:7703 -msgid "of defined alerts not fired" -msgstr "の定義済みアラートが未発生です。" - -#: ../../include/functions_reporting.php:7740 -#: ../../enterprise/include/functions_reporting_csv.php:477 -msgid "Defined alerts" -msgstr "定義済みアラート" - -#: ../../include/functions_reporting.php:7753 -#: ../../include/functions_reporting.php:7774 -#: ../../include/functions_graph.php:2589 ../../operation/tree.php:298 -#: ../../operation/tree.php:299 ../../operation/tree.php:300 -#: ../../enterprise/dashboard/widgets/tree_view.php:210 -#: ../../enterprise/dashboard/widgets/tree_view.php:211 -#: ../../enterprise/dashboard/widgets/tree_view.php:212 -#: ../../enterprise/include/functions_reporting_csv.php:478 -msgid "Fired alerts" -msgstr "発生したアラート" - -#: ../../include/functions_reporting.php:7762 -msgid "Defined and fired alerts" -msgstr "定義済・発報アラート" - -#: ../../include/functions_reporting.php:7821 -#: ../../operation/events/sound_events.php:84 -msgid "Monitor critical" -msgstr "障害状態" - -#: ../../include/functions_reporting.php:7825 -#: ../../operation/events/sound_events.php:86 -msgid "Monitor warning" -msgstr "警告状態" - -#: ../../include/functions_reporting.php:7832 -msgid "Monitor normal" -msgstr "正常状態" - -#: ../../include/functions_reporting.php:7836 -#: ../../operation/events/sound_events.php:85 -msgid "Monitor unknown" -msgstr "不明状態" - -#: ../../include/functions_reporting.php:7843 -msgid "Monitor not init" -msgstr "未初期化状態" - -#: ../../include/functions_reporting.php:7867 -#: ../../include/functions_reporting.php:7878 -msgid "Monitors by status" -msgstr "状態ごとの監視項目" - -#: ../../include/functions_reporting.php:7925 -#: ../../include/functions_reporting_html.php:3584 -#: ../../enterprise/dashboard/widgets/tactical.php:32 -msgid "Monitor checks" -msgstr "モニタ項目" - -#: ../../include/functions_reporting.php:7943 -#: ../../include/functions_reporting_html.php:3589 -msgid "Total agents and monitors" -msgstr "全エージェントと監視項目" - -#: ../../include/functions_reporting.php:7966 -msgid "Defined users" -msgstr "定義済ユーザ" - -#: ../../include/functions_reporting.php:8604 -msgid "Agent without data" -msgstr "データの無いエージェント" - -#: ../../include/functions_reporting.php:8643 -#: ../../include/functions_agents.php:2229 -#: ../../include/functions_agents.php:2254 -#: ../../include/functions_agents.php:2279 -msgid "At least one module in CRITICAL status" -msgstr "一つ以上のモジュールが致命的な状態です。" - -#: ../../include/functions_reporting.php:8647 -#: ../../include/functions_agents.php:2233 -#: ../../include/functions_agents.php:2258 -#: ../../include/functions_agents.php:2283 -msgid "At least one module in WARNING status" -msgstr "一つ以上のモジュールが警告状態です。" - -#: ../../include/functions_reporting.php:8651 -#: ../../include/functions_agents.php:2237 -#: ../../include/functions_agents.php:2262 -#: ../../include/functions_agents.php:2287 -msgid "At least one module is in UKNOWN status" -msgstr "一つ以上のモジュールが不明な状態です。" - -#: ../../include/functions_reporting.php:8655 -#: ../../include/functions_agents.php:2241 -#: ../../include/functions_agents.php:2266 -#: ../../include/functions_agents.php:2291 -msgid "All Monitors OK" -msgstr "全モニタ項目が正常" - -#: ../../include/functions_reporting.php:8691 -#: ../../include/functions_reporting.php:8699 -#: ../../enterprise/operation/agentes/tag_view.php:904 -#, php-format -msgid "%d Total modules" -msgstr "全モジュール数 %d" - -#: ../../include/functions_reporting.php:8692 -#: ../../enterprise/operation/agentes/tag_view.php:905 -#, php-format -msgid "%d Modules in normal status" -msgstr "%d モジュールが正常状態" - -#: ../../include/functions_reporting.php:8693 -#: ../../enterprise/operation/agentes/tag_view.php:906 -#, php-format -msgid "%d Modules in critical status" -msgstr "%d モジュールが障害状態" - -#: ../../include/functions_reporting.php:8694 -#: ../../enterprise/operation/agentes/tag_view.php:907 -#, php-format -msgid "%d Modules in warning status" -msgstr "%d モジュールが警告状態" - -#: ../../include/functions_reporting.php:8695 -#: ../../enterprise/operation/agentes/tag_view.php:908 -#, php-format -msgid "%d Modules in unknown status" -msgstr "%d モジュールが不明状態" - -#: ../../include/functions_reporting.php:8696 -#: ../../enterprise/operation/agentes/tag_view.php:909 -#, php-format -msgid "%d Modules in not init status" -msgstr "%d モジュールが未初期化状態" - -#: ../../include/functions_reporting.php:8700 -#, php-format -msgid "%d Normal modules" -msgstr "正常モジュール数 %d" - -#: ../../include/functions_reporting.php:8701 -#, php-format -msgid "%d Critical modules" -msgstr "障害モジュール数 %d" - -#: ../../include/functions_reporting.php:8702 -#, php-format -msgid "%d Warning modules" -msgstr "警告モジュール数 %d" - -#: ../../include/functions_reporting.php:8703 -#, php-format -msgid "%d Unknown modules" -msgstr "不明モジュール数 %d" - -#: ../../include/functions_reporting.php:8707 -#, php-format -msgid "%d Total agents" -msgstr "全エージェント数 %d" - -#: ../../include/functions_reporting.php:8708 -#, php-format -msgid "%d Normal agents" -msgstr "正常エージェント数 %d" - -#: ../../include/functions_reporting.php:8709 -#, php-format -msgid "%d Critical agents" -msgstr "障害エージェント数 %d" - -#: ../../include/functions_reporting.php:8710 -#, php-format -msgid "%d Warning agents" -msgstr "警告エージェント数 %d" - -#: ../../include/functions_reporting.php:8711 -#, php-format -msgid "%d Unknown agents" -msgstr "不明エージェント数 %d" - -#: ../../include/functions_reporting.php:8712 -#, php-format -msgid "%d not init agents" -msgstr "%d 未初期化エージェント" - -#: ../../include/functions_reporting.php:10414 -msgid "Total running modules" -msgstr "全実行中モジュール数" - -#: ../../include/functions_reporting.php:10417 -#: ../../include/functions_reporting.php:10433 -#: ../../include/functions_reporting.php:10449 -#: ../../include/functions_reporting.php:10472 -#: ../../include/functions_reporting.php:10491 -#: ../../include/functions_reporting.php:10503 -#: ../../include/functions_reporting.php:10515 -#: ../../include/functions_reporting.php:10531 -msgid "Ratio" -msgstr "比率" - -#: ../../include/functions_reporting.php:10417 -#: ../../include/functions_reporting.php:10433 -#: ../../include/functions_reporting.php:10449 -#: ../../include/functions_reporting.php:10472 -#: ../../include/functions_reporting.php:10491 -#: ../../include/functions_reporting.php:10503 -#: ../../include/functions_reporting.php:10515 -#: ../../include/functions_reporting.php:10531 -msgid "Modules by second" -msgstr "秒ごとのモジュール" - -#: ../../include/functions_reporting.php:10429 -msgid "Local modules" -msgstr "ローカルモジュール数" - -#: ../../include/functions_reporting.php:10440 -msgid "Remote modules" -msgstr "リモートモジュール数" - -#: ../../include/functions_reporting.php:10464 -msgid "Network modules" -msgstr "ネットワークモジュール" - -#: ../../include/functions_reporting.php:10487 -msgid "Plugin modules" -msgstr "プラグインモジュール" - -#: ../../include/functions_reporting.php:10499 -msgid "Prediction modules" -msgstr "予測モジュール" - -#: ../../include/functions_reporting.php:10511 -msgid "WMI modules" -msgstr "WMIモジュール" - -#: ../../include/functions_reporting.php:10523 -msgid "Web modules" -msgstr "Webモジュール" - -#: ../../include/functions_reporting.php:10585 -#: ../../enterprise/dashboard/widgets/tactical.php:39 -msgid "Server performance" -msgstr "サーバパフォーマンス" - -#: ../../include/functions_reporting.php:10667 -#: ../../enterprise/include/functions_reporting.php:5011 -msgid "Weekly:" -msgstr "週次:" - -#: ../../include/functions_reporting.php:10701 -#: ../../enterprise/include/functions_reporting.php:5045 -msgid "Monthly:" -msgstr "月次:" - -#: ../../include/functions_reporting.php:10702 -#: ../../enterprise/include/functions_reporting.php:5046 -msgid "From day" -msgstr "開始日" - -#: ../../include/functions_reporting.php:10703 -#: ../../enterprise/include/functions_reporting.php:5047 -msgid "To day" -msgstr "終了日" - -#: ../../include/functions_agents.php:690 msgid "" -"There was an error copying the agent configuration, the copy has been " -"cancelled" -msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。" +"Remote configuration directory %s is not writable. Please, adjust " +"configuration." +msgstr "リモート設定ディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/functions_agents.php:2225 -#: ../../include/functions_agents.php:2250 -#: ../../include/functions_agents.php:2275 -msgid "No Monitors" -msgstr "モニタ項目なし" +#: ../../include/class/ConsoleSupervisor.php:927 +msgid "Remote collections directory is not writable" +msgstr "リモートコレクションディレクトリに書き込めません" -#: ../../include/functions_alerts.php:401 -#: ../../enterprise/include/functions_policies.php:456 -#: ../../enterprise/include/functions_policies.php:471 -msgid "copy" -msgstr "コピー" - -#: ../../include/functions_alerts.php:567 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:114 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:112 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:113 -msgid "Regular expression" -msgstr "正規表現" - -#: ../../include/functions_alerts.php:568 -msgid "Max and min" -msgstr "最大および最小" - -#: ../../include/functions_alerts.php:571 -msgid "Equal to" -msgstr "同じ値" - -#: ../../include/functions_alerts.php:572 -msgid "Not equal to" -msgstr "異なる値" - -#: ../../include/functions_alerts.php:575 -#: ../../enterprise/operation/agentes/wux_console_view.php:272 -#: ../../enterprise/operation/agentes/wux_console_view.php:276 -msgid "Unknown status" -msgstr "不明状態" - -#: ../../include/functions_alerts.php:576 -msgid "On Change" -msgstr "変化発生" - -#: ../../include/functions_alerts.php:970 -#: ../../include/functions_network_components.php:507 -#: ../../enterprise/include/functions_local_components.php:284 -msgid "Copy of" -msgstr "複製" - -#: ../../include/functions_alerts.php:1401 -msgid "No actions defined" -msgstr "アクションが定義されていません" - -#: ../../include/functions_api.php:78 -msgid "No set or get or help operation." -msgstr "設定、参照、ヘルプの操作がありません。" - -#: ../../include/functions_api.php:82 -msgid "This operation does not exist." -msgstr "この操作は存在しません。" - -#: ../../include/functions_api.php:86 -msgid "Id does not exist in BD." -msgstr "ID が存在しません。" - -#: ../../include/functions_api.php:977 ../../include/functions_api.php:1037 -msgid "Does not exist agent with this name." -msgstr "この名前のエージェントが存在しません。" - -#: ../../include/functions_api.php:979 ../../include/functions_api.php:1039 -msgid "Does not exist module with this name." -msgstr "この名前のモジュールがありません。" - -#: ../../include/functions_api.php:1516 ../../include/functions_api.php:6477 -msgid "Correct Delete" -msgstr "削除しました。" - -#: ../../include/functions_api.php:2508 -msgid "Error in creation network module. Agent name doesn't exist." -msgstr "ネットワークモジュール作成エラー。エージェント名が存在しません。" - -#: ../../include/functions_api.php:2514 +#: ../../include/class/ConsoleSupervisor.php:929 +#, php-format msgid "" -"Error in creation network module. Id_module_type is not correct for network " -"modules." -msgstr "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が不正です。" +"Collections directory %s is not writable. Please, adjust configuration." +msgstr "コレクションディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/functions_api.php:2569 -msgid "Error in creation network module." -msgstr "ネットワークモジュールの作成に失敗しました。" +#: ../../include/class/ConsoleSupervisor.php:945 +msgid "Remote md5 directory is not writable" +msgstr "リモート md5 ディレクトリに書き込めません" -#: ../../include/functions_api.php:2602 -msgid "Error updating network module. Module name cannot be left blank." -msgstr "ネットワークモジュール更新エラー。モジュール名が指定されていません。" +#: ../../include/class/ConsoleSupervisor.php:947 +#, php-format +msgid "MD5 directory %s is not writable. Please, adjust configuration." +msgstr "MDS ディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/functions_api.php:2610 -msgid "Error updating network module. Id_module doesn't exist." -msgstr "ネットワークモジュール更新エラー。id_module が存在しません。" +#: ../../include/class/ConsoleSupervisor.php:975 +msgid "There are too much files in spool" +msgstr "スプールに多くのファイルがあります" -#: ../../include/functions_api.php:2625 -msgid "Error updating network module. Id_module exists in the new agent." -msgstr "ネットワークモジュール更新エラー。id_module が新規エージェントにあります。" - -#: ../../include/functions_api.php:2632 -msgid "Error updating network module. Id_agent doesn't exist." -msgstr "ネットワークモジュールの更新エラー。id_agent が存在しません。" - -#: ../../include/functions_api.php:2685 -msgid "Network module updated." -msgstr "ネットワークモジュールを更新しました。" - -#: ../../include/functions_api.php:2714 -msgid "Error in creation plugin module. Id_plugin cannot be left blank." -msgstr "ラグインモジュール作成エラー。id_plugin が指定されていません。" - -#: ../../include/functions_api.php:2721 -msgid "Error in creation plugin module. Agent name doesn't exist." -msgstr "プラグインモジュール作成エラー。エージェント名が存在しません。" - -#: ../../include/functions_api.php:2781 -msgid "Error in creation plugin module." -msgstr "プラグインモジュール作成エラー。" - -#: ../../include/functions_api.php:2812 -msgid "Error updating plugin module. Id_module cannot be left blank." -msgstr "プラグインモジュール更新エラー。id_module が指定されていません。" - -#: ../../include/functions_api.php:2819 -msgid "Error updating plugin module. Id_module doesn't exist." -msgstr "プラグインモジュール更新エラー。id_module が存在しません。" - -#: ../../include/functions_api.php:2831 -msgid "Error updating plugin module. Id_module exists in the new agent." -msgstr "プラグインモジュール更新エラー。id_module が新規エージェントにあります。" - -#: ../../include/functions_api.php:2838 -msgid "Error updating plugin module. Id_agent doesn't exist." -msgstr "プラグインモジュールの更新エラー。id_agent が存在しません。" - -#: ../../include/functions_api.php:2899 -msgid "Plugin module updated." -msgstr "プラグインモジュールを更新しました。" - -#: ../../include/functions_api.php:2928 -msgid "Error in creation data module. Module_name cannot be left blank." -msgstr "データモジュール作成エラー。module_name が指定されていません。" - -#: ../../include/functions_api.php:2935 -msgid "Error in creation data module. Agent name doesn't exist." -msgstr "データモジュール作成エラー。エージェント名が存在しません。" - -#: ../../include/functions_api.php:2986 ../../include/functions_api.php:3052 -msgid "Error in creation data module." -msgstr "データモジュール作成エラー。" - -#: ../../include/functions_api.php:3020 -msgid "Error in creation synthetic module. Module_name cannot be left blank." -msgstr "統合モジュール作成エラー。モジュール名は空にできません。" - -#: ../../include/functions_api.php:3027 -msgid "Error in creation synthetic module. Agent name doesn't exist." -msgstr "統合モジュール作成エラー。エージェント名が存在しません。" - -#: ../../include/functions_api.php:3164 -msgid "Synthetic module created ID: " -msgstr "統合モジュールを作成しました。ID: " - -#: ../../include/functions_api.php:3195 -msgid "Error updating data module. Id_module cannot be left blank." -msgstr "データモジュール更新エラー。id_module が指定されていません。" - -#: ../../include/functions_api.php:3202 -msgid "Error updating data module. Id_module doesn't exist." -msgstr "データモジュール更新エラー。id_moduleが存在しません。" - -#: ../../include/functions_api.php:3214 -msgid "Error updating data module. Id_module exists in the new agent." -msgstr "データモジュール更新エラー。id_module が新規エージェントにあります。" - -#: ../../include/functions_api.php:3221 -msgid "Error updating data module. Id_agent doesn't exist." -msgstr "データモジュールの更新エラー。id_agent が存在しません。" - -#: ../../include/functions_api.php:3269 -msgid "Data module updated." -msgstr "データモジュールを更新しました。" - -#: ../../include/functions_api.php:3306 -msgid "Error in creation SNMP module. Module_name cannot be left blank." -msgstr "SNMPモジュール作成エラー。module_name が指定されていません。" - -#: ../../include/functions_api.php:3311 +#: ../../include/class/ConsoleSupervisor.php:977 +#, php-format msgid "" -"Error in creation SNMP module. Invalid id_module_type for a SNMP module." -msgstr "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。" +"There are more than %d files in %s. Consider checking DataServer performance" +msgstr "%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してください。" -#: ../../include/functions_api.php:3318 -msgid "Error in creation SNMP module. Agent name doesn't exist." -msgstr "SNMPモジュール作成エラー。エージェント名が存在しません。" +#: ../../include/class/ConsoleSupervisor.php:998 +msgid "There are too many BADXML files in spool" +msgstr "スプールに BADXML ファイルが大量にあります" -#: ../../include/functions_api.php:3333 ../../include/functions_api.php:3496 -#: ../../include/functions_api.php:5956 +#: ../../include/class/ConsoleSupervisor.php:1000 +#, php-format msgid "" -"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または 'DES' を設定してください。 " +"There are more than %d files in %s. Consider checking software agents." +msgstr "%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してください。" -#: ../../include/functions_api.php:3338 ../../include/functions_api.php:3505 -#: ../../include/functions_api.php:5961 +#: ../../include/class/ConsoleSupervisor.php:1081 +#, php-format +msgid "%s (%s) is lacking performance." +msgstr "%s (%s) はパフォーマンスが低下しています。" + +#: ../../include/class/ConsoleSupervisor.php:1148 +msgid "No servers available." +msgstr "サーバがありません。" + +#: ../../include/class/ConsoleSupervisor.php:1149 msgid "" -"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +"There are no servers registered in this console. Please, check installation " +"guide." +msgstr "コンソールに登録されたサーバがありません。インストールガイドを確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:1171 +#, php-format +msgid "%s (%s) has crashed." +msgstr "%s (%s) がクラッシュしました。" + +#: ../../include/class/ConsoleSupervisor.php:1177 +#, php-format +msgid "%s (%s) has crashed, please check log files." +msgstr "%s (%s) がクラッシュしました。ログファイルを確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:1184 +#, php-format +msgid "%s (%s) is not running." +msgstr "%s (%s) が動作していません。" + +#: ../../include/class/ConsoleSupervisor.php:1189 +#, php-format +msgid "" +"%s (%s) is not running. Please, check configuration file or remove this " +"server from server list." +msgstr "%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から削除してください。" + +#: ../../include/class/ConsoleSupervisor.php:1239 +msgid "No master servers found." +msgstr "マスターサーバがありません。" + +#: ../../include/class/ConsoleSupervisor.php:1240 +msgid "" +"At least one server must be defined to run as master. Please, check " +"documentation." +msgstr "少なくとも一つのサーバがマスターとして動作するように定義されている必要があります。ドキュメントを確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:1291 +msgid "PHP safe mode is enabled. Some features may not work properly" +msgstr "PHP safe モードが有効です。いくつかの機能は正しく動作しません。" + +#: ../../include/class/ConsoleSupervisor.php:1292 +msgid "" +"To disable it, go to your PHP configuration file (php.ini) and put safe_mode " +"= Off (Do not forget to restart apache process after changes)" msgstr "" -"SNMPモジュール作成エラー。snmp3_sec_level がありません。 'authNoPriv'、'authPriv'、noAuthNoPriv' " -"のいずれかを設定してください。 " +"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してください。(変更後は apache " +"プロセスの再起動を忘れないようにしてください)" -#: ../../include/functions_api.php:3343 ../../include/functions_api.php:3511 -#: ../../include/functions_api.php:5966 -msgid "" -"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または 'SHA' を設定してください。 " - -#: ../../include/functions_api.php:3427 -msgid "Error in creation SNMP module." -msgstr "SNMPモジュール作成エラー。" - -#: ../../include/functions_api.php:3460 -msgid "Error updating SNMP module. Id_module cannot be left blank." -msgstr "SNMPモジュール更新エラー。id_module が指定されていません。" - -#: ../../include/functions_api.php:3467 -msgid "Error updating SNMP module. Id_module doesn't exist." -msgstr "SNMPモジュール更新エラー。id_module が存在しません。" - -#: ../../include/functions_api.php:3479 -msgid "Error updating SNMP module. Id_module exists in the new agent." -msgstr "SNMPモジュール更新エラー。id_moduleが新規エージェントにあります。" - -#: ../../include/functions_api.php:3486 -msgid "Error updating snmp module. Id_agent doesn't exist." -msgstr "snmp モジュールの更新エラー。id_agent が存在しません。" - -#: ../../include/functions_api.php:3599 -msgid "SNMP module updated." -msgstr "SNMPモジュールを更新しました。" - -#: ../../include/functions_api.php:3627 -msgid "" -"Error creating network component. Network component name cannot be left " -"blank." -msgstr "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定されていません。" - -#: ../../include/functions_api.php:3632 -msgid "" -"Error creating network component. Incorrect value for Network component type " -"field." -msgstr "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正です。" - -#: ../../include/functions_api.php:3637 -msgid "" -"Error creating network component. Network component group cannot be left " -"blank." -msgstr "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指定されていません。" - -#: ../../include/functions_api.php:3673 -msgid "" -"Error creating network component. This network component already exists." -msgstr "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在します。" - -#: ../../include/functions_api.php:3712 -msgid "" -"Error creating plugin component. Plugin component name cannot be left blank." -msgstr "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されていません。" - -#: ../../include/functions_api.php:3717 -msgid "Error creating plugin component. Incorrect value for Id plugin." -msgstr "プラグインコンポーネント作成エラー。プラグイン ID が不正です。" - -#: ../../include/functions_api.php:3722 -msgid "" -"Error creating plugin component. Plugin component group cannot be left blank." -msgstr "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定されていません。" - -#: ../../include/functions_api.php:3762 -msgid "" -"Error creating plugin component. This plugin component already exists." -msgstr "プラグインコンポーネント作成エラー。プラグインコンポーネントがすでに存在します。" - -#: ../../include/functions_api.php:3800 -msgid "" -"Error creating SNMP component. SNMP component name cannot be left blank." -msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネント名が指定されていません。" - -#: ../../include/functions_api.php:3805 -msgid "" -"Error creating SNMP component. Incorrect value for Snmp component type field." -msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントタイプが不正です。" - -#: ../../include/functions_api.php:3810 -msgid "" -"Error creating SNMP component. Snmp component group cannot be left blank." -msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていません。" - -#: ../../include/functions_api.php:3822 -msgid "" -"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " -"'AES' or 'DES'. " -msgstr "" -"SNMPコンポーネント作成エラー。snmp3_priv_methd が存在しません。'AES' または 'DES' を設定してください。 " - -#: ../../include/functions_api.php:3831 -msgid "" -"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"SNMPコンポーネント作成エラー。snmp3_sec_level " -"が存在しません。'authNoPriv'、'authPriv'、'noAuthNoPriv' のいずれかを設定してください。 " - -#: ../../include/functions_api.php:3837 -msgid "" -"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " -"'MD5' or 'SHA'. " -msgstr "" -"SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' または 'SHA' を設定してください。 " - -#: ../../include/functions_api.php:3912 -msgid "Error creating SNMP component. This SNMP component already exists." -msgstr "SNMPコンポーネント作成エラー。このSNMPコンポーネントはすでに存在します。" - -#: ../../include/functions_api.php:3949 -msgid "" -"Error creating local component. Local component name cannot be left blank." -msgstr "ローカルコンポーネント作成エラー。ローカルコンポーネント名が指定されていません。" - -#: ../../include/functions_api.php:3955 -msgid "" -"Error creating local component. Local component group cannot be left blank." -msgstr "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されていません。" - -#: ../../include/functions_api.php:3979 -msgid "Error creating local component." -msgstr "ローカルコンポーネント作成エラー。" - -#: ../../include/functions_api.php:3985 -msgid "Error creating local component. This local component already exists." -msgstr "ローカルコンポーネント作成エラー。このローカルコンポーネントはすでに存在します。" - -#: ../../include/functions_api.php:4018 -msgid "" -"Error getting module value from all agents. Module name cannot be left blank." -msgstr "全エージェントからのモジュール値取得エラー。モジュール名が指定されていません。" - -#: ../../include/functions_api.php:4026 -msgid "" -"Error getting module value from all agents. Module name doesn't exist." -msgstr "全エージェントからのモジュール値取得エラー。モジュール名が存在しません。" - -#: ../../include/functions_api.php:4071 -msgid "Error creating alert template. Template name cannot be left blank." -msgstr "アラートテンプレート作成エラー。テンプレート名が指定されていません。" - -#: ../../include/functions_api.php:4143 -msgid "Error creating alert template." -msgstr "アラートテンプレート作成エラー。" - -#: ../../include/functions_api.php:4174 -msgid "Error updating alert template. Id_template cannot be left blank." -msgstr "アラートテンプレート更新エラー。id_templateが指定されていません。" - -#: ../../include/functions_api.php:4182 -msgid "Error updating alert template. Id_template doesn't exist." -msgstr "アラートテンプレート更新エラー。id_templateが存在しません。" - -#: ../../include/functions_api.php:4208 -msgid "Error updating alert template." -msgstr "アラートテンプレート更新エラー。" - -#: ../../include/functions_api.php:4213 -msgid "Correct updating of alert template" -msgstr "アラートテンプレートの更新内容を修正してください" - -#: ../../include/functions_api.php:4237 -msgid "Error deleting alert template. Id_template cannot be left blank." -msgstr "アラートテンプレート削除エラー。id_templateが指定されていません。" - -#: ../../include/functions_api.php:4246 -msgid "Error deleting alert template." -msgstr "アラートテンプレート削除エラー。" - -#: ../../include/functions_api.php:4250 -msgid "Correct deleting of alert template." -msgstr "アラートテンプレートの削除内容を修正してください" - -#: ../../include/functions_api.php:4287 -msgid "Error getting all alert templates." -msgstr "全アラートテンプレート取得エラー。" - -#: ../../include/functions_api.php:4319 -msgid "Error getting alert template. Id_template doesn't exist." -msgstr "アラートテンプレート取得エラー。id_templateが存在しません。" - -#: ../../include/functions_api.php:4336 -msgid "Error getting alert template." -msgstr "アラートテンプレート取得エラー。" - -#: ../../include/functions_api.php:4375 -msgid "Error getting module groups." -msgstr "モジュールグループ取得エラー。" - -#: ../../include/functions_api.php:4420 -msgid "Error getting plugins." -msgstr "プラグイン取得エラー。" - -#: ../../include/functions_api.php:4443 -msgid "Error creating module from network component. Agent doesn't exist." -msgstr "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しません。" - -#: ../../include/functions_api.php:4450 -msgid "" -"Error creating module from network component. Network component doesn't " -"exist." -msgstr "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネントが存在しません。" - -#: ../../include/functions_api.php:4468 -msgid "Error creating module from network component. Error creating module." -msgstr "ネットワークコンポーネントからのモジュール作成エラー。モジュール作成エラー。" - -#: ../../include/functions_api.php:4495 -msgid "Error assigning module to template. Id_template cannot be left blank." -msgstr "テンプレートへのモジュール割当エラー。id_templateが指定されていません。" - -#: ../../include/functions_api.php:4501 -msgid "Error assigning module to template. Id_module cannot be left blank." -msgstr "テンプレートへのモジュール割当エラー。id_moduleが指定されていません。" - -#: ../../include/functions_api.php:4507 -msgid "Error assigning module to template. Id_agent cannot be left blank." -msgstr "テンプレートへのモジュール割当エラー。id_agentが指定されていません。" - -#: ../../include/functions_api.php:4515 -msgid "Error assigning module to template. Id_template doensn't exists." -msgstr "テンプレートへのモジュール割当エラー。id_templateが存在しません。" - -#: ../../include/functions_api.php:4525 -msgid "Error assigning module to template. Id_agent doesn't exist." -msgstr "テンプレートへのモジュール割当エラー。id_agentが存在しません。" - -#: ../../include/functions_api.php:4532 -msgid "Error assigning module to template. Id_module doesn't exist." -msgstr "テンプレートへのモジュール割当エラー。id_moduleが存在しません。" - -#: ../../include/functions_api.php:4540 -msgid "Error assigning module to template." -msgstr "テンプレートへのモジュール割当エラー。" - -#: ../../include/functions_api.php:4566 -msgid "" -"Error deleting module template. Id_module_template cannot be left blank." -msgstr "モジュールテンプレート削除エラー。id_module_templateが指定されていません。" - -#: ../../include/functions_api.php:4573 -msgid "Error deleting module template. Id_module_template doesn't exist." -msgstr "モジュールテンプレート削除エラー。id_module_templateが存在しません。" - -#: ../../include/functions_api.php:4581 ../../include/functions_api.php:4640 -msgid "Error deleting module template." -msgstr "モジュールテンプレート削除エラー。" - -#: ../../include/functions_api.php:4584 ../../include/functions_api.php:4643 -msgid "Correct deleting of module template." -msgstr "モジュールテンプレートの削除内容を修正してください。" - -#: ../../include/functions_api.php:4720 -msgid "Error validate all alerts. Failed " -msgstr "全アラートの承諾エラー。失敗数: " - -#: ../../include/functions_api.php:4723 -msgid "Correct validating of all alerts." -msgstr "全アラートの承諾内容を修正してください。" - -#: ../../include/functions_api.php:4750 -msgid "Error validating all alert policies." -msgstr "全アラートポリシーの承諾エラー。" - -#: ../../include/functions_api.php:4808 -msgid "Error validate all policy alerts. Failed " -msgstr "全ポリシーアラートの承諾エラー。失敗数: " - -#: ../../include/functions_api.php:4811 -msgid "Correct validating of all policy alerts." -msgstr "全ポリシーアラートの承諾内容を修正してください。" - -#: ../../include/functions_api.php:4834 -msgid "Error stopping downtime. Id_downtime cannot be left blank." -msgstr "計画停止の中断エラー。id_downtimeが指定されていません。" - -#: ../../include/functions_api.php:4850 -msgid "Downtime stopped." -msgstr "計画停止を中断しました。" - -#: ../../include/functions_api.php:5165 -msgid "and this modules are doesn't exists or not applicable a this agents: " -msgstr "これらのモジュールが存在しないかまたはエージェントに適用できません : " - -#: ../../include/functions_api.php:5167 -msgid "and this agents are generate problems: " -msgstr "これらのエージェントでエラーです : " - -#: ../../include/functions_api.php:5169 -msgid "and this agents with ids are doesn't exists: " -msgstr "これらのエージェントIDは存在しません : " - -#: ../../include/functions_api.php:5196 -msgid "Error adding agent to policy. Id_policy cannot be left blank." -msgstr "ポリシーへのエージェント追加エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:5201 -msgid "Error adding agent to policy. Id_agent cannot be left blank." -msgstr "ポリシーへのエージェント追加エラー。id_agentが指定されていません。" - -#: ../../include/functions_api.php:5209 -msgid "Error adding agent to policy. Id_agent doesn't exist." -msgstr "ポリシーへのエージェント追加エラー。id_agentが存在しません。" - -#: ../../include/functions_api.php:5217 -msgid "Error adding agent to policy." -msgstr "ポリシーへのエージェント追加エラー。" - -#: ../../include/functions_api.php:5225 -msgid "Error adding agent to policy. The agent is already in the policy." -msgstr "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあります。" - -#: ../../include/functions_api.php:5260 -msgid "Error adding data module to policy. Id_policy cannot be left blank." -msgstr "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:5265 -msgid "Error adding data module to policy. Module_name cannot be left blank." -msgstr "ポリシーへのデータモジュール追加エラー。module_nameが指定されていません。" - -#: ../../include/functions_api.php:5273 -msgid "Error adding data module to policy." -msgstr "ポリシーへのデータモジュール追加エラー。" - -#: ../../include/functions_api.php:5309 -msgid "" -"Error adding data module to policy. The module is already in the policy." -msgstr "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内にあります。" - -#: ../../include/functions_api.php:5349 -msgid "Error updating data module in policy. Id_policy cannot be left blank." -msgstr "ポリシーのデータモジュール更新エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:5354 -msgid "" -"Error updating data module in policy. Id_policy_module cannot be left blank." -msgstr "ポリシーのデータモジュール更新エラー。id_policy_moduleが指定されていません。" - -#: ../../include/functions_api.php:5362 -msgid "Error updating data module in policy. Module doesn't exist." -msgstr "ポリシーのデータモジュール更新エラー。モジュールが存在しません。" - -#: ../../include/functions_api.php:5368 -msgid "" -"Error updating data module in policy. Module type is not network type." -msgstr "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイプではありません。" - -#: ../../include/functions_api.php:5397 -msgid "Data policy module updated." -msgstr "データポリシーモジュールを更新しました。" - -#: ../../include/functions_api.php:5426 -msgid "" -"Error adding network module to policy. Id_policy cannot be left blank." -msgstr "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:5432 -msgid "" -"Error adding network module to policy. Module_name cannot be left blank." -msgstr "ポリシーへのネットワークモジュール追加エラー。module_nameが指定されていません。" - -#: ../../include/functions_api.php:5438 -msgid "" -"Error adding network module to policy. Id_module_type is not correct for " -"network modules." -msgstr "ポリシーへのネットワークモジュール追加エラー。id_module_typeがネットワークモジュールとして不正です。" - -#: ../../include/functions_api.php:5448 -msgid "Error adding network module to policy." -msgstr "ポリシーへのネットワークモジュール追加エラー。" - -#: ../../include/functions_api.php:5486 -msgid "" -"Error adding network module to policy. The module is already in the policy." -msgstr "ポリシーへのネットワークモジュール追加エラー。指定したモジュールはすでにポリシー内にあります。" - -#: ../../include/functions_api.php:5524 -msgid "" -"Error updating network module in policy. Id_policy cannot be left blank." -msgstr "ポリシーのネットワークモジュール更新エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:5530 -msgid "" -"Error updating network module in policy. Id_policy_module cannot be left " -"blank." -msgstr "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていません。" - -#: ../../include/functions_api.php:5539 -msgid "Error updating network module in policy. Module doesn't exist." -msgstr "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。" - -#: ../../include/functions_api.php:5545 -msgid "" -"Error updating network module in policy. Module type is not network type." -msgstr "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークのタイプではありません。" - -#: ../../include/functions_api.php:5571 -msgid "Network policy module updated." -msgstr "ネットワークポリシーモジュールを更新しました。" - -#: ../../include/functions_api.php:5598 -msgid "Error adding plugin module to policy. Id_policy cannot be left blank." -msgstr "ポリシーへのプラグインモジュール追加エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:5603 -msgid "" -"Error adding plugin module to policy. Module_name cannot be left blank." -msgstr "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていません。" - -#: ../../include/functions_api.php:5608 -msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." -msgstr "ポリシーへのプラグインモジュール追加エラー。id_pluginが指定されていません。" - -#: ../../include/functions_api.php:5616 -msgid "Error adding plugin module to policy." -msgstr "ポリシーへのプラグインモジュール追加エラー。" - -#: ../../include/functions_api.php:5659 -msgid "" -"Error adding plugin module to policy. The module is already in the policy." -msgstr "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー内にあります。" - -#: ../../include/functions_api.php:5698 -msgid "" -"Error updating plugin module in policy. Id_policy cannot be left blank." -msgstr "ポリシーのプラグインモジュール更新エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:5704 -msgid "" -"Error updating plugin module in policy. Id_policy_module cannot be left " -"blank." -msgstr "ポリシーのプラグインモジュール更新エラー。id_policy_moduleが指定されていません。" - -#: ../../include/functions_api.php:5713 -msgid "Error updating plugin module in policy. Module doesn't exist." -msgstr "ポリシーのプラグインモジュール更新エラー。モジュールが存在しません。" - -#: ../../include/functions_api.php:5719 -msgid "" -"Error updating plugin module in policy. Module type is not network type." -msgstr "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタイプではありません。" - -#: ../../include/functions_api.php:5751 -msgid "Plugin policy module updated." -msgstr "プラグインポリシーモジュールを更新しました。" - -#: ../../include/functions_api.php:5926 -msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." -msgstr "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:5931 -msgid "Error adding SNMP module to policy. Module_name cannot be left blank." -msgstr "SNMPモジュールのポリシーへの追加エラー。module_nameが指定されていません。" - -#: ../../include/functions_api.php:5939 -msgid "Error adding SNMP module to policy." -msgstr "SNMPモジュールのポリシーへの追加エラー。" - -#: ../../include/functions_api.php:5944 -msgid "" -"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " -"modules." -msgstr "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用になっていません。" - -#: ../../include/functions_api.php:6038 -msgid "" -"Error adding SNMP module to policy. The module is already in the policy." -msgstr "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在します。" - -#: ../../include/functions_api.php:6077 -msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." -msgstr "ポリシー内のSNMPモジュール更新エラー。id_policyが指定されていません。" - -#: ../../include/functions_api.php:6082 -msgid "" -"Error updating SNMP module in policy. Id_policy_module cannot be left blank." -msgstr "ポリシー内のSNMPモジュール更新エラー。id_policy_moduleが指定されていません。" - -#: ../../include/functions_api.php:6090 -msgid "Error updating SNMP module in policy. Module doesn't exist." -msgstr "ポリシー内のSNMPモジュール更新エラー。モジュールが存在しません。" - -#: ../../include/functions_api.php:6095 -msgid "Error updating SNMP module in policy. Module type is not SNMP type." -msgstr "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありません。" - -#: ../../include/functions_api.php:6105 -msgid "" -"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to 'AES' " -"or 'DES'. " -msgstr "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' を指定してください。 " - -#: ../../include/functions_api.php:6115 -msgid "" -"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " -"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " -msgstr "" -"SNMPモジュール更新エラー。snmp3_sec_level がありません。'authNoPriv'、'authPriv'、'noAuthNoPriv' " -"のいずれかを指定してください。 " - -#: ../../include/functions_api.php:6122 -msgid "" -"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to 'MD5' " -"or 'SHA'. " -msgstr "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または 'SHA' を指定してください。 " - -#: ../../include/functions_api.php:6162 -msgid "SNMP policy module updated." -msgstr "SNMPポリシーモジュールを更新しました。" - -#: ../../include/functions_api.php:6185 -msgid "Error applying policy. Id_policy cannot be left blank." -msgstr "ポリシー適用エラー。id_policy が指定されていません。" - -#: ../../include/functions_api.php:6198 ../../include/functions_api.php:6223 -msgid "Error applying policy." -msgstr "ポリシー適用エラー。" - -#: ../../include/functions_api.php:6210 -msgid "Error applying policy. This policy is already pending to apply." -msgstr "ポリシー適用エラー。このポリシーは適用が保留されています。" - -#: ../../include/functions_api.php:6268 -msgid "Error applying all policies." -msgstr "全ポリシーの適用エラー。" - -#: ../../include/functions_api.php:6320 -msgid "Error in group creation. Group_name cannot be left blank." -msgstr "グループ作成エラー。group_name が指定されていません。" - -#: ../../include/functions_api.php:6326 -msgid "Error in group creation. Icon_name cannot be left blank." -msgstr "グループ作成エラー。icon_name が指定されていません。" - -#: ../../include/functions_api.php:6339 ../../include/functions_api.php:6515 -msgid "Error in group creation. Id_parent_group doesn't exist." -msgstr "グループ作成エラー。id_parent_group が存在しません。" - -#: ../../include/functions_api.php:6367 -msgid "Error in group creation." -msgstr "グループ作成エラー。" - -#: ../../include/functions_api.php:6503 -msgid "Error in netflow filter creation. Filter name cannot be left blank." -msgstr "Netflow フィルタ作成エラー。フィルタ名が空です。" - -#: ../../include/functions_api.php:6508 -msgid "Error in netflow filter creation. Group id cannot be left blank." -msgstr "Netflow フィルタ作成エラー。グループ ID が空です。" - -#: ../../include/functions_api.php:6521 -msgid "Error in netflow filter creation. Filter cannot be left blank." -msgstr "Netflow フィルタ作成エラー。フィルタが空です。" - -#: ../../include/functions_api.php:6526 -msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." -msgstr "Netflow フィルタ作成エラー。集約設定が空です。" - -#: ../../include/functions_api.php:6531 -msgid "Error in netflow filter creation. Output_format cannot be left blank." -msgstr "Netflow フィルタ作成エラー。出力フォーマットが空です。" - -#: ../../include/functions_api.php:6549 -msgid "Error in netflow filter creation." -msgstr "Netflow フィルタ作成エラー。" - -#: ../../include/functions_api.php:6733 -msgid "Create user." -msgstr "ユーザ作成" - -#: ../../include/functions_api.php:6772 -msgid "Error updating user. Id_user cannot be left blank." -msgstr "ユーザ更新エラー。id_user が指定されていません。" - -#: ../../include/functions_api.php:6780 -msgid "Error updating user. Id_user doesn't exist." -msgstr "ユーザ更新エラー。id_user が存在しません。" - -#: ../../include/functions_api.php:6796 -msgid "Error updating user. Password info incorrect." -msgstr "ユーザ更新エラー。パスワード情報が不正です。" - -#: ../../include/functions_api.php:6804 -msgid "Updated user." -msgstr "ユーザを更新しました。" - -#: ../../include/functions_api.php:6835 -msgid "Error enable/disable user. Id_user cannot be left blank." -msgstr "ユーザの有効化/無効化エラー。id_user は空にできません。" - -#: ../../include/functions_api.php:6842 -msgid "Error enable/disable user. Enable/disable value cannot be left blank." -msgstr "ユーザの有効化/無効化エラー。有効化/無効化の値は空にできません。" - -#: ../../include/functions_api.php:6848 -msgid "Error enable/disable user. The user doesn't exist." -msgstr "ユーザの有効化/無効化エラー。ユーザが存在しません。" - -#: ../../include/functions_api.php:6857 -msgid "Error in user enabling/disabling." -msgstr "ユーザの有効化/無効化エラー。" - -#: ../../include/functions_api.php:6862 -msgid "Enabled user." -msgstr "ユーザを有効化しました。" - -#: ../../include/functions_api.php:6866 -msgid "Disabled user." -msgstr "ユーザを無効化しました。" - -#: ../../include/functions_api.php:8330 -msgid "Delete user." -msgstr "ユーザ削除" - -#: ../../include/functions_api.php:8359 -msgid "Add user profile." -msgstr "ユーザプロファイル追加" - -#: ../../include/functions_api.php:8392 -msgid "Delete user profile." -msgstr "ユーザプロファイル削除" - -#: ../../include/functions_api.php:8490 -msgid "Correct module disable" -msgstr "モジュールを無効にしました" - -#: ../../include/functions_api.php:8493 -msgid "Error disabling module" -msgstr "モジュール無効化エラー" - -#: ../../include/functions_api.php:8519 -msgid "Correct module enable" -msgstr "モジュールを有効にしました" - -#: ../../include/functions_api.php:8522 -msgid "Error enabling module" -msgstr "モジュール有効化エラー" - -#: ../../include/functions_api.php:8554 ../../include/functions_api.php:8592 -msgid "Error alert disable" -msgstr "アラート無効化エラー" - -#: ../../include/functions_api.php:8624 ../../include/functions_api.php:8661 -msgid "Error alert enable" -msgstr "アラート有効化エラー" - -#: ../../include/functions_api.php:9217 -msgid "Error adding event comment." -msgstr "イベントコメント追加エラー" - -#: ../../include/functions_api.php:9454 -msgid "Error enable/disable agent. Id_agent cannot be left blank." -msgstr "エージェント有効化/無効化エラー。id_agent は空にできません。" - -#: ../../include/functions_api.php:9461 -msgid "" -"Error enable/disable agent. Enable/disable value cannot be left blank." -msgstr "エージェント有効化/無効化エラー。有効化/無効化は空にできません。" - -#: ../../include/functions_api.php:9467 -msgid "Error enable/disable agent. The agent doesn't exist." -msgstr "エージェント有効化/無効化エラー。エージェントが存在しません。" - -#: ../../include/functions_api.php:9478 -msgid "Error in agent enabling/disabling." -msgstr "エージェント有効化/無効化エラー" - -#: ../../include/functions_api.php:9484 -msgid "Enabled agent." -msgstr "エージェントを有効化しました" - -#: ../../include/functions_api.php:9489 -msgid "Disabled agent." -msgstr "エージェントを無効化しました" - -#: ../../include/functions_api.php:9585 -msgid "Error getting special_days." -msgstr "特別日取得エラー。" - -#: ../../include/functions_api.php:9620 -msgid "Error creating special day. Specified day already exists." -msgstr "特別日作成エラー。特別日はすでに存在します。" - -#: ../../include/functions_api.php:9625 -msgid "Error creating special day. Invalid date format." -msgstr "特別日作成エラー。日付の書式が不正です。" - -#: ../../include/functions_api.php:9637 -msgid "Error in creation special day." -msgstr "特別日作成エラー。" - -#: ../../include/functions_api.php:9677 -msgid "Error in creation service. No name" -msgstr "サービス作成エラー。名前がありません。" - -#: ../../include/functions_api.php:9691 -msgid "Error in creation service. No agent id" -msgstr "サービス作成エラー。エージェントIDがありません。" - -#: ../../include/functions_api.php:9719 -msgid "Error in creation service" -msgstr "サービス作成エラー" - -#: ../../include/functions_api.php:9744 -msgid "Error in update service. No service id" -msgstr "サービス更新エラー。サービスIDがありません。" - -#: ../../include/functions_api.php:9810 -msgid "Error in update service" -msgstr "サービス更新エラー" - -#: ../../include/functions_api.php:9838 -msgid "Error adding elements to service. No service id" -msgstr "サービスへの要素追加エラー。サービスIDがありません。" - -#: ../../include/functions_api.php:9891 -msgid "Error adding elements to service" -msgstr "サービスへの要素追加エラー" - -#: ../../include/functions_api.php:9921 -msgid "Error updating special day. Id cannot be left blank." -msgstr "特別日更新エラー。IDは空にできません。" - -#: ../../include/functions_api.php:9928 -msgid "Error updating special day. Id doesn't exist." -msgstr "特別日更新エラー。IDが存在しません。" - -#: ../../include/functions_api.php:9933 -msgid "Error updating special day. Invalid date format." -msgstr "特別日更新エラー。日付の書式が不正です。" - -#: ../../include/functions_api.php:9967 -msgid "Error deleting special day. Id cannot be left blank." -msgstr "特別日削除エラー。IDは空にできません。" - -#: ../../include/functions_api.php:9974 -msgid "Error deleting special day. Id doesn't exist." -msgstr "特別日削除エラー。IDが存在しません。" - -#: ../../include/functions_api.php:9981 -msgid "Error in deletion special day." -msgstr "特別日削除エラー。" - -#: ../../include/functions_api.php:10133 -#: ../../enterprise/meta/advanced/license_meta.php:40 -msgid "Metaconsole and all nodes license updated" -msgstr "メタコンソールと全ノードのライセンスを更新しました。" - -#: ../../include/functions_api.php:10136 -#: ../../enterprise/meta/advanced/license_meta.php:43 +#: ../../include/class/ConsoleSupervisor.php:1310 #, php-format -msgid "Metaconsole license updated but %d of %d node synchronization failed" -msgstr "メタコンソールのライセンスを更新しましたが、%d ノード(%d中)の同期に失敗しました。" +msgid "'%s' value in PHP configuration is not recommended" +msgstr "PHP 設定の '%s' の値は、お勧めしません。" -#: ../../include/functions_api.php:10140 -msgid "This function is only for metaconsole" -msgstr "この機能はメタコンソール専用です。" - -#: ../../include/functions_tags.php:602 -msgid "Click here to open a popup window with URL tag" -msgstr "URLタグのポップアップウインドウを開くにはここをクリックしてください" - -#: ../../include/functions_clippy.php:163 -#: ../../include/functions_clippy.php:168 -msgid "End wizard" -msgstr "ウィザードの終了" - -#: ../../include/functions_clippy.php:195 -msgid "Next →" -msgstr "次へ →" - -#: ../../include/functions_clippy.php:196 -msgid "← Back" -msgstr "← 戻る" - -#: ../../include/functions_clippy.php:208 -msgid "Do you want to exit the help tour?" -msgstr "ヘルプツアーを終了しますか。" - -#: ../../include/functions_pandora_networkmap.php:107 -#: ../../include/functions_pandora_networkmap.php:214 -#: ../../mobile/operation/networkmap.php:110 -#: ../../mobile/operation/networkmap.php:129 -#: ../../mobile/operation/networkmap.php:146 -#: ../../operation/agentes/networkmap.dinamic.php:190 -#: ../../enterprise/include/class/NetworkmapEnterprise.class.php:227 -#: ../../enterprise/operation/policies/networkmap.policies.php:64 -msgid "Pandora FMS" -msgstr "Pandora FMS" - -#: ../../include/functions_pandora_networkmap.php:998 +#: ../../include/class/ConsoleSupervisor.php:1314 #, php-format -msgid "Edit node %s" -msgstr "ノード編集 %s" +msgid "Recommended value is %s" +msgstr "推奨値は %s です" -#: ../../include/functions_pandora_networkmap.php:999 -msgid "Holding Area" -msgstr "保持エリア" +#: ../../include/class/ConsoleSupervisor.php:1315 +#: ../../include/class/ConsoleSupervisor.php:1339 +msgid "Unlimited" +msgstr "無制限" -#: ../../include/functions_pandora_networkmap.php:1000 -msgid "Show details and options" -msgstr "詳細とオプションの表示" - -#: ../../include/functions_pandora_networkmap.php:1001 -msgid "Add a interface link" -msgstr "インタフェースリンクを追加" - -#: ../../include/functions_pandora_networkmap.php:1002 -msgid "Set parent interface" -msgstr "親インタフェースを設定" - -#: ../../include/functions_pandora_networkmap.php:1003 -msgid "Set as children" -msgstr "子に設定" - -#: ../../include/functions_pandora_networkmap.php:1004 -msgid "Set parent" -msgstr "親を設定" - -#: ../../include/functions_pandora_networkmap.php:1005 -#: ../../include/functions_pandora_networkmap.php:1018 -msgid "Abort the action of set relationship" -msgstr "関係設定動作の中止" - -#: ../../include/functions_pandora_networkmap.php:1007 -#: ../../include/functions_pandora_networkmap.php:1793 -msgid "Add node" -msgstr "ノード追加" - -#: ../../include/functions_pandora_networkmap.php:1008 -msgid "Set center" -msgstr "中心設定" - -#: ../../include/functions_pandora_networkmap.php:1010 -msgid "Refresh Holding area" -msgstr "保持エリアの更新" - -#: ../../include/functions_pandora_networkmap.php:1011 -#: ../../include/functions_pandora_networkmap.php:1014 -msgid "Proceed" -msgstr "実行" - -#: ../../include/functions_pandora_networkmap.php:1012 +#: ../../include/class/ConsoleSupervisor.php:1316 msgid "" -"Resetting the map will delete all customizations you have done, including " -"manual relationships between elements, new items, etc." -msgstr "マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイズを削除します。" - -#: ../../include/functions_pandora_networkmap.php:1016 -msgid "Restart map" -msgstr "マップリセット" - -#: ../../include/functions_pandora_networkmap.php:1017 -msgid "Abort the interface relationship" -msgstr "インタフェース関連付けの中止" - -#: ../../include/functions_pandora_networkmap.php:1201 -#: ../../include/functions_maps.php:62 -msgid "Copy of " -msgstr "コピー: " - -#: ../../include/functions_pandora_networkmap.php:1524 -msgid "Open Minimap" -msgstr "ミニマップを開く" - -#: ../../include/functions_pandora_networkmap.php:1531 -msgid "Hide Labels" -msgstr "ラベルを隠す" - -#: ../../include/functions_pandora_networkmap.php:1621 -msgid "Edit node" -msgstr "ノード編集" - -#: ../../include/functions_pandora_networkmap.php:1632 -#: ../../enterprise/include/ajax/clustermap.php:40 -msgid "Adresses" -msgstr "アドレス" - -#: ../../include/functions_pandora_networkmap.php:1634 -msgid "OS type" -msgstr "OS 種別" - -#: ../../include/functions_pandora_networkmap.php:1639 -#: ../../include/functions_pandora_networkmap.php:1640 -#: ../../enterprise/include/ajax/clustermap.php:50 -#: ../../enterprise/include/ajax/clustermap.php:51 -msgid "Node Details" -msgstr "ノード詳細" - -#: ../../include/functions_pandora_networkmap.php:1649 -msgid "Ip" -msgstr "IP" - -#: ../../include/functions_pandora_networkmap.php:1650 -msgid "MAC" -msgstr "MAC" - -#: ../../include/functions_pandora_networkmap.php:1659 -#: ../../include/functions_pandora_networkmap.php:1660 -msgid "Interface Information (SNMP)" -msgstr "インタフェース情報 (SNMP)" - -#: ../../include/functions_pandora_networkmap.php:1667 -msgid "Shape" -msgstr "形" - -#: ../../include/functions_pandora_networkmap.php:1669 -msgid "Circle" -msgstr "円" - -#: ../../include/functions_pandora_networkmap.php:1670 -msgid "Square" -msgstr "四角" - -#: ../../include/functions_pandora_networkmap.php:1671 -msgid "Rhombus" -msgstr "ひしがた" - -#: ../../include/functions_pandora_networkmap.php:1681 -msgid "name node" -msgstr "ノード名" - -#: ../../include/functions_pandora_networkmap.php:1683 -msgid "Update node" -msgstr "ノード更新" - -#: ../../include/functions_pandora_networkmap.php:1688 -#: ../../include/functions_pandora_networkmap.php:1849 -msgid "name fictional node" -msgstr "仮想ノード名" - -#: ../../include/functions_pandora_networkmap.php:1689 -#: ../../include/functions_pandora_networkmap.php:1850 -msgid "Networkmap to link" -msgstr "リンクするネットワークマップ" - -#: ../../include/functions_pandora_networkmap.php:1695 -msgid "Update fictional node" -msgstr "仮想ノード更新" - -#: ../../include/functions_pandora_networkmap.php:1698 -#: ../../include/functions_pandora_networkmap.php:1699 -msgid "Node options" -msgstr "ノードオプション" - -#: ../../include/functions_pandora_networkmap.php:1706 -#: ../../include/functions_pandora_networkmap.php:1761 -msgid "Node source" -msgstr "ノードソース" - -#: ../../include/functions_pandora_networkmap.php:1707 -#: ../../include/functions_pandora_networkmap.php:1762 -msgid "Interface source" -msgstr "インタフェースソース" - -#: ../../include/functions_pandora_networkmap.php:1708 -#: ../../include/functions_pandora_networkmap.php:1763 -msgid "Interface Target" -msgstr "インタフェースターゲット" - -#: ../../include/functions_pandora_networkmap.php:1710 -#: ../../include/functions_pandora_networkmap.php:1764 -msgid "Node target" -msgstr "ノードターゲット" - -#: ../../include/functions_pandora_networkmap.php:1711 -msgid "E." -msgstr "E." - -#: ../../include/functions_pandora_networkmap.php:1742 -msgid "There are not relations" -msgstr "関連付がありません。" - -#: ../../include/functions_pandora_networkmap.php:1749 -#: ../../include/functions_pandora_networkmap.php:1750 -msgid "Relations" -msgstr "関連付" - -#: ../../include/functions_pandora_networkmap.php:1785 -msgid "Add interface link" -msgstr "インタフェースリンクを追加" - -#: ../../include/functions_pandora_networkmap.php:1812 -#: ../../include/functions_pandora_networkmap.php:1816 -#: ../../include/functions_pandora_networkmap.php:1817 -#: ../../include/functions_pandora_networkmap.php:1837 -#: ../../include/functions_pandora_networkmap.php:1842 -#: ../../include/functions_pandora_networkmap.php:1860 -msgid "Add agent node" -msgstr "エージェントノード追加" - -#: ../../include/functions_pandora_networkmap.php:1841 -msgid "Add agent node (filter by group)" -msgstr "エージェントノード追加 (グループによるフィルタ)" - -#: ../../include/functions_pandora_networkmap.php:1856 -msgid "Add fictional node" -msgstr "仮想ノード追加" - -#: ../../include/functions_pandora_networkmap.php:1859 -msgid "Add fictional point" -msgstr "仮想ポイント追加" - -#: ../../include/functions_treeview.php:54 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1347 -msgid "There was a problem loading module" -msgstr "モジュールの読み込みで問題が発生しました。" - -#: ../../include/functions_treeview.php:285 -#: ../../include/functions_treeview.php:292 -#: ../../include/functions_ui.php:3830 ../../include/functions_ui.php:3837 -#: ../../mobile/operation/modules.php:610 -#: ../../mobile/operation/modules.php:617 -#: ../../operation/agentes/estado_agente.php:123 -#: ../../operation/agentes/status_monitor.php:1377 -#: ../../operation/agentes/status_monitor.php:1384 -#: ../../enterprise/include/functions_services.php:1658 -#: ../../enterprise/include/functions_ux_console.php:441 -#: ../../enterprise/operation/agentes/tag_view.php:723 -#: ../../enterprise/operation/agentes/tag_view.php:730 -#: ../../enterprise/operation/agentes/ux_console_view.php:116 -#: ../../enterprise/operation/agentes/ux_console_view.php:285 -#: ../../enterprise/operation/agentes/ux_console_view.php:358 -#: ../../enterprise/operation/agentes/wux_console_view.php:259 -msgid "Snapshot view" -msgstr "スナップショット表示" - -#: ../../include/functions_treeview.php:300 -#: ../../include/functions_visual_map.php:2805 -#: ../../include/functions_visual_map.php:2815 -#: ../../include/graphs/functions_flot.php:631 -#: ../../enterprise/godmode/reporting/cluster_view.php:325 -#: ../../enterprise/godmode/reporting/cluster_view.php:402 -#: ../../enterprise/godmode/reporting/cluster_list.php:240 -msgid "No data" -msgstr "データがありません" - -#: ../../include/functions_treeview.php:304 -#: ../../include/functions_reporting_html.php:70 -#: ../../include/functions_reporting_html.php:3496 -#: ../../enterprise/include/functions_reporting_pdf.php:2341 -#: ../../enterprise/include/functions_reporting_pdf.php:2379 -msgid "Last data" -msgstr "最新データ" - -#: ../../include/functions_treeview.php:319 -msgid "Go to module edition" -msgstr "モジュールの編集へ行く" - -#: ../../include/functions_treeview.php:368 -msgid "There was a problem loading alerts" -msgstr "アラートの読み込みで問題が発生しました。" - -#: ../../include/functions_treeview.php:452 -msgid "Go to alerts edition" -msgstr "アラートの編集へ行く" - -#: ../../include/functions_treeview.php:512 -#: ../../operation/agentes/agent_fields.php:28 -#: ../../operation/agentes/custom_fields.php:28 -#: ../../operation/agentes/estado_generalagente.php:46 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1057 -msgid "There was a problem loading agent" -msgstr "エージェントのロードに失敗しました。" - -#: ../../include/functions_treeview.php:577 -#: ../../operation/agentes/estado_generalagente.php:297 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1102 -msgid "Other IP addresses" -msgstr "他のIPアドレス" - -#: ../../include/functions_treeview.php:608 -#: ../../operation/agentes/estado_agente.php:546 -#: ../../operation/agentes/estado_generalagente.php:234 -#: ../../operation/gis_maps/ajax.php:332 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1149 -#: ../../enterprise/operation/agentes/tag_view.php:464 -msgid "Remote" -msgstr "リモート" - -#: ../../include/functions_treeview.php:616 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1170 -msgid "Next agent contact" -msgstr "次の接続予定" - -#: ../../include/functions_treeview.php:626 -msgid "Go to agent edition" -msgstr "エージェントの編集へ行く" - -#: ../../include/functions_treeview.php:635 -msgid "Agent data" -msgstr "エージェントデータ" - -#: ../../include/functions_treeview.php:648 -#: ../../operation/agentes/estado_generalagente.php:188 -#: ../../operation/gis_maps/ajax.php:315 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1117 -msgid "Agent Version" -msgstr "エージェントバージョン" - -#: ../../include/functions_treeview.php:665 -#: ../../operation/agentes/estado_generalagente.php:339 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1124 -msgid "Position (Long, Lat)" -msgstr "位置 (経度、緯度)" - -#: ../../include/functions_treeview.php:682 -#: ../../operation/agentes/estado_generalagente.php:367 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1164 -msgid "Timezone Offset" -msgstr "タイムゾーンオフセット" - -#: ../../include/functions_treeview.php:697 -#: ../../operation/agentes/agent_fields.php:45 -#: ../../operation/agentes/estado_generalagente.php:383 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1180 -msgid "Custom field" -msgstr "カスタムフィールド" - -#: ../../include/functions_treeview.php:708 -msgid "Advanced information" -msgstr "拡張情報" - -#: ../../include/functions_treeview.php:720 -#: ../../operation/agentes/estado_generalagente.php:285 -msgid "Agent access rate (24h)" -msgstr "エージェントアクセス頻度(過去24時間)" - -#: ../../include/functions_treeview.php:728 -#: ../../mobile/operation/agent.php:247 -#: ../../operation/agentes/estado_generalagente.php:631 -msgid "Events (24h)" -msgstr "イベント (24時間)" - -#: ../../include/functions_treeview.php:780 -#: ../../operation/agentes/estado_generalagente.php:507 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:1023 -msgid "Interface traffic" -msgstr "インタフェーストラフィック" - -#: ../../include/functions_treeview.php:802 -#: ../../operation/agentes/estado_generalagente.php:477 -msgid "Interface information" -msgstr "インタフェース情報" - -#: ../../include/functions_config.php:94 -msgid "Failed updated: User did not login." -msgstr "更新失敗: ユーザがログインしていません。" - -#: ../../include/functions_config.php:102 -msgid "Failed updated: User is not admin." -msgstr "更新失敗: ユーザは管理者ではありません。" - -#: ../../include/functions_config.php:140 -msgid "SSL cert path" -msgstr "SSL証明書パス" - -#: ../../include/functions_config.php:144 -msgid "Use cert." -msgstr "証明書利用" - -#: ../../include/functions_config.php:154 -msgid "Enable Integria incidents in Pandora Console" -msgstr "PandoraコンソールでIntegriaインシデントを有効にする" - -#: ../../include/functions_config.php:156 -msgid "Integria inventory" -msgstr "Integria インベントリ" - -#: ../../include/functions_config.php:158 -msgid "Integria API password" -msgstr "Integria API パスワード" - -#: ../../include/functions_config.php:160 -msgid "Integria URL" -msgstr "Integria URL" - -#: ../../include/functions_config.php:184 -msgid "License information" -msgstr "ライセンス情報" - -#: ../../include/functions_config.php:204 -msgid "Limit parameters bulk" -msgstr "一括処理制限" - -#: ../../include/functions_config.php:206 -msgid "Identification_reminder" -msgstr "識別リマインダ" - -#: ../../include/functions_config.php:208 -msgid "Include_agents" -msgstr "エージェントのインクルード" - -#: ../../include/functions_config.php:210 -msgid "alias_as_name" -msgstr "名前としてのエイリアス" - -#: ../../include/functions_config.php:212 -msgid "Audit log directory" -msgstr "監査ログディレクトリ" - -#: ../../include/functions_config.php:217 -#: ../../enterprise/godmode/setup/setup.php:30 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "SNMP トラップのエージェント(存在する場合)への転送" - -#: ../../include/functions_config.php:219 -#: ../../enterprise/godmode/setup/setup.php:38 -msgid "Use Enterprise ACL System" -msgstr "エンタープライズ ACL システムを利用する" - -#: ../../include/functions_config.php:221 -#: ../../enterprise/meta/include/functions_meta.php:327 -msgid "Activate Metaconsole" -msgstr "メタコンソールの有効化" - -#: ../../include/functions_config.php:223 -#: ../../enterprise/godmode/setup/setup.php:47 -msgid "Size of collection" -msgstr "コレクションのサイズ" - -#: ../../include/functions_config.php:225 -#: ../../enterprise/godmode/setup/setup.php:54 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:384 -msgid "Events replication" -msgstr "イベント複製" - -#: ../../include/functions_config.php:228 -#: ../../enterprise/godmode/setup/setup.php:63 -msgid "Replication interval" -msgstr "複製間隔" - -#: ../../include/functions_config.php:230 -#: ../../enterprise/godmode/setup/setup.php:70 -msgid "Replication limit" -msgstr "複製制限" - -#: ../../include/functions_config.php:232 -#: ../../enterprise/godmode/setup/setup.php:89 -msgid "Replication mode" -msgstr "複製モード" - -#: ../../include/functions_config.php:234 -#: ../../enterprise/godmode/setup/setup.php:138 -msgid "Show events list in local console (read only)" -msgstr "ローカルコンソールでのイベント一覧表示 (参照のみ)" - -#: ../../include/functions_config.php:237 -msgid "Replication DB engine" -msgstr "複製 DB エンジン" - -#: ../../include/functions_config.php:239 -msgid "Replication DB host" -msgstr "複製 DB ホスト" - -#: ../../include/functions_config.php:241 -msgid "Replication DB database" -msgstr "複製データベース" - -#: ../../include/functions_config.php:243 -msgid "Replication DB user" -msgstr "複製 DB ユーザ" - -#: ../../include/functions_config.php:245 -msgid "Replication DB password" -msgstr "複製 DB パスワード" - -#: ../../include/functions_config.php:247 -msgid "Replication DB port" -msgstr "複製 DB ポート" - -#: ../../include/functions_config.php:249 -msgid "Metaconsole agent cache" -msgstr "メタコンソールエージェントキャッシュ" - -#: ../../include/functions_config.php:251 -#: ../../enterprise/godmode/setup/setup.php:203 -msgid "Activate Log Collector" -msgstr "ログ収集の有効化" - -#: ../../include/functions_config.php:255 -#: ../../enterprise/godmode/setup/setup.php:147 -msgid "Inventory changes blacklist" -msgstr "インベントリブラックリスト変更" - -#: ../../include/functions_config.php:258 -#: ../../enterprise/godmode/setup/setup.php:244 -#: ../../enterprise/meta/advanced/metasetup.mail.php:84 -msgid "From dir" -msgstr "From アドレス" - -#: ../../include/functions_config.php:260 -#: ../../enterprise/godmode/setup/setup.php:247 -#: ../../enterprise/meta/advanced/metasetup.mail.php:87 -msgid "From name" -msgstr "From 名" - -#: ../../include/functions_config.php:262 -#: ../../enterprise/godmode/setup/setup.php:250 -#: ../../enterprise/meta/advanced/metasetup.mail.php:90 -msgid "Server SMTP" -msgstr "SMTP サーバ" - -#: ../../include/functions_config.php:264 -#: ../../enterprise/godmode/setup/setup.php:253 -#: ../../enterprise/meta/advanced/metasetup.mail.php:93 -msgid "Port SMTP" -msgstr "SMTP ポート" - -#: ../../include/functions_config.php:266 -#: ../../enterprise/godmode/setup/setup.php:256 -msgid "Encryption" -msgstr "暗号化" - -#: ../../include/functions_config.php:268 -#: ../../enterprise/godmode/setup/setup.php:259 -#: ../../enterprise/meta/advanced/metasetup.mail.php:96 -msgid "Email user" -msgstr "メールユーザ" - -#: ../../include/functions_config.php:270 -#: ../../enterprise/godmode/setup/setup.php:262 -#: ../../enterprise/meta/advanced/metasetup.mail.php:99 -msgid "Email password" -msgstr "メールユーザパスワード" - -#: ../../include/functions_config.php:277 -#: ../../enterprise/godmode/setup/setup.php:287 -#: ../../enterprise/meta/advanced/metasetup.password.php:78 -#: ../../enterprise/meta/include/functions_meta.php:499 -msgid "Enable password policy" -msgstr "パスワードポリシーを利用する" - -#: ../../include/functions_config.php:280 -#: ../../enterprise/godmode/setup/setup.php:292 -#: ../../enterprise/meta/advanced/metasetup.password.php:84 -#: ../../enterprise/meta/include/functions_meta.php:509 -msgid "Min. size password" -msgstr "最小パスワードサイズ" - -#: ../../include/functions_config.php:282 -#: ../../enterprise/godmode/setup/setup.php:306 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 -#: ../../enterprise/meta/include/functions_meta.php:539 -msgid "Password expiration" -msgstr "パスワードの期限切れ" - -#: ../../include/functions_config.php:284 -#: ../../enterprise/godmode/setup/setup.php:310 -#: ../../enterprise/meta/advanced/metasetup.password.php:106 -#: ../../enterprise/meta/include/functions_meta.php:549 -msgid "Force change password on first login" -msgstr "初回ログイン時にパスワードを変更する" - -#: ../../include/functions_config.php:286 -#: ../../enterprise/godmode/setup/setup.php:315 -#: ../../enterprise/meta/advanced/metasetup.password.php:112 -#: ../../enterprise/meta/include/functions_meta.php:559 -msgid "User blocked if login fails" -msgstr "ログインに失敗するとユーザをブロックします" - -#: ../../include/functions_config.php:288 -#: ../../enterprise/godmode/setup/setup.php:319 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 -#: ../../enterprise/meta/include/functions_meta.php:569 -msgid "Number of failed login attempts" -msgstr "ログイン失敗回数" - -#: ../../include/functions_config.php:290 -#: ../../enterprise/godmode/setup/setup.php:296 -#: ../../enterprise/meta/advanced/metasetup.password.php:89 -#: ../../enterprise/meta/include/functions_meta.php:519 -msgid "Password must have numbers" -msgstr "パスワードには数字を含む必要があります" - -#: ../../include/functions_config.php:292 -#: ../../enterprise/godmode/setup/setup.php:301 -#: ../../enterprise/meta/advanced/metasetup.password.php:95 -#: ../../enterprise/meta/include/functions_meta.php:529 -msgid "Password must have symbols" -msgstr "パスワードには記号を含む必要があります" - -#: ../../include/functions_config.php:294 -#: ../../enterprise/godmode/setup/setup.php:324 -#: ../../enterprise/meta/advanced/metasetup.password.php:122 -#: ../../enterprise/meta/include/functions_meta.php:486 -msgid "Apply password policy to admin users" -msgstr "管理者ユーザへパスワードポリシーを適用" - -#: ../../include/functions_config.php:296 -#: ../../enterprise/godmode/setup/setup.php:329 -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/meta/include/functions_meta.php:579 -msgid "Enable password history" -msgstr "パスワード履歴の有効化" - -#: ../../include/functions_config.php:298 -#: ../../enterprise/godmode/setup/setup.php:334 -#: ../../enterprise/meta/advanced/metasetup.password.php:134 -#: ../../enterprise/meta/include/functions_meta.php:589 -msgid "Compare previous password" -msgstr "以前のパスワードとの比較" - -#: ../../include/functions_config.php:300 -#: ../../enterprise/godmode/setup/setup.php:339 -#: ../../enterprise/meta/advanced/metasetup.setup.php:256 -#: ../../enterprise/meta/include/functions_meta.php:459 -msgid "Activate reset password" -msgstr "パスワードリセットの有効化" - -#: ../../include/functions_config.php:310 -#: ../../enterprise/godmode/setup/setup_auth.php:51 -#: ../../enterprise/godmode/setup/setup_auth.php:210 -#: ../../enterprise/godmode/setup/setup_auth.php:679 -#: ../../enterprise/meta/include/functions_meta.php:632 -msgid "Autocreate profile" -msgstr "プロファイルの自動作成" - -#: ../../include/functions_config.php:312 -#: ../../enterprise/godmode/setup/setup_auth.php:57 -#: ../../enterprise/godmode/setup/setup_auth.php:216 -#: ../../enterprise/godmode/setup/setup_auth.php:685 -#: ../../enterprise/meta/include/functions_meta.php:642 -msgid "Autocreate profile group" -msgstr "プロファイルグループの自動作成" - -#: ../../include/functions_config.php:314 -#: ../../enterprise/godmode/setup/setup_auth.php:64 -#: ../../enterprise/godmode/setup/setup_auth.php:223 -#: ../../enterprise/godmode/setup/setup_auth.php:692 -#: ../../enterprise/meta/include/functions_meta.php:652 -msgid "Autocreate profile tags" -msgstr "自動作成プロファイルタグ" - -#: ../../include/functions_config.php:316 -#: ../../enterprise/godmode/setup/setup_auth.php:801 -#: ../../enterprise/meta/include/functions_meta.php:662 -msgid "Autocreate blacklist" -msgstr "ブラックリストの自動作成" - -#: ../../include/functions_config.php:319 -#: ../../enterprise/godmode/setup/setup_auth.php:809 -#: ../../enterprise/meta/include/functions_meta.php:694 -msgid "Active directory server" -msgstr "アクティブディレクトリサーバ" - -#: ../../include/functions_config.php:321 -#: ../../enterprise/godmode/setup/setup_auth.php:815 -#: ../../enterprise/meta/include/functions_meta.php:704 -msgid "Active directory port" -msgstr "アクティブディレクトリポート" - -#: ../../include/functions_config.php:325 -#: ../../enterprise/godmode/setup/setup_auth.php:664 -#: ../../enterprise/meta/include/functions_meta.php:724 -msgid "Advanced Config AD" -msgstr "拡張 AD 設定" - -#: ../../include/functions_config.php:327 -#: ../../enterprise/godmode/setup/setup_auth.php:101 -#: ../../enterprise/meta/include/functions_meta.php:764 -msgid "Advanced Config LDAP" -msgstr "LDAP 拡張設定" - -#: ../../include/functions_config.php:329 -#: ../../enterprise/godmode/setup/setup_auth.php:828 -#: ../../enterprise/meta/include/functions_meta.php:734 -msgid "Domain" -msgstr "ドメイン" - -#: ../../include/functions_config.php:331 -#: ../../enterprise/godmode/setup/setup_auth.php:726 -#: ../../enterprise/meta/include/functions_meta.php:744 -msgid "Advanced Permisions AD" -msgstr "AD 拡張パーミッション" - -#: ../../include/functions_config.php:333 -#: ../../enterprise/godmode/setup/setup_auth.php:127 -#: ../../enterprise/meta/include/functions_meta.php:754 -msgid "Advanced Permissions LDAP" -msgstr "LDAP 拡張パーミッション" - -#: ../../include/functions_config.php:353 -#: ../../enterprise/godmode/setup/setup_auth.php:96 -#: ../../enterprise/meta/include/functions_meta.php:891 -msgid "Login user attribute" -msgstr "ログインユーザアトリビュート" - -#: ../../include/functions_config.php:355 -#: ../../enterprise/godmode/setup/setup_auth.php:89 -#: ../../enterprise/meta/include/functions_meta.php:901 -msgid "LDAP function" -msgstr "LDAP 機能" - -#: ../../include/functions_config.php:359 -#: ../../enterprise/godmode/setup/setup_auth.php:77 -#: ../../enterprise/meta/include/functions_meta.php:877 -msgid "Save Password" -msgstr "パスワードを保存" - -#: ../../include/functions_config.php:366 -#: ../../enterprise/godmode/setup/setup_auth.php:595 -msgid "MySQL host" -msgstr "MySQL ホスト" - -#: ../../include/functions_config.php:368 -#: ../../include/functions_config.php:379 -#: ../../enterprise/godmode/setup/setup_auth.php:601 -#: ../../enterprise/godmode/setup/setup_auth.php:632 -#: ../../enterprise/meta/include/functions_meta.php:923 -#: ../../enterprise/meta/include/functions_meta.php:976 -#: ../../enterprise/meta/include/functions_meta.php:1029 -msgid "MySQL port" -msgstr "MySQL ポート" - -#: ../../include/functions_config.php:370 -#: ../../include/functions_config.php:381 -#: ../../include/functions_config.php:757 -#: ../../enterprise/godmode/setup/setup_auth.php:607 -#: ../../enterprise/godmode/setup/setup_auth.php:638 -#: ../../enterprise/godmode/setup/setup_history.php:59 -#: ../../enterprise/meta/include/functions_meta.php:933 -#: ../../enterprise/meta/include/functions_meta.php:986 -#: ../../enterprise/meta/include/functions_meta.php:1039 -msgid "Database name" -msgstr "データベース名" - -#: ../../include/functions_config.php:377 -#: ../../enterprise/godmode/setup/setup_auth.php:626 -#: ../../enterprise/meta/include/functions_meta.php:1019 -msgid "Integria host" -msgstr "Integria ホスト" - -#: ../../include/functions_config.php:387 -msgid "Saml path" -msgstr "SAML パス" - -#: ../../include/functions_config.php:391 -#: ../../enterprise/meta/include/functions_meta.php:682 -msgid "Session timeout" -msgstr "セッションタイムアウト" - -#: ../../include/functions_config.php:417 -msgid "Max. days before autodisable deletion" -msgstr "自動無効化エージェントの保持日数" - -#: ../../include/functions_config.php:419 -msgid "Item limit for realtime reports)" -msgstr "リアルタイムレポートのアイテム制限" - -#: ../../include/functions_config.php:435 -msgid "Big Operatiopn Step to purge old data" -msgstr "古いデータ削除のための大きな操作ステップ" - -#: ../../include/functions_config.php:478 -#: ../../enterprise/meta/advanced/metasetup.visual.php:111 -#: ../../enterprise/meta/include/functions_meta.php:1142 -msgid "Graphic resolution (1-low, 5-high)" -msgstr "グラフ解像度 (1-低い,5-高い)" - -#: ../../include/functions_config.php:479 -#: ../../include/functions_config.php:1732 -#: ../../include/functions_netflow.php:1640 -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Bytes" -msgstr "バイト" - -#: ../../include/functions_config.php:482 -#: ../../enterprise/meta/include/functions_meta.php:1132 -msgid "Data precision for reports" -msgstr "レポートのデータ精度" - -#: ../../include/functions_config.php:493 -msgid "Show QR code header" -msgstr "QR コードヘッダー表示" - -#: ../../include/functions_config.php:506 -#: ../../enterprise/meta/include/functions_meta.php:1255 -msgid "Custom logo login" -msgstr "ログイン時のカスタムロゴ" - -#: ../../include/functions_config.php:508 -#: ../../enterprise/meta/include/functions_meta.php:1265 -msgid "Custom splash login" -msgstr "カスタムスプラッシュログイン" - -#: ../../include/functions_config.php:510 -#: ../../enterprise/meta/include/functions_meta.php:1275 -msgid "Custom title1 login" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Do not forget to restart Apache process after)" msgstr "" +"PHP 設定ファイル(php.ini)で変更もしくは、管理者に連絡してください。(設定後は apache プロセスの再起動を忘れないようにしてください)" -#: ../../include/functions_config.php:512 -#: ../../enterprise/meta/include/functions_meta.php:1285 -msgid "Custom title2 login" -msgstr "" - -#: ../../include/functions_config.php:517 -#: ../../include/functions_config.php:535 -msgid "Custom Docs url" -msgstr "カスタムドキュメントURL" - -#: ../../include/functions_config.php:519 -#: ../../include/functions_config.php:537 -msgid "Custom support url" -msgstr "カスタムサポートURL" - -#: ../../include/functions_config.php:522 -msgid "Custom logo metaconsole" -msgstr "メタコンソールカスタムロゴ" - -#: ../../include/functions_config.php:524 -msgid "Custom logo login metaconsole" -msgstr "メタコンソールログインカスタムロゴ" - -#: ../../include/functions_config.php:526 -msgid "Custom splash login metaconsole" -msgstr "カスタムスプラッシュログイン メタコンソール" - -#: ../../include/functions_config.php:528 -msgid "Custom title1 login metaconsole" -msgstr "" - -#: ../../include/functions_config.php:530 -msgid "Custom title2 login metaconsole" -msgstr "" - -#: ../../include/functions_config.php:532 -msgid "Login background metaconsole" -msgstr "メタコンソールログイン背景" - -#: ../../include/functions_config.php:542 -msgid "Default line favourite_view for the Visual Console" -msgstr "" - -#: ../../include/functions_config.php:544 -msgid "Default line menu items for the Visual Console" -msgstr "" - -#: ../../include/functions_config.php:563 -msgid "Show units in values report" -msgstr "値のレポートに単位を表示" - -#: ../../include/functions_config.php:569 -msgid "visual_animation" -msgstr "ビジュアルアニメーション" - -#: ../../include/functions_config.php:571 -msgid "Fixed graph" -msgstr "グラフの固定" - -#: ../../include/functions_config.php:577 -msgid "Paginate module" -msgstr "モジュール画面分割" - -#: ../../include/functions_config.php:583 -msgid "Shortened module graph data" -msgstr "短縮モジュールグラフデータ" - -#: ../../include/functions_config.php:589 -msgid "Default type of module charts." -msgstr "モジュールグラフのデフォルトタイプ" - -#: ../../include/functions_config.php:591 -msgid "Default type of interface charts." -msgstr "インタフェースグラフのデフォルトタイプ" - -#: ../../include/functions_config.php:593 -msgid "Default show only average or min and max" -msgstr "平均のみまたは最小と最大のみ表示のデフォルト" - -#: ../../include/functions_config.php:598 -#: ../../include/functions_config.php:1796 -#: ../../include/functions_reporting_html.php:505 -#: ../../include/functions_reporting_html.php:584 -#: ../../enterprise/include/functions_reporting.php:1662 -#: ../../enterprise/include/functions_reporting.php:1698 -#: ../../enterprise/include/functions_reporting.php:2470 -#: ../../enterprise/include/functions_reporting.php:2506 -#: ../../enterprise/include/functions_reporting.php:3247 -#: ../../enterprise/include/functions_reporting.php:3283 -#: ../../enterprise/include/functions_reporting.php:4870 -#: ../../enterprise/include/functions_reporting.php:5204 -#: ../../enterprise/include/functions_reporting_csv.php:1079 -#: ../../enterprise/include/functions_reporting_csv.php:1126 -#: ../../enterprise/include/functions_reporting_pdf.php:1409 -#: ../../enterprise/include/functions_reporting_pdf.php:1490 -#: ../../enterprise/include/functions_reporting_pdf.php:1710 -#: ../../enterprise/include/functions_reporting_pdf.php:1746 -#: ../../enterprise/include/functions_reporting_pdf.php:2149 -msgid "Fail" -msgstr "失敗" - -#: ../../include/functions_config.php:602 -msgid "Display lateral menus with left click" -msgstr "クリックでサイドメニューを表示" - -#: ../../include/functions_config.php:608 -msgid "Service item padding size" -msgstr "サービス要素の間隔" - -#: ../../include/functions_config.php:611 -msgid "Default percentil" -msgstr "デフォルトのパーセンテージ" - -#: ../../include/functions_config.php:614 -msgid "Default full scale (TIP)" -msgstr "" - -#: ../../include/functions_config.php:635 -msgid "Add the custom post process" -msgstr "カスタム保存倍率を追加" - -#: ../../include/functions_config.php:642 -msgid "Delete the custom post process" -msgstr "カスタム保存倍率を削除" - -#: ../../include/functions_config.php:691 -#: ../../enterprise/meta/include/functions_meta.php:1372 -msgid "Custom report info" -msgstr "カスタムレポート情報" - -#: ../../include/functions_config.php:739 -msgid "IP ElasticSearch server" -msgstr "ElasticSearch サーバ IP" - -#: ../../include/functions_config.php:741 -msgid "Port ElasticSearch server" -msgstr "ElasticSearch サーバポート番号" - -#: ../../include/functions_config.php:743 -#: ../../enterprise/godmode/setup/setup_log_collector.php:50 -msgid "Number of logs viewed" -msgstr "ログ表示数" - -#: ../../include/functions_config.php:745 -#: ../../enterprise/godmode/setup/setup_log_collector.php:52 -msgid "Days to purge old information" -msgstr "旧情報を削除する日数" - -#: ../../include/functions_config.php:749 -#: ../../enterprise/godmode/setup/setup_history.php:45 -msgid "Enable history database" -msgstr "ヒストリデータベースの有効化" - -#: ../../include/functions_config.php:751 -msgid "Enable history event" -msgstr "ヒストリイベントの有効化" - -#: ../../include/functions_config.php:753 -#: ../../enterprise/godmode/setup/setup_history.php:53 -msgid "Host" -msgstr "ホスト" - -#: ../../include/functions_config.php:759 -#: ../../enterprise/godmode/setup/setup_history.php:62 -msgid "Database user" -msgstr "データベースユーザ" - -#: ../../include/functions_config.php:761 -#: ../../enterprise/godmode/setup/setup_history.php:65 -msgid "Database password" -msgstr "データベースパスワード" - -#: ../../include/functions_config.php:765 -msgid "Event Days" -msgstr "イベント日数" - -#: ../../include/functions_config.php:769 -#: ../../enterprise/godmode/setup/setup_history.php:74 -msgid "Delay" -msgstr "遅延" - -#: ../../include/functions_config.php:775 -msgid "eHorus user" -msgstr "eHorus ユーザ" - -#: ../../include/functions_config.php:777 -msgid "eHorus password" -msgstr "eHorus パスワード" - -#: ../../include/functions_config.php:779 -msgid "eHorus API hostname" -msgstr "eHorus API ホスト名" - -#: ../../include/functions_config.php:781 -msgid "eHorus API port" -msgstr "eHorus API ポート" - -#: ../../include/functions_config.php:783 -msgid "eHorus request timeout" -msgstr "eHorus リクエストタイムアウト" - -#: ../../include/functions_config.php:785 -msgid "eHorus id custom field" -msgstr "eHorus id カスタムフィールド" - -#: ../../include/functions_config.php:797 +#: ../../include/class/ConsoleSupervisor.php:1334 +#: ../../include/class/ConsoleSupervisor.php:1358 +#: ../../include/class/ConsoleSupervisor.php:1382 +#: ../../include/class/ConsoleSupervisor.php:1460 #, php-format -msgid "Failed updated: the next values cannot update: %s" -msgstr "更新失敗: 次の値は更新できません: %s" +msgid "Not recommended '%s' value in PHP configuration" +msgstr "PHP 設定における値 '%s' はおすすめしません" -#: ../../include/functions_config.php:1228 -#: ../../enterprise/meta/general/login_page.php:170 -#: ../../enterprise/meta/include/process_reset_pass.php:108 -#: ../../enterprise/meta/include/reset_pass.php:97 -msgid "PANDORA FMS NEXT GENERATION" -msgstr "PANDORA FMS NEXT GENERATION" +#: ../../include/class/ConsoleSupervisor.php:1338 +#: ../../include/class/ConsoleSupervisor.php:1362 +#: ../../include/class/ConsoleSupervisor.php:1386 +#: ../../include/class/ConsoleSupervisor.php:1464 +#, php-format +msgid "Recommended value is: %s" +msgstr "推奨値: %s" -#: ../../include/functions_config.php:1232 -#: ../../enterprise/meta/general/login_page.php:178 -#: ../../enterprise/meta/include/process_reset_pass.php:116 -#: ../../enterprise/meta/include/reset_pass.php:105 -msgid "METACONSOLE" -msgstr "メタコンソール" +#: ../../include/class/ConsoleSupervisor.php:1340 +#: ../../include/class/ConsoleSupervisor.php:1364 +#: ../../include/class/ConsoleSupervisor.php:1406 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator (Dont forget restart apache process after changes)" +msgstr "" +"PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。(変更後は apache プロセスの再起動を忘れないでください)" -#: ../../include/functions_config.php:1954 +#: ../../include/class/ConsoleSupervisor.php:1363 +#: ../../include/class/ConsoleSupervisor.php:1387 +#, php-format +msgid "%s or greater" +msgstr "%s または大きい" + +#: ../../include/class/ConsoleSupervisor.php:1388 +#: ../../include/class/ConsoleSupervisor.php:1466 +msgid "" +"Please, change it on your PHP configuration file (php.ini) or contact with " +"administrator" +msgstr "PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。" + +#: ../../include/class/ConsoleSupervisor.php:1405 +msgid "Problems with disable_functions in php.ini" +msgstr "php.ini 内の disable_functions に問題があります" + +#: ../../include/class/ConsoleSupervisor.php:1406 +msgid "" +"The variable disable_functions contains functions system() or exec() in PHP " +"configuration file (php.ini)" +msgstr "" +"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() を含んでいます。" + +#: ../../include/class/ConsoleSupervisor.php:1423 +msgid "PhantomJS is not installed" +msgstr "PhantomJS がインストールされていません" + +#: ../../include/class/ConsoleSupervisor.php:1424 +msgid "" +"To be able to create images of the graphs for PDFs, please install the " +"PhantomJS extension. For that, it is necessary to follow these steps:" +msgstr "" +"PDF でグラフイメージを作成できるようにするには、PhantomJS をインストールしてください。それには、以下のステップを行う必要があります。" + +#: ../../include/class/ConsoleSupervisor.php:1441 +msgid "PHP UPDATE REQUIRED" +msgstr "PHP のアップデートが必要です" + +#: ../../include/class/ConsoleSupervisor.php:1508 +msgid "Historical database not available" +msgstr "ヒストリデータベースがありません" + +#: ../../include/class/ConsoleSupervisor.php:1509 +msgid "" +"Historical database is enabled, though not accessible with the current " +"configuration." +msgstr "ヒストリデータベースが有効ですが、現在の設定でアクセスできません。" + +#: ../../include/class/ConsoleSupervisor.php:1552 +msgid "Database maintenance problem" +msgstr "データベースメンテナンスにおける問題" + +#: ../../include/class/ConsoleSupervisor.php:1554 +#, php-format +msgid "" +"Your database hasn't been through maintenance for 48hrs. Please, check " +"documentation on how to perform this maintenance process on %s and enable it " +"as soon as possible." +msgstr "" +"データベースが 48時間メンテナンスされていません。%s " +"でこのメンテナンスプロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効化してください。" + +#: ../../include/class/ConsoleSupervisor.php:1614 +msgid "Historical database maintenance problem." +msgstr "ヒストリデータベースにおける問題" + +#: ../../include/class/ConsoleSupervisor.php:1616 +#, php-format +msgid "" +"Your historical database hasn't been through maintenance for 48hrs. Please, " +"check documentation on how to perform this maintenance process on %s and " +"enable it as soon as possible." +msgstr "" +"ヒストリデータベースが 48時間メンテナンスされていません。%s " +"でこのメンテナンスプロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効化してください。" + +#: ../../include/class/ConsoleSupervisor.php:1654 +msgid "Historical database MR mismatch" +msgstr "ヒストリデータベースの MR が一致していません" + +#: ../../include/class/ConsoleSupervisor.php:1655 +msgid "" +"Your historical database is not using the same schema as the main DB. This " +"could produce anomalies while storing historical data." +msgstr "" +"ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これにより、ヒストリデータの保存中に異常が発生する可能性があります。" + +#: ../../include/class/ConsoleSupervisor.php:1696 +msgid "Log collector cannot connect to ElasticSearch" +msgstr "ログコレクターが ElasticSearch に接続できません" + +#: ../../include/class/ConsoleSupervisor.php:1697 +msgid "ElasticSearch is not available using current configuration." +msgstr "現在の設定を利用している ElasticSearch が存在しません。" + +#: ../../include/class/ConsoleSupervisor.php:1766 +msgid "Metaconsole DB is not available." +msgstr "メタコンソール DB がありません。" + +#: ../../include/class/ConsoleSupervisor.php:1767 +msgid "Cannot connect with Metaconsole DB using current configuration." +msgstr "現在の設定でメタコンソール DB に接続できません。" + +#: ../../include/class/ConsoleSupervisor.php:1795 +msgid "Scheduled downtime running." +msgstr "計画停止実行中" + +#: ../../include/class/ConsoleSupervisor.php:1796 +msgid "" +"A scheduled downtime is running. Some monitoring data won't be available " +"while downtime is taking place." +msgstr "計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用できません。" + +#: ../../include/class/ConsoleSupervisor.php:1952 +msgid "Downtime scheduled soon." +msgstr "まもなく計画停止" + +#: ../../include/class/ConsoleSupervisor.php:1954 +#, php-format +msgid "" +"A scheduled downtime is going to be executed from %s to %s. Some monitoring " +"data won't be available while downtime is taking place." +msgstr "計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監視データは利用できません。" + +#: ../../include/class/ConsoleSupervisor.php:1984 +msgid "This instance is not registered in the Update manager section" +msgstr "このインスタンスは、アップデートマネージャに登録されていません。" + +#: ../../include/class/ConsoleSupervisor.php:1985 msgid "" "Click here to start the " @@ -23106,761 +23187,6288 @@ msgstr "" "登録処理を開始するには こちら をクリックしてください" -#: ../../include/functions_config.php:1955 -msgid "This instance is not registered in the Update manager" -msgstr "このインスタンスはアップデートマネージャに登録されていません" +#: ../../include/class/ConsoleSupervisor.php:2017 +msgid "Default password for \"Admin\" user has not been changed" +msgstr "\"admin\" ユーザのデフォルトパスワードが変更されていません" -#: ../../include/functions_config.php:1962 +#: ../../include/class/ConsoleSupervisor.php:2018 msgid "" -"Click here to start the " -"newsletter subscription process" -msgstr "" -"ニュースレターの購読を開始するには こちら をクリックしてください" +"Please, change the default password since it is a commonly reported " +"vulnerability." +msgstr "脆弱性として通知されるため、デフォルトパスワードは変更してください。" -#: ../../include/functions_config.php:1963 -msgid "Not subscribed to the newsletter" -msgstr "ニュースレターを購読していません" - -#: ../../include/functions_config.php:1974 -msgid "Default password for \"Admin\" user has not been changed." -msgstr "\"Admin\" ユーザのデフォルトパスワードが変更されていません。" - -#: ../../include/functions_config.php:1975 -msgid "" -"Please change the default password because is a common vulnerability " -"reported." -msgstr "脆弱性となるため、デフォルトのパスワードは変更してください。" - -#: ../../include/functions_config.php:1981 -msgid "You can not get updates until you renew the license." -msgstr "ライセンスを更新するまで更新は入手できません。" - -#: ../../include/functions_config.php:1982 -msgid "This license has expired." -msgstr "このライセンスは期限切れです。" - -#: ../../include/functions_config.php:1987 -msgid "" -"Please check that the web server has write rights on the " -"{HOMEDIR}/attachment directory" -msgstr "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認してください。" - -#: ../../include/functions_config.php:2000 -msgid "Remote configuration directory is not readble for the console" -msgstr "リモート設定ディレクトリがコンソールから読めません" - -#: ../../include/functions_config.php:2006 -#: ../../include/functions_config.php:2013 -msgid "Remote configuration directory is not writtable for the console" -msgstr "コンソールから、リモート設定ディレクトリに書き込めません。" - -#: ../../include/functions_config.php:2024 -msgid "" -"There are too much files in attachment directory. This is not fatal, but you " -"should consider cleaning up your attachment directory manually" -msgstr "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレクトリの手動での整理をお勧めします。" - -#: ../../include/functions_config.php:2024 -msgid "files" -msgstr "ファイル" - -#: ../../include/functions_config.php:2025 -msgid "Too much files in your tempora/attachment directory" -msgstr "attachmentディレクトリにあるファイルが多すぎます。" - -#: ../../include/functions_config.php:2042 -msgid "" -"Your database is not well maintained. Seems that it have more than 48hr " -"without a proper maintance. Please review Pandora FMS documentation about " -"how to execute this maintance process (pandora_db.pl) and enable it as soon " -"as possible" -msgstr "" -"データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンスがされていないように見受けられます。メンテナンスプロセス(pandora_d" -"b.pl)の実行に関しては Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効にしてください。" - -#: ../../include/functions_config.php:2043 -msgid "Database maintance problem" -msgstr "データベースメンテナンスにおける問題" - -#: ../../include/functions_config.php:2049 -msgid "" -"Your defined font doesnt exist or is not defined. Please check font " -"parameters in your config" -msgstr "定義したフォントが存在しないかフォントが定義されていません。フォントパラメータの設定を確認してください。" - -#: ../../include/functions_config.php:2050 -msgid "Default font doesnt exist" +#: ../../include/class/ConsoleSupervisor.php:2045 +msgid "Default font doesn't exist" msgstr "デフォルトのフォントがありません" -#: ../../include/functions_config.php:2055 -msgid "You need to restart server after altering this configuration setting." -msgstr "この設定を変更したあとは、サーバを再起動する必要があります。" - -#: ../../include/functions_config.php:2056 +#: ../../include/class/ConsoleSupervisor.php:2046 msgid "" -"Event storm protection is activated. No events will be generated during this " -"mode." -msgstr "イベントストーム保護が有効です。このモードではイベントが生成されません。" +"Your defined font doesn't exist or is not defined. Please, check font " +"parameters in your config" +msgstr "定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラメータを確認してください。" -#: ../../include/functions_config.php:2063 -msgid "" -"Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a " -"developer mode and should be disabled in a production system. This value is " -"written in the main index.php file" -msgstr "" -"この Pandora FMS は、\"develop_bypass\" " -"モードが有効になっています。これは、これは開発用のモードであるため本番システムでは無効にしてください。この設定は、メインの index.php " -"ファイルに書かれています。" - -#: ../../include/functions_config.php:2064 +#: ../../include/class/ConsoleSupervisor.php:2069 msgid "Developer mode is enabled" msgstr "開発モードが有効です" -#: ../../include/functions_config.php:2073 -msgid "Error first setup Open update" -msgstr "オープンアップデートの初期設定エラー" - -#: ../../include/functions_config.php:2079 -msgid "" -"There is a new update available. Please go to Administration:Setup:Update Manager for more details." -msgstr "" -"新たな更新があります。詳細は、管理メニューのアップデートマネージャを参照してください。" - -#: ../../include/functions_config.php:2080 -msgid "New update of Pandora Console" -msgstr "Pandora コンソールの新たな更新" - -#: ../../include/functions_config.php:2094 -msgid "" -"To disable, change it on your PHP configuration file (php.ini) and put " -"safe_mode = Off (Dont forget restart apache process after changes)" -msgstr "" -"無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定します。 (変更後、apache " -"プロセスの再起動を忘れずに行ってください)" - -#: ../../include/functions_config.php:2095 -msgid "PHP safe mode is enabled. Some features may not properly work." -msgstr "PHP safe モードが有効です。いくつかの機能は正しく動作しません。" - -#: ../../include/functions_config.php:2100 +#: ../../include/class/ConsoleSupervisor.php:2071 #, php-format -msgid "Recommended value is %s" -msgstr "推奨値は %s です" - -#: ../../include/functions_config.php:2100 -#: ../../include/functions_config.php:2106 -msgid "Unlimited" -msgstr "無制限" - -#: ../../include/functions_config.php:2100 -#: ../../include/functions_config.php:2106 -#: ../../include/functions_config.php:2114 -#: ../../include/functions_config.php:2129 msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator (Dont forget restart apache process after changes)" +"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 "" -"PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。(変更後は apache プロセスの再起動を忘れないでください)" +"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境では無効化してください。この定義は、メインの " +"index.php ファイル内にあります。" -#: ../../include/functions_config.php:2101 -#: ../../include/functions_config.php:2107 -#: ../../include/functions_config.php:2115 -#: ../../include/functions_config.php:2123 -#, php-format -msgid "Not recommended '%s' value in PHP configuration" -msgstr "PHP 設定における値 '%s' はおすすめしません" - -#: ../../include/functions_config.php:2106 -#: ../../include/functions_config.php:2114 -#: ../../include/functions_config.php:2122 -#, php-format -msgid "Recommended value is: %s" -msgstr "推奨値: %s" - -#: ../../include/functions_config.php:2114 -#: ../../include/functions_config.php:2122 -#, php-format -msgid "%s or greater" -msgstr "%s または大きい" - -#: ../../include/functions_config.php:2122 -msgid "" -"Please, change it on your PHP configuration file (php.ini) or contact with " -"administrator" -msgstr "PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。" - -#: ../../include/functions_config.php:2128 -msgid "" -"Variable disable_functions containts functions system() or exec(), in PHP " -"configuration file (php.ini)" +#: ../../include/class/ConsoleSupervisor.php:2095 +msgid "Event storm protection is enabled." msgstr "" -"PHP 設定ファイル(php.ini)において、disable_functions 変数に system() または exec() 関数が含まれています。" -#: ../../include/functions_config.php:2129 -msgid "Problems with disable functions in PHP.INI" -msgstr "PHP.INI で無効化された機能の問題" +#: ../../include/class/ConsoleSupervisor.php:2096 +msgid "" +"Some events may get lost while this mode is enabled. The server must be " +"restarted after altering this setting." +msgstr "このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変更した後はサーバを再起動する必要があります。" -#: ../../include/functions_ui.php:230 -msgid "Information" -msgstr "情報" +#: ../../include/class/ConsoleSupervisor.php:2122 +msgid "Failed to retrieve updates, please configure utility" +msgstr "アップデートの取得に失敗しました。ユーティリティの設定をしてください。" -#: ../../include/functions_ui.php:236 -#: ../../enterprise/include/functions_visual_map.php:622 +#: ../../include/class/ConsoleSupervisor.php:2140 +#, php-format +msgid "New %s Console update" +msgstr "新規コンソールアップデート %s" + +#: ../../include/class/ConsoleSupervisor.php:2143 +msgid "" +"There is a new update available. Please.About minor release update." +msgstr "" +"一つ以上のマイナーリリースがあります。.マイナー更新リリースについて." + +#: ../../include/class/ConsoleSupervisor.php:2205 +#: ../../enterprise/include/functions_tasklist.php:53 +msgid "DiscoveryConsoleTasks is not running properly" +msgstr "自動検出コンソールタスクが正しく動作していません" + +#: ../../include/class/ConsoleSupervisor.php:2207 +msgid "Discovery relies on an appropriate cron setup." +msgstr "自動検出は、適切な cron 設定に依存しています。" + +#: ../../include/class/ConsoleSupervisor.php:2208 +#: ../../enterprise/include/functions_tasklist.php:56 +msgid "Please, add the following line to your crontab file:" +msgstr "crontab ファイルに次の行を追加してください:" + +#: ../../include/class/ConsoleSupervisor.php:2221 +#: ../../enterprise/include/functions_tasklist.php:71 +msgid "Last execution" +msgstr "最後の実行" + +#: ../../include/class/ConsoleSupervisor.php:2223 +msgid "Please, make sure process is not locked." +msgstr "プロセスがロックされていないことを確認してください。" + +#: ../../include/class/ConsoleSupervisor.php:2229 +msgid "DiscoveryConsoleTasks is not configured." +msgstr "自動検出コンソールタスクが設定されていません。" + +#: ../../include/class/ConsoleSupervisor.php:2336 +#, php-format +msgid "%s version misaligned with Console" +msgstr "%s バージョンがコンソールと食い違っています" + +#: ../../include/class/ConsoleSupervisor.php:2340 +#, php-format +msgid "" +"Server %s and this console have different versions. This might cause several " +"malfunctions. Please, update this server." +msgstr "%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作が発生する場合があります。 サーバを更新してください。" + +#: ../../include/class/CredentialStore.class.php:562 +msgid "Key identifier is required" +msgstr "鍵の識別子が必要です" + +#: ../../include/class/CredentialStore.class.php:564 +msgid "You must select a group where store this key!" +msgstr "この鍵を保存するグループを選択する必要があります。" + +#: ../../include/class/CredentialStore.class.php:566 +msgid "You must specify a product type" +msgstr "製品タイプを指定する必要があります" + +#: ../../include/class/CredentialStore.class.php:568 +msgid "You must specify a username and/or password" +msgstr "ユーザ名およびパスワードを指定する必要があります" + +#: ../../include/class/CredentialStore.class.php:669 +msgid "identifier cannot be empty" +msgstr "識別子は空にできません" + +#: ../../include/class/CredentialStore.class.php:674 +msgid "Not allowed" +msgstr "許可されません" + +#: ../../include/class/CredentialStore.class.php:713 +msgid "How to configure encryption." +msgstr "暗号化の設定方法。" + +#: ../../include/class/CredentialStore.class.php:712 +#, php-format +msgid "" +"Database encryption is not enabled. Credentials will be stored in plaintext. " +"%s" +msgstr "データベースの暗号化が無効です。認証情報がプレーンテキストで保存されます。%s" + +#: ../../include/class/CredentialStore.class.php:730 +#: ../../include/class/CredentialStore.class.php:833 +#: ../../enterprise/include/class/Omnishell.class.php:398 +msgid "Identifier" +msgstr "識別子" + +#: ../../include/class/CredentialStore.class.php:731 +#: ../../include/class/CredentialStore.class.php:858 +msgid "Product" +msgstr "製品" + +#: ../../include/class/CredentialStore.class.php:797 +msgid "Add key" +msgstr "鍵を追加" + +#: ../../include/class/CredentialStore.class.php:867 +#: ../../enterprise/include/class/Aws.cloud.php:97 +msgid "Aws" +msgstr "AWS" + +#: ../../include/class/CredentialStore.class.php:868 +#: ../../enterprise/include/class/Azure.cloud.php:142 +msgid "Azure" +msgstr "Azure" + +#: ../../include/class/CredentialStore.class.php:869 +#: ../../enterprise/godmode/menu.php:155 +#: ../../enterprise/include/class/SAPView.class.php:614 +#: ../../enterprise/include/class/SAPView.class.php:617 +msgid "SAP" +msgstr "SAP" + +#: ../../include/class/CredentialStore.class.php:880 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:360 +msgid "Extra" +msgstr "拡張" + +#: ../../include/class/CredentialStore.class.php:881 +msgid "Extra (2)" +msgstr "拡張 (2)" + +#: ../../include/class/CredentialStore.class.php:888 +#: ../../include/class/CredentialStore.class.php:1032 +msgid "Access key ID" +msgstr "アクセスキー ID" + +#: ../../include/class/CredentialStore.class.php:889 +#: ../../include/class/CredentialStore.class.php:1033 +msgid "Secret access key" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:895 +#: ../../include/class/CredentialStore.class.php:905 +msgid "Account ID" +msgstr "アカウント ID" + +#: ../../include/class/CredentialStore.class.php:896 +#: ../../include/class/CredentialStore.class.php:1038 +msgid "Application secret" +msgstr "" + +#: ../../include/class/CredentialStore.class.php:897 +#: ../../include/class/CredentialStore.class.php:1039 +msgid "Tenant or domain name" +msgstr "テナントまたはドメイン名" + +#: ../../include/class/CredentialStore.class.php:898 +#: ../../include/class/CredentialStore.class.php:1040 +msgid "Subscription id" +msgstr "サブスクリプション ID" + +#: ../../include/class/CredentialStore.class.php:1003 +#: ../../operation/agentes/status_monitor.php:426 +#: ../../operation/incidents/incident.php:301 +#: ../../enterprise/extensions/vmware/vmware_view.php:1443 +#: ../../enterprise/include/class/AgentRepository.class.php:754 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1488 +#: ../../enterprise/include/class/Omnishell.class.php:1074 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:296 +#: ../../enterprise/operation/agentes/tag_view.php:149 +msgid "Show" +msgstr "表示" + +#: ../../include/class/CredentialStore.class.php:1037 +msgid "Client ID" +msgstr "クライアントID" + +#: ../../include/class/CredentialStore.class.php:1044 +msgid "Account ID." +msgstr "アカウント ID" + +#: ../../include/class/CredentialStore.class.php:1055 +#: ../../include/class/Diagnostics.class.php:2078 +#: ../../include/class/HelpFeedBack.class.php:358 +#: ../../include/functions_ui.php:287 +#: ../../enterprise/include/class/AgentRepository.class.php:825 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1565 +#: ../../enterprise/include/class/Omnishell.class.php:1033 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../enterprise/include/functions_visual_map.php:676 msgid "Success" msgstr "成功" -#: ../../include/functions_ui.php:372 +#: ../../include/class/CredentialStore.class.php:1062 +#: ../../include/class/CredentialStore.class.php:1067 +#: ../../include/class/Diagnostics.class.php:2077 +#: ../../include/class/HelpFeedBack.class.php:353 +#: ../../enterprise/include/class/AgentRepository.class.php:832 +#: ../../enterprise/include/class/AgentRepository.class.php:837 +#: ../../enterprise/include/class/DatabaseHA.class.php:204 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1572 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1577 +#: ../../enterprise/include/class/Omnishell.class.php:1029 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/functions_ux_console.php:446 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:471 +#: ../../enterprise/operation/agentes/transactional_map.php:318 +#: ../../enterprise/operation/agentes/ux_console_view.php:231 +#: ../../enterprise/operation/agentes/ux_console_view.php:381 +#: ../../enterprise/operation/agentes/wux_console_view.php:415 +msgid "Failed" +msgstr "失敗" + +#: ../../include/class/CredentialStore.class.php:1113 +msgid "Register new key into keystore" +msgstr "キーストアへ新たな鍵を登録" + +#: ../../include/class/CredentialStore.class.php:1117 +msgid "Update key" +msgstr "鍵の更新" + +#: ../../include/class/CustomNetScan.class.php:134 +#: ../../enterprise/include/class/Aws.cloud.php:771 +msgid "" +"This task has been already defined. Please edit it or create a new one." +msgstr "このタスクはすでに定義済です。これを編集するか新たに作成してください。" + +#: ../../include/class/CustomNetScan.class.php:368 +#: ../../include/class/CustomNetScan.class.php:393 +msgid "NetScan Custom" +msgstr "カスタムネットスキャン" + +#: ../../include/class/CustomNetScan.class.php:609 +msgid "Recon script" +msgstr "自動検出スクリプト" + +#: ../../include/class/CustomNetScan.class.php:650 +msgid "Explanation" +msgstr "説明" + +#: ../../include/class/CustomNetScan.class.php:666 +msgid "macro_desc" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:141 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:435 +#: ../../enterprise/operation/reporting/custom_reporting.php:60 +msgid "Export to PDF" +msgstr "PDF にエクスポート" + +#: ../../include/class/Diagnostics.class.php:152 +#, php-format +msgid "%s Diagnostic tool" +msgstr "%s 診断ツール" + +#: ../../include/class/Diagnostics.class.php:217 +#, php-format +msgid "Info status %s" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:221 +msgid "PHP setup" +msgstr "PHP 設定" + +#: ../../include/class/Diagnostics.class.php:229 +msgid "Database health status" +msgstr "データベースの正常性状態" + +#: ../../include/class/Diagnostics.class.php:233 +msgid "Database status info" +msgstr "データベースステータス情報" + +#: ../../include/class/Diagnostics.class.php:237 +msgid "System Info" +msgstr "システム情報" + +#: ../../include/class/Diagnostics.class.php:241 +msgid "MySQL Performance metrics" +msgstr "MySQLパフォーマンスメトリック" + +#: ../../include/class/Diagnostics.class.php:246 +#, php-format +msgid "Tables fragmentation in the %s database" +msgstr "%s データベースにおけるテーブルのフラグメンテーション" + +#: ../../include/class/Diagnostics.class.php:252 +#, php-format +msgid "%s logs dates" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:256 +#, php-format +msgid "%s Licence Information" +msgstr "%s ライセンス情報" + +#: ../../include/class/Diagnostics.class.php:260 +#: ../../include/class/Diagnostics.class.php:1242 +msgid "Status of the attachment folder" +msgstr "添付フォルダの状態" + +#: ../../include/class/Diagnostics.class.php:264 +msgid "Information from the tagente_datos table" +msgstr "tagente_datos テーブルからの情報" + +#: ../../include/class/Diagnostics.class.php:268 +#, php-format +msgid "%s server threads" +msgstr "%s サーバスレッド" + +#: ../../include/class/Diagnostics.class.php:272 +msgid "SQL show engine innodb status" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:316 +msgid "Graph of the Agents Unknown module." +msgstr "エージェント不明モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:323 +msgid "Graph of the Database Maintenance module." +msgstr "データベースメンテナンスモジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:330 +msgid "Graph of the Free Disk Spool Dir module." +msgstr "スプールディレクトリディスクの空き容量モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:336 +msgid "Graph of the Free RAM module." +msgstr "メモリ空き容量モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:342 +msgid "Graph of the Queued Modules module." +msgstr "モジュールキューのモジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:348 +msgid "Graph of the Status module." +msgstr "状態モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:354 +msgid "Graph of the System Load AVG module." +msgstr "システムロードアベレージモジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:361 +msgid "Graph of the Execution Time module." +msgstr "実行時間モジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:370 +msgid "Graphs modules that represent the self-monitoring system" +msgstr "自己監視システムモジュールグラフ" + +#: ../../include/class/Diagnostics.class.php:427 +#, php-format +msgid "%s Build" +msgstr "%s ビルド" + +#: ../../include/class/Diagnostics.class.php:431 +#, php-format +msgid "%s Version" +msgstr "%s バージョン" + +#: ../../include/class/Diagnostics.class.php:435 +msgid "Minor Release" +msgstr "マイナーリリース" + +#: ../../include/class/Diagnostics.class.php:439 +msgid "Homedir" +msgstr "ホームディレクトリ" + +#: ../../include/class/Diagnostics.class.php:443 +msgid "HomeUrl" +msgstr "ホームURL" + +#: ../../include/class/Diagnostics.class.php:447 +msgid "Enterprise installed" +msgstr "Enterprise インストール済" + +#: ../../include/class/Diagnostics.class.php:448 +msgid "true" +msgstr "はい" + +#: ../../include/class/Diagnostics.class.php:448 +msgid "false" +msgstr "いいえ" + +#: ../../include/class/Diagnostics.class.php:451 +msgid "Update Key" +msgstr "アップデートキー" + +#: ../../include/class/Diagnostics.class.php:455 +msgid "Updating code path" +msgstr "アップデートコードパス" + +#: ../../include/class/Diagnostics.class.php:459 +msgid "Current Update #" +msgstr "現在のアップデート #" + +#: ../../include/class/Diagnostics.class.php:483 +msgid "PHP Version" +msgstr "PHPバージョン" + +#: ../../include/class/Diagnostics.class.php:487 +msgid "PHP Max execution time" +msgstr "PHP 最大実行時間" + +#: ../../include/class/Diagnostics.class.php:491 +msgid "PHP Max input time" +msgstr "PHP 最大入力時間" + +#: ../../include/class/Diagnostics.class.php:495 +msgid "PHP Memory limit" +msgstr "PHP メモリ制限" + +#: ../../include/class/Diagnostics.class.php:499 +msgid "Session cookie lifetime" +msgstr "セッションクッキー有効期間" + +#: ../../include/class/Diagnostics.class.php:548 +msgid "Total groups" +msgstr "全グループ数" + +#: ../../include/class/Diagnostics.class.php:552 +msgid "Total module data records" +msgstr "全モジュールデータ記録数" + +#: ../../include/class/Diagnostics.class.php:556 +msgid "Total agent access record" +msgstr "全エージェントアクセス記録数" + +#: ../../include/class/Diagnostics.class.php:564 +msgid "Total traps" +msgstr "全トラップ数" + +#: ../../include/class/Diagnostics.class.php:568 +msgid "Total users" +msgstr "全ユーザ数" + +#: ../../include/class/Diagnostics.class.php:572 +msgid "Total sessions" +msgstr "全セッション数" + +#: ../../include/class/Diagnostics.class.php:611 +msgid "Pandora DB has never been executed" +msgstr "Pandora DB が一度も実行されていません" + +#: ../../include/class/Diagnostics.class.php:618 +msgid "Ago" +msgstr "前" + +#: ../../include/class/Diagnostics.class.php:625 +msgid "Total unknown agents" +msgstr "全不明エージェント数" + +#: ../../include/class/Diagnostics.class.php:629 +msgid "Total not-init modules" +msgstr "全未初期化モジュール数" + +#: ../../include/class/Diagnostics.class.php:633 +msgid "Pandora DB Last run" +msgstr "最後の Pandora DB 実行" + +#: ../../include/class/Diagnostics.class.php:665 +msgid "DB Schema Version (first installed)" +msgstr "DB スキーマバージョン(初回インストール時)" + +#: ../../include/class/Diagnostics.class.php:669 +msgid "DB Schema Version (actual)" +msgstr "DB スキーマバージョン(現在)" + +#: ../../include/class/Diagnostics.class.php:673 +msgid "DB Schema Build" +msgstr "DB スキーマビルド" + +#: ../../include/class/Diagnostics.class.php:677 +msgid "DB Size" +msgstr "DB サイズ" + +#: ../../include/class/Diagnostics.class.php:713 +#: ../../enterprise/godmode/reporting/aws_view.php:54 +msgid "CPU" +msgstr "CPU" + +#: ../../include/class/Diagnostics.class.php:717 +msgid "RAM" +msgstr "メモリ" + +#: ../../include/class/Diagnostics.class.php:721 +msgid "Os" +msgstr "OS" + +#: ../../include/class/Diagnostics.class.php:725 +#: ../../include/class/Diagnostics.class.php:743 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1733 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:197 +#: ../../enterprise/extensions/ipam/ipam_network.php:324 +msgid "Hostname" +msgstr "ホスト名" + +#: ../../include/class/Diagnostics.class.php:729 +#: ../../include/class/Diagnostics.class.php:747 +#: ../../include/class/NetworkMap.class.php:2935 +msgid "Ip" +msgstr "IP" + +#: ../../include/class/Diagnostics.class.php:775 +msgid "InnoDB buffer pool size" +msgstr "InnoDB buffer pool size" + +#: ../../include/class/Diagnostics.class.php:779 +#, php-format +msgid "" +"It has to be 40% of the server memory not recommended to be greater or less" +msgstr "" + +#: ../../include/class/Diagnostics.class.php:784 +msgid "InnoDB file per table" +msgstr "InnoDB" + +#: ../../include/class/Diagnostics.class.php:787 +#: ../../include/class/Diagnostics.class.php:859 +msgid "Recommended ON" +msgstr "ON を推奨" + +#: ../../include/class/Diagnostics.class.php:791 +msgid "InnoDB flush log at trx-commit" +msgstr "InnoDB flush log at trx-commit" + +#: ../../include/class/Diagnostics.class.php:794 +msgid "Recommended Value" +msgstr "推奨値" + +#: ../../include/class/Diagnostics.class.php:798 +msgid "InnoDB lock wait timeout" +msgstr "InnoDB lock wait timeout" + +#: ../../include/class/Diagnostics.class.php:801 +#: ../../include/class/Diagnostics.class.php:808 +#: ../../include/class/Diagnostics.class.php:815 +#: ../../include/class/Diagnostics.class.php:822 +#: ../../include/class/Diagnostics.class.php:829 +#: ../../include/class/Diagnostics.class.php:838 +#: ../../include/class/Diagnostics.class.php:845 +#: ../../include/class/Diagnostics.class.php:852 +#: ../../include/class/Diagnostics.class.php:866 +#: ../../include/class/Diagnostics.class.php:873 +#: ../../include/class/Diagnostics.class.php:880 +#: ../../include/class/Diagnostics.class.php:894 +#: ../../include/class/Diagnostics.class.php:901 +msgid "Min. Recommended Value" +msgstr "最小推奨値" + +#: ../../include/class/Diagnostics.class.php:805 +msgid "InnoDB log buffer size" +msgstr "InnoDB log buffer size" + +#: ../../include/class/Diagnostics.class.php:812 +msgid "InnoDB log file size" +msgstr "InnoDB log file size" + +#: ../../include/class/Diagnostics.class.php:819 +msgid "Maximun allowed packet" +msgstr "Maximun allowed packet" + +#: ../../include/class/Diagnostics.class.php:826 +msgid "Maximun connections" +msgstr "Maximun connections" + +#: ../../include/class/Diagnostics.class.php:831 +msgid "conections" +msgstr "接続" + +#: ../../include/class/Diagnostics.class.php:835 +msgid "Query cache limit" +msgstr "Query cache limit" + +#: ../../include/class/Diagnostics.class.php:842 +msgid "Query cache min-res-unit" +msgstr "Query cache min-res-unit" + +#: ../../include/class/Diagnostics.class.php:849 +msgid "Query cache size" +msgstr "Query cache size" + +#: ../../include/class/Diagnostics.class.php:856 +msgid "Query cache type" +msgstr "Query cache type" + +#: ../../include/class/Diagnostics.class.php:863 +msgid "Read buffer size" +msgstr "Read buffer size" + +#: ../../include/class/Diagnostics.class.php:870 +msgid "Read rnd-buffer size" +msgstr "Read rnd-buffer size" + +#: ../../include/class/Diagnostics.class.php:877 +msgid "Sort buffer size" +msgstr "Sort buffer size" + +#: ../../include/class/Diagnostics.class.php:884 +msgid "Sql mode" +msgstr "Sql mode" + +#: ../../include/class/Diagnostics.class.php:887 +msgid "Must be empty" +msgstr "空である必要があります" + +#: ../../include/class/Diagnostics.class.php:891 +msgid "Thread cache size" +msgstr "Thread cache size" + +#: ../../include/class/Diagnostics.class.php:898 +msgid "Thread stack" +msgstr "Thread stack" + +#: ../../include/class/Diagnostics.class.php:961 +msgid "" +"Table fragmentation is higher than recommended. They should be defragmented." +msgstr "テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要があります。" + +#: ../../include/class/Diagnostics.class.php:965 +msgid "Table fragmentation is correct." +msgstr "テーブルフラグメンテーションは正常です。" + +#: ../../include/class/Diagnostics.class.php:974 +msgid "Tables fragmentation (maximum recommended value)" +msgstr "テーブルフラグメンテーション(最大推奨値)" + +#: ../../include/class/Diagnostics.class.php:979 +msgid "Tables fragmentation (current value)" +msgstr "テーブルフラグメンテーション(現在の値)" + +#: ../../include/class/Diagnostics.class.php:983 +msgid "Table fragmentation status" +msgstr "テーブルフラグメンテーションの状態" + +#: ../../include/class/Diagnostics.class.php:1018 +msgid "Size server logs (current value)" +msgstr "サーバログサイズ(現在の値)" + +#: ../../include/class/Diagnostics.class.php:1022 +msgid "Status server logs" +msgstr "サーバログ状態" + +#: ../../include/class/Diagnostics.class.php:1027 +msgid "Size error logs (current value)" +msgstr "エラーログサイズ(現在の値)" + +#: ../../include/class/Diagnostics.class.php:1031 +msgid "Status error logs" +msgstr "エラーログ状態" + +#: ../../include/class/Diagnostics.class.php:1036 +msgid "Size console logs (current value)" +msgstr "コンソールログサイズ(現在の値)" + +#: ../../include/class/Diagnostics.class.php:1040 +msgid "Status console logs" +msgstr "コンソールログ状態" + +#: ../../include/class/Diagnostics.class.php:1075 +msgid "License capacity is less than 90 percent" +msgstr "ライセンス容量は90%未満です" + +#: ../../include/class/Diagnostics.class.php:1078 +msgid "License capacity exceeds 90 percent" +msgstr "ライセンス容量の90%を超えています" + +#: ../../include/class/Diagnostics.class.php:1086 +msgid "" +"The average of modules per agent is more than 40. You can have performance " +"problems" +msgstr "1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題が発生する可能性があります。" + +#: ../../include/class/Diagnostics.class.php:1091 +msgid "The average of modules per agent is less than 40" +msgstr "1エージェントあたりの平均モジュール数が 40未満です。" + +#: ../../include/class/Diagnostics.class.php:1127 +msgid "The system has no load" +msgstr "システムに負荷がかかっていません" + +#: ../../include/class/Diagnostics.class.php:1147 +#: ../../enterprise/include/functions_license.php:120 +msgid "Support expires" +msgstr "サポート切れ" + +#: ../../include/class/Diagnostics.class.php:1171 +msgid "Network Management System" +msgstr "ネットワーク管理システム" + +#: ../../include/class/Diagnostics.class.php:1172 +#: ../../include/class/Diagnostics.class.php:1176 +msgid "Off" +msgstr "オフ" + +#: ../../include/class/Diagnostics.class.php:1183 +msgid "Status of agents capacity" +msgstr "エージェントキャパシティの状態" + +#: ../../include/class/Diagnostics.class.php:1188 +msgid "Status of average modules per agent" +msgstr "1エージェントごとの平均モジュール数の状態" + +#: ../../include/class/Diagnostics.class.php:1194 +msgid "Interval average of the network modules" +msgstr "ネットワークモジュールの平均実行間隔" + +#: ../../include/class/Diagnostics.class.php:1224 +msgid "The attached folder contains more than 700 files." +msgstr "attachment フォルダに 700以上のファイルがあります。" + +#: ../../include/class/Diagnostics.class.php:1229 +msgid "The attached folder contains less than 700 files." +msgstr "attachment フォルダは 700未満のファイルがあります。" + +#: ../../include/class/Diagnostics.class.php:1238 +msgid "Total files in the attached folder" +msgstr "attachment フォルダの全ファイル数" + +#: ../../include/class/Diagnostics.class.php:1268 +msgid "" +"The tagente_datos table contains too much data. A historical database is " +"recommended." +msgstr "tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお勧めします。" + +#: ../../include/class/Diagnostics.class.php:1273 +msgid "The tagente_datos table contains an acceptable amount of data." +msgstr "tagente_datos テーブルのデータ量は適正です。" + +#: ../../include/class/Diagnostics.class.php:1282 +msgid "Total data in tagente_datos table" +msgstr "tagente_datos テーブルの全データ量" + +#: ../../include/class/Diagnostics.class.php:1286 +msgid "Tagente_datos table status" +msgstr "tagente_datos テーブルの状態" + +#: ../../include/class/Diagnostics.class.php:1322 +msgid "Threads" +msgstr "スレッド" + +#: ../../include/class/Diagnostics.class.php:1332 +msgid "Total threads" +msgstr "全スレッド数" + +#: ../../include/class/Diagnostics.class.php:1339 +msgid "Current pandora_server running threads" +msgstr "現在の pandora_server 実行スレッド" + +#: ../../include/class/Diagnostics.class.php:1343 +msgid "" +"There's more pandora_server threads than configured, are you running " +"multiple servers simultaneusly?." +msgstr "設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していませんか?" + +#: ../../include/class/Diagnostics.class.php:1477 +msgid "" +"Please check your Pandora Server setup and make sure that the database " +"maintenance daemon is running." +msgstr "Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作しているか確認してください。" + +#: ../../include/class/Diagnostics.class.php:1481 +msgid "" +"It' is very important to keep the database up-to-date to get the best " +"performance and results in Pandora" +msgstr "Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つことが非常に重要です。" + +#: ../../include/class/Diagnostics.class.php:1743 +msgid "You have more than 10 MB of logs" +msgstr "10MB 以上のログがあります" + +#: ../../include/class/Diagnostics.class.php:1746 +msgid "You have less than 10 MB of logs" +msgstr "ログは 10MB 未満です" + +#: ../../include/class/Diagnostics.class.php:1809 +msgid "Succesfuly" +msgstr "正常" + +#: ../../include/class/Diagnostics.class.php:1885 +msgid "What happened" +msgstr "発生している内容" + +#: ../../include/class/Diagnostics.class.php:1901 +msgid "Your email" +msgstr "あなたのメールアドレス" + +#: ../../include/class/Diagnostics.class.php:1913 +msgid "Include installation data" +msgstr "インストールデータを含む" + +#: ../../include/class/Diagnostics.class.php:1950 +msgid "Hello Feedback-Men" +msgstr "こんにちは、フィードバックありがとうございます" + +#: ../../include/class/Diagnostics.class.php:1960 +msgid "Hello" +msgstr "こんにちは" + +#: ../../include/class/Diagnostics.class.php:1964 +#, php-format +msgid "User %s is reporting an issue in its %s experience" +msgstr "ユーザ %s より、%s で発生した事象をレポートします" + +#: ../../include/class/Diagnostics.class.php:1973 +msgid "Find some files attached to this mail" +msgstr "このメールに添付するファイル" + +#: ../../include/class/Diagnostics.class.php:1976 +msgid "PDF is the diagnostic information retrieved at report time" +msgstr "PDF はレポート時に取得する診断情報を含みます" + +#: ../../include/class/Diagnostics.class.php:1979 +msgid "CSV contains the statuses of every product file" +msgstr "CSV に各製品ファイルの状態を含みます" + +#: ../../include/class/Diagnostics.class.php:1984 +#, php-format +msgid "" +"If you think this report must be escalated, feel free to forward this mail " +"to \"%s\"" +msgstr "この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" へ転送してください。" + +#: ../../include/class/Diagnostics.class.php:1988 +msgid "LEGAL WARNING" +msgstr "法的な警告" + +#: ../../include/class/Diagnostics.class.php:1990 +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:1994 +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:1998 +msgid "If you have received this transmission in error, do not read it" +msgstr "もし、間違えてこの情報を受け取った場合は、読まないでください" + +#: ../../include/class/Diagnostics.class.php:2002 +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:2081 +msgid "Invalid cron task" +msgstr "不正な cron タスク" + +#: ../../include/class/Diagnostics.class.php:2082 +msgid "Cron task generated" +msgstr "cron タスクを生成しました" + +#: ../../include/class/Diagnostics.class.php:2117 +#: ../../include/class/Diagnostics.class.php:2127 +msgid "Diagnostics Info" +msgstr "診断情報" + +#: ../../include/class/Diagnostics.class.php:2121 +#: ../../include/class/Diagnostics.class.php:2239 +#: ../../enterprise/include/functions_reporting_pdf.php:65 +#, php-format +msgid "Automated %s report for user defined report" +msgstr "ユーザ定義レポートのための自動 %s レポート" + +#: ../../include/class/Diagnostics.class.php:2166 +#: ../../include/functions_cron.php:622 ../../include/functions_cron.php:652 +#: ../../enterprise/extensions/backup/main.php:129 +#: ../../enterprise/include/functions_tasklist.php:345 +#: ../../enterprise/include/functions_tasklist.php:376 +msgid "Path" +msgstr "パス" + +#: ../../include/class/Diagnostics.class.php:2235 +#: ../../include/class/Diagnostics.class.php:2245 +msgid "PHP Info" +msgstr "PHP Info" + +#: ../../include/class/HelpFeedBack.class.php:99 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:624 +#: ../../enterprise/include/class/Omnishell.class.php:319 +msgid "Page not found" +msgstr "ページが見つかりません" + +#: ../../include/class/HelpFeedBack.class.php:104 +msgid "Browser not compatible." +msgstr "ブラウザに互換性がありません。" + +#: ../../include/class/HelpFeedBack.class.php:147 +msgid "Suggestion" +msgstr "提案" + +#: ../../include/class/HelpFeedBack.class.php:158 +msgid "Something is wrong" +msgstr "何かおかしいです" + +#: ../../include/class/HelpFeedBack.class.php:171 +msgid "What happened?" +msgstr "何が発生しましたか?" + +#: ../../include/class/HelpFeedBack.class.php:181 +msgid "Your Email" +msgstr "あなたのメールアドレス" + +#: ../../include/class/HelpFeedBack.class.php:198 +#: ../../operation/incidents/incident_detail.php:404 +msgid "Submit" +msgstr "実行" + +#: ../../include/class/HelpFeedBack.class.php:252 +msgid "[pandorafms wiki] New suggestion" +msgstr "[pandorafms wiki] 新規提案" + +#: ../../include/class/HelpFeedBack.class.php:254 +msgid "[pandorafms wiki] New report" +msgstr "[pandorafms wiki] 新規レポート" + +#: ../../include/class/HelpFeedBack.class.php:260 +msgid "Please provide your email address, we promise not to bother you" +msgstr "あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" + +#: ../../include/class/HelpFeedBack.class.php:308 +msgid "Something went wrong while sending the report." +msgstr "レポート送信時に異常が発生しました。" + +#: ../../include/class/HelpFeedBack.class.php:359 +msgid "Your report had been successfully sent to Artica." +msgstr "レポートを Artica へ送信しました。" + +#: ../../include/class/HelpFeedBack.class.php:359 +msgid "Thank you!" +msgstr "ありがとうございます!" + +#: ../../include/class/ManageNetScanScripts.class.php:121 +msgid "Net scan scripts" +msgstr "ネットスキャンスクリプト" + +#: ../../include/class/ManageNetScanScripts.class.php:211 +msgid "Problem creating" +msgstr "問題の作成" + +#: ../../include/class/ManageNetScanScripts.class.php:222 +#: ../../include/class/ManageNetScanScripts.class.php:309 +msgid "Name or Script fullpath they can not be empty" +msgstr "名前またはスクリプトのフルパスは空にできません" + +#: ../../include/class/ManageNetScanScripts.class.php:243 +#: ../../include/class/ManageNetScanScripts.class.php:330 +msgid "Problem deleting Net scan Scripts, Not selected script" +msgstr "ネットスキャンスクリプトの削除に失敗しました。スクリプトが選択されていません" + +#: ../../include/class/ManageNetScanScripts.class.php:298 +msgid "Problem updating" +msgstr "問題の更新" + +#: ../../include/class/ManageNetScanScripts.class.php:344 +#: ../../include/class/ManageNetScanScripts.class.php:355 +msgid "Problem deleting Net scan Scripts" +msgstr "ネットスキャンスクリプトの削除に失敗しました" + +#: ../../include/class/ManageNetScanScripts.class.php:360 +msgid "Deleted successfully" +msgstr "削除しました" + +#: ../../include/class/ManageNetScanScripts.class.php:432 +msgid "Are you sure delete script?" +msgstr "スクリプトを削除しますか?" + +#: ../../include/class/ManageNetScanScripts.class.php:452 +msgid "Delete Script" +msgstr "スクリプト削除" + +#: ../../include/class/ManageNetScanScripts.class.php:470 +msgid "There are no net scan scripts in the system" +msgstr "システムにネットスキャンスクリプトがありません" + +#: ../../include/class/ManageNetScanScripts.class.php:550 +msgid "Script fullpath" +msgstr "スクリプトのフルパス" + +#: ../../include/class/NetworkMap.class.php:2306 +msgid "Failed to generate dotmap, please select different layout schema" +msgstr "ドットマップの生成に失敗しました。異なるレイアウトスキーマを選択してください。" + +#: ../../include/class/NetworkMap.class.php:2464 +msgid "Failed to retrieve graph data." +msgstr "グラフデータの取得に失敗しました。" + +#: ../../include/class/NetworkMap.class.php:2678 +msgid "Holding Area" +msgstr "保持エリア" + +#: ../../include/class/NetworkMap.class.php:2806 +#, php-format +msgid "Edit node %s" +msgstr "ノード編集 %s" + +#: ../../include/class/NetworkMap.class.php:2808 +msgid "Show details and options" +msgstr "詳細とオプションの表示" + +#: ../../include/class/NetworkMap.class.php:2809 +msgid "Add a interface link" +msgstr "インタフェースリンクを追加" + +#: ../../include/class/NetworkMap.class.php:2810 +msgid "Set parent interface" +msgstr "親インタフェースを設定" + +#: ../../include/class/NetworkMap.class.php:2811 +msgid "Set as children" +msgstr "子に設定" + +#: ../../include/class/NetworkMap.class.php:2812 +msgid "Set parent" +msgstr "親を設定" + +#: ../../include/class/NetworkMap.class.php:2813 +#: ../../include/class/NetworkMap.class.php:2826 +msgid "Abort the action of set relationship" +msgstr "関係設定動作の中止" + +#: ../../include/class/NetworkMap.class.php:2815 +#: ../../include/class/NetworkMap.class.php:3152 +msgid "Add node" +msgstr "ノード追加" + +#: ../../include/class/NetworkMap.class.php:2816 +msgid "Set center" +msgstr "中心設定" + +#: ../../include/class/NetworkMap.class.php:2818 +msgid "Refresh Holding area" +msgstr "保持エリアの更新" + +#: ../../include/class/NetworkMap.class.php:2819 +#: ../../include/class/NetworkMap.class.php:2822 +msgid "Proceed" +msgstr "実行" + +#: ../../include/class/NetworkMap.class.php:2820 +msgid "" +"Resetting the map will delete all customizations you have done, including " +"manual relationships between elements, new items, etc." +msgstr "マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイズを削除します。" + +#: ../../include/class/NetworkMap.class.php:2821 +#: ../../include/class/Tree.class.php:588 ../../include/functions_events.php:68 +#: ../../include/functions_events.php:102 +#: ../../include/functions_events.php:172 +#: ../../include/functions_events.php.orig:66 +#: ../../include/functions_events.php.orig:100 +#: ../../include/functions_events.php.orig:170 +#: ../../include/functions_ui.php:3511 ../../include/functions_ui.php:3588 +#: ../../include/functions_modules.php:2432 +#: ../../include/functions_modules.php:2449 +#: ../../include/functions_modules.php:3385 +#: ../../include/functions_modules.php:3417 +#: ../../mobile/operation/modules.php:533 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:596 +#: ../../mobile/operation/modules.php:623 +#: ../../operation/agentes/pandora_networkmap.view.php:330 +#: ../../operation/agentes/pandora_networkmap.view.php:351 +#: ../../operation/agentes/status_monitor.php:1387 +#: ../../operation/agentes/status_monitor.php:1393 +#: ../../operation/agentes/status_monitor.php:1466 +#: ../../operation/agentes/status_monitor.php:1472 +#: ../../operation/events/events.php:1741 +#: ../../operation/events/events.php:1794 +#: ../../operation/events/events.php:1849 +#: ../../operation/search_modules.php:108 +#: ../../operation/search_modules.php:139 +#: ../../enterprise/extensions/vmware/vmware_view.php:1026 +#: ../../enterprise/include/functions_services.php:2686 +#: ../../enterprise/include/functions_services.php:2714 +#: ../../enterprise/include/functions_login.php:34 +#: ../../enterprise/operation/agentes/policy_view.php:384 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:953 +#: ../../enterprise/operation/agentes/tag_view.php:959 +#: ../../enterprise/operation/agentes/tag_view.php:1004 +#: ../../enterprise/operation/agentes/tag_view.php:1010 +msgid "WARNING" +msgstr "警告" + +#: ../../include/class/NetworkMap.class.php:2824 +msgid "Restart map" +msgstr "マップリセット" + +#: ../../include/class/NetworkMap.class.php:2825 +msgid "Abort the interface relationship" +msgstr "インタフェース関連付けの中止" + +#: ../../include/class/NetworkMap.class.php:2843 +#: ../../include/class/NetworkMap.class.php:2896 +#, php-format +msgid "In the Open version of %s can not be edited nodes or map" +msgstr "%s のオープンソース版は、ノードやマップの編集はできません" + +#: ../../include/class/NetworkMap.class.php:2849 +#: ../../include/class/NetworkMap.class.php:2902 +msgid "Edit node" +msgstr "ノード編集" + +#: ../../include/class/NetworkMap.class.php:2859 +#: ../../include/class/NetworkMap.class.php:2912 +#: ../../enterprise/include/ajax/clustermap.php:39 +msgid "Adresses" +msgstr "アドレス" + +#: ../../include/class/NetworkMap.class.php:2861 +#: ../../include/class/NetworkMap.class.php:2914 +msgid "OS type" +msgstr "OS 種別" + +#: ../../include/class/NetworkMap.class.php:2868 +#: ../../include/class/NetworkMap.class.php:2869 +#: ../../include/class/NetworkMap.class.php:2921 +#: ../../include/class/NetworkMap.class.php:2922 +#: ../../enterprise/include/ajax/clustermap.php:52 +#: ../../enterprise/include/ajax/clustermap.php:53 +msgid "Node Details" +msgstr "ノード詳細" + +#: ../../include/class/NetworkMap.class.php:2936 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:262 +msgid "MAC" +msgstr "MAC" + +#: ../../include/class/NetworkMap.class.php:2947 +#: ../../include/class/NetworkMap.class.php:2948 +msgid "Interface Information (SNMP)" +msgstr "インタフェース情報 (SNMP)" + +#: ../../include/class/NetworkMap.class.php:2959 +msgid "Shape" +msgstr "形" + +#: ../../include/class/NetworkMap.class.php:2962 +msgid "Circle" +msgstr "円" + +#: ../../include/class/NetworkMap.class.php:2963 +msgid "Square" +msgstr "四角" + +#: ../../include/class/NetworkMap.class.php:2964 +msgid "Rhombus" +msgstr "ひしがた" + +#: ../../include/class/NetworkMap.class.php:2977 +msgid "name node" +msgstr "ノード名" + +#: ../../include/class/NetworkMap.class.php:2983 +#: ../../enterprise/include/functions_HA_cluster.php:496 +msgid "Update node" +msgstr "ノード更新" + +#: ../../include/class/NetworkMap.class.php:2995 +#: ../../include/class/NetworkMap.class.php:3259 +msgid "name fictional node" +msgstr "仮想ノード名" + +#: ../../include/class/NetworkMap.class.php:3000 +#: ../../include/class/NetworkMap.class.php:3264 +msgid "Networkmap to link" +msgstr "リンクするネットワークマップ" + +#: ../../include/class/NetworkMap.class.php:3012 +msgid "Update fictional node" +msgstr "仮想ノード更新" + +#: ../../include/class/NetworkMap.class.php:3022 +#: ../../include/class/NetworkMap.class.php:3023 +msgid "Node options" +msgstr "ノードオプション" + +#: ../../include/class/NetworkMap.class.php:3034 +#: ../../include/class/NetworkMap.class.php:3098 +msgid "Node source" +msgstr "ノードソース" + +#: ../../include/class/NetworkMap.class.php:3035 +#: ../../include/class/NetworkMap.class.php:3099 +msgid "Interface source" +msgstr "インタフェースソース" + +#: ../../include/class/NetworkMap.class.php:3036 +#: ../../include/class/NetworkMap.class.php:3100 +msgid "Interface Target" +msgstr "インタフェースターゲット" + +#: ../../include/class/NetworkMap.class.php:3038 +#: ../../include/class/NetworkMap.class.php:3101 +msgid "Node target" +msgstr "ノードターゲット" + +#: ../../include/class/NetworkMap.class.php:3039 +msgid "E." +msgstr "E." + +#: ../../include/class/NetworkMap.class.php:3072 +msgid "There are not relations" +msgstr "関連付がありません。" + +#: ../../include/class/NetworkMap.class.php:3083 +#: ../../include/class/NetworkMap.class.php:3084 +msgid "Relations" +msgstr "関連付" + +#: ../../include/class/NetworkMap.class.php:3140 +msgid "Add interface link" +msgstr "インタフェースリンクを追加" + +#: ../../include/class/NetworkMap.class.php:3171 +#: ../../include/class/NetworkMap.class.php:3193 +#: ../../include/class/NetworkMap.class.php:3194 +#: ../../include/class/NetworkMap.class.php:3234 +#: ../../include/class/NetworkMap.class.php:3246 +#: ../../include/class/NetworkMap.class.php:3287 +msgid "Add agent node" +msgstr "エージェントノード追加" + +#: ../../include/class/NetworkMap.class.php:3245 +msgid "Add agent node (filter by group)" +msgstr "エージェントノード追加 (グループによるフィルタ)" + +#: ../../include/class/NetworkMap.class.php:3276 +msgid "Add fictional node" +msgstr "仮想ノード追加" + +#: ../../include/class/NetworkMap.class.php:3286 +msgid "Add fictional point" +msgstr "仮想ポイント追加" + +#: ../../include/class/NetworkMap.class.php:3464 +msgid "Open Minimap" +msgstr "ミニマップを開く" + +#: ../../include/class/NetworkMap.class.php:3470 +msgid "Hide Labels" +msgstr "ラベルを隠す" + +#: ../../include/class/Tree.class.php:580 ../../include/functions_events.php:57 +#: ../../include/functions_events.php:110 +#: ../../include/functions_events.php:154 +#: ../../include/functions_events.php.orig:55 +#: ../../include/functions_events.php.orig:108 +#: ../../include/functions_events.php.orig:152 +#: ../../include/functions_ui.php:3523 ../../include/functions_ui.php:3593 +#: ../../include/functions_modules.php:2429 +#: ../../include/functions_modules.php:2445 +#: ../../include/functions_modules.php:3381 +#: ../../include/functions_modules.php:3401 +#: ../../mobile/operation/modules.php:527 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:590 +#: ../../mobile/operation/modules.php:615 +#: ../../operation/agentes/pandora_networkmap.view.php:327 +#: ../../operation/agentes/pandora_networkmap.view.php:346 +#: ../../operation/agentes/status_monitor.php:1373 +#: ../../operation/agentes/status_monitor.php:1379 +#: ../../operation/agentes/status_monitor.php:1450 +#: ../../operation/agentes/status_monitor.php:1456 +#: ../../operation/events/events.php:1711 +#: ../../operation/events/events.php:1806 +#: ../../operation/events/events.php:1832 +#: ../../operation/search_modules.php:102 +#: ../../operation/search_modules.php:131 +#: ../../enterprise/extensions/vmware/vmware_view.php:1021 +#: ../../enterprise/include/functions_services.php:2680 +#: ../../enterprise/include/functions_services.php:2709 +#: ../../enterprise/operation/agentes/policy_view.php:381 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:939 +#: ../../enterprise/operation/agentes/tag_view.php:945 +#: ../../enterprise/operation/agentes/tag_view.php:988 +#: ../../enterprise/operation/agentes/tag_view.php:994 +msgid "CRITICAL" +msgstr "障害" + +#: ../../include/class/Tree.class.php:594 ../../include/functions_events.php:71 +#: ../../include/functions_events.php:115 +#: ../../include/functions_events.php:175 +#: ../../include/functions_events.php.orig:69 +#: ../../include/functions_events.php.orig:113 +#: ../../include/functions_events.php.orig:173 +#: ../../include/functions_ui.php:3530 ../../include/functions_ui.php:3608 +#: ../../include/functions_modules.php:2441 +#: ../../include/functions_modules.php:2445 +#: ../../include/functions_modules.php:2449 +#: ../../include/functions_modules.php:3389 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:607 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:623 +#: ../../operation/agentes/pandora_networkmap.view.php:341 +#: ../../operation/agentes/pandora_networkmap.view.php:346 +#: ../../operation/agentes/pandora_networkmap.view.php:351 +#: ../../operation/agentes/status_monitor.php:1401 +#: ../../operation/agentes/status_monitor.php:1407 +#: ../../operation/agentes/status_monitor.php:1434 +#: ../../operation/agentes/status_monitor.php:1440 +#: ../../operation/agentes/status_monitor.php:1450 +#: ../../operation/agentes/status_monitor.php:1456 +#: ../../operation/agentes/status_monitor.php:1466 +#: ../../operation/agentes/status_monitor.php:1472 +#: ../../operation/events/events.php:1708 +#: ../../operation/events/events.php:1813 +#: ../../operation/events/events.php:1824 +#: ../../operation/search_modules.php:114 +#: ../../operation/search_modules.php:123 +#: ../../operation/search_modules.php:131 +#: ../../operation/search_modules.php:139 +#: ../../enterprise/extensions/vmware/vmware_view.php:1031 +#: ../../enterprise/include/functions_services.php:2703 +#: ../../enterprise/include/functions_services.php:2709 +#: ../../enterprise/include/functions_services.php:2714 +#: ../../enterprise/include/functions_services.php:2719 +#: ../../enterprise/include/functions_services.php:2726 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:972 +#: ../../enterprise/operation/agentes/tag_view.php:978 +#: ../../enterprise/operation/agentes/tag_view.php:988 +#: ../../enterprise/operation/agentes/tag_view.php:994 +#: ../../enterprise/operation/agentes/tag_view.php:1004 +#: ../../enterprise/operation/agentes/tag_view.php:1010 +msgid "UNKNOWN" +msgstr "不明" + +#: ../../include/class/Tree.class.php:601 +#: ../../include/functions_modules.php:3405 +#: ../../operation/agentes/status_monitor.php:1415 +#: ../../operation/agentes/status_monitor.php:1421 +msgid "NO DATA" +msgstr "データがありません" + +#: ../../include/class/Tree.class.php:610 ../../include/functions_events.php:54 +#: ../../include/functions_events.php:106 +#: ../../include/functions_events.php:169 +#: ../../include/functions_events.php.orig:52 +#: ../../include/functions_events.php.orig:104 +#: ../../include/functions_events.php.orig:167 +#: ../../include/functions_ui.php:3517 ../../include/functions_ui.php:3583 +#: ../../include/functions_modules.php:2435 +#: ../../include/functions_modules.php:2441 +#: ../../include/functions_modules.php:3377 +#: ../../include/functions_modules.php:3409 +#: ../../mobile/operation/modules.php:521 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:584 +#: ../../mobile/operation/modules.php:607 +#: ../../operation/agentes/pandora_networkmap.view.php:333 +#: ../../operation/agentes/pandora_networkmap.view.php:341 +#: ../../operation/agentes/status_monitor.php:1359 +#: ../../operation/agentes/status_monitor.php:1365 +#: ../../operation/agentes/status_monitor.php:1434 +#: ../../operation/agentes/status_monitor.php:1440 +#: ../../operation/events/events.php:1736 +#: ../../operation/events/events.php:1800 +#: ../../operation/events/events.php:1827 ../../operation/search_modules.php:96 +#: ../../operation/search_modules.php:123 +#: ../../enterprise/extensions/vmware/vmware_view.php:1016 +#: ../../enterprise/include/functions_services.php:2674 +#: ../../enterprise/include/functions_services.php:2703 +#: ../../enterprise/operation/agentes/policy_view.php:387 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/tag_view.php:925 +#: ../../enterprise/operation/agentes/tag_view.php:931 +#: ../../enterprise/operation/agentes/tag_view.php:972 +#: ../../enterprise/operation/agentes/tag_view.php:978 +msgid "NORMAL" +msgstr "正常" + +#: ../../include/class/Tree.class.php:685 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 +msgid "Module alerts" +msgstr "モジュールアラート" + +#: ../../include/class/WelcomeWindow.class.php:157 +msgid "Welcome to Pandora FMS" +msgstr "ようこそ Pandora FMS へ" + +#: ../../include/class/WelcomeWindow.class.php:158 +msgid "Do not show anymore" +msgstr "今後表示しない" + +#: ../../include/class/WelcomeWindow.class.php:167 +msgid "Cancel Configuration Window" +msgstr "設定ウインドウのキャンセル" + +#: ../../include/class/WelcomeWindow.class.php:172 +msgid "Are you sure you want to cancel this tutorial?" +msgstr "このチュートリアルをキャンセルしても良いですか?" + +#: ../../include/class/WelcomeWindow.class.php:427 +msgid "Please ensure mail configuration matches your needs" +msgstr "メール設定がニーズに合っていることを確認してください" + +#: ../../include/class/WelcomeWindow.class.php:461 +msgid "Create an agent" +msgstr "エージェント作成" + +#: ../../include/class/WelcomeWindow.class.php:486 +msgid "Create a module to check if an agent is online" +msgstr "エージェントがオンラインかどうかをチェックするモジュールの作成" + +#: ../../include/class/WelcomeWindow.class.php:511 +msgid "Be warned if something is wrong, create an alert on the module" +msgstr "何かが障害の場合は警告を受けるよう、モジュールにアラートを作成します" + +#: ../../include/class/WelcomeWindow.class.php:536 +msgid "Discover hosts and devices in your network" +msgstr "ネットワーク内のホストおよびデバイスの検出" + +#: ../../include/class/WelcomeWindow.class.php:564 +msgid "" +"If something is not working as expected, look for this icon and report!" +msgstr "期待どおりに機能しない場合は、このアイコンとレポートを探してください!" + +#: ../../include/class/OrderInterpreter.class.php:105 +#: ../../enterprise/meta/monitoring/tactical.php:40 +msgid "Tactical View" +msgstr "モニタ状態表示" + +#: ../../include/class/OrderInterpreter.class.php:123 +msgid "Agent Management" +msgstr "エージェント管理" + +#: ../../include/class/OrderInterpreter.class.php:157 +msgid "Manage Policies" +msgstr "ポリシー管理" + +#: ../../include/class/OrderInterpreter.class.php:171 +msgid "List Alerts" +msgstr "アラート一覧" + +#: ../../include/class/OrderInterpreter.class.php:195 +msgid "View Events" +msgstr "イベント表示" + +#: ../../include/class/OrderInterpreter.class.php:247 +msgid "Manage Servers" +msgstr "サーバ管理" + +#: ../../include/class/OrderInterpreter.class.php:261 +msgid "Edit User" +msgstr "ユーザ編集" + +#: ../../include/class/OrderInterpreter.class.php:271 +msgid "Tree View" +msgstr "ツリー表示" + +#: ../../include/class/OrderInterpreter.class.php:281 +msgid "Network Component" +msgstr "ネットワークコンポーネント" + +#: ../../include/class/OrderInterpreter.class.php:295 +msgid "Task List" +msgstr "タスク一覧" + +#: ../../include/class/OrderInterpreter.class.php:339 +msgid "Update Manager" +msgstr "アップデートマネージャ" + +#: ../../include/class/OrderInterpreter.class.php:353 +msgid "Manage Agent Groups" +msgstr "エージェントグループ管理" + +#: ../../include/class/OrderInterpreter.class.php:394 +msgid "GO TO " +msgstr "" + +#: ../../include/class/OrderInterpreter.class.php:423 +msgid "results found" +msgstr "件見つかりました" + +#: ../../include/class/OrderInterpreter.class.php:427 +msgid "No results found" +msgstr "見つかりませんでした" + +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:220 +#: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:222 +#: ../../include/functions_visual_map.php:1845 +#: ../../include/functions_visual_map.php:1847 +msgid "Last value: " +msgstr "最新の値: " + +#: ../../include/functions.php:231 +#: ../../enterprise/include/functions_reporting_csv.php:2029 +msgid "." +msgstr "." + +#: ../../include/functions.php:233 +msgid "," +msgstr "," + +#: ../../include/functions.php:498 ../../include/functions.php:638 +msgid "s" +msgstr "s" + +#: ../../include/functions.php:499 ../../include/functions.php:639 +msgid "d" +msgstr "d" + +#: ../../include/functions.php:500 ../../include/functions.php:640 +msgid "M" +msgstr "M" + +#: ../../include/functions.php:501 ../../include/functions.php:641 +msgid "Y" +msgstr "Y" + +#: ../../include/functions.php:502 ../../include/functions.php:642 +msgid "m" +msgstr "m" + +#: ../../include/functions.php:503 ../../include/functions.php:643 +msgid "h" +msgstr "h" + +#: ../../include/functions.php:504 ../../include/functions.php:644 +msgid "N" +msgstr "N" + +#: ../../include/functions.php:1021 ../../include/functions.php:1266 +#: ../../include/functions.php:1300 ../../include/functions_events.php:3083 +#: ../../include/functions_events.php.orig:2989 +#: ../../include/functions_graph.php:2880 +#: ../../include/functions_graph.php:3462 +#: ../../include/functions_graph.php:3463 +#: ../../include/functions_graph.php:4871 +#: ../../include/functions_incidents.php:34 +#: ../../include/functions_incidents.php:75 +msgid "Maintenance" +msgstr "メンテナンス" + +#: ../../include/functions.php:1025 ../../include/functions.php:1267 +#: ../../include/functions.php:1304 ../../include/functions_events.php:3087 +#: ../../include/functions_events.php.orig:2993 +#: ../../include/functions_graph.php:3467 +#: ../../include/functions_graph.php:3468 +#: ../../include/functions_graph.php:4875 +msgid "Informational" +msgstr "情報" + +#: ../../include/functions.php:1041 ../../include/functions.php:1269 +#: ../../include/functions.php:1320 ../../include/functions_graph.php:3477 +#: ../../include/functions_graph.php:3478 +#: ../../include/functions_graph.php:4891 +msgid "Minor" +msgstr "マイナー" + +#: ../../include/functions.php:1045 ../../include/functions.php:1271 +#: ../../include/functions.php:1324 ../../include/functions_graph.php:3487 +#: ../../include/functions_graph.php:3488 +#: ../../include/functions_graph.php:4895 +msgid "Major" +msgstr "メジャー" + +#: ../../include/functions.php:1220 ../../include/functions_events.php:3007 +#: ../../include/functions_events.php.orig:2913 +msgid "Monitor Critical" +msgstr "障害" + +#: ../../include/functions.php:1221 ../../include/functions_events.php:3011 +#: ../../include/functions_events.php.orig:2917 +msgid "Monitor Warning" +msgstr "警告" + +#: ../../include/functions.php:1222 ../../include/functions_events.php:3015 +#: ../../include/functions_events.php.orig:2921 +msgid "Monitor Normal" +msgstr "正常" + +#: ../../include/functions.php:1224 +msgid "Monitor Unknown" +msgstr "不明状態" + +#: ../../include/functions.php:1227 ../../include/functions_events.php:2641 +#: ../../include/functions_events.php:3023 +#: ../../include/functions_events.php.orig:2547 +#: ../../include/functions_events.php.orig:2929 +msgid "Alert recovered" +msgstr "復旧したアラート" + +#: ../../include/functions.php:1228 ../../include/functions_events.php:2689 +#: ../../include/functions_events.php:3027 +#: ../../include/functions_events.php.orig:2595 +#: ../../include/functions_events.php.orig:2933 +msgid "Alert ceased" +msgstr "停止されたアラート" + +#: ../../include/functions.php:1229 ../../include/functions_events.php:3031 +#: ../../include/functions_events.php.orig:2937 +msgid "Alert manual validation" +msgstr "承諾されたアラート" + +#: ../../include/functions.php:1231 +msgid "Agent created" +msgstr "エージェント作成" + +#: ../../include/functions.php:1232 ../../include/functions_events.php:3035 +#: ../../include/functions_events.php.orig:2941 +msgid "Recon host detected" +msgstr "自動検出" + +#: ../../include/functions.php:1235 ../../include/functions_events.php:2685 +#: ../../include/functions_events.php:3047 +#: ../../include/functions_events.php.orig:2591 +#: ../../include/functions_events.php.orig:2953 +msgid "Configuration change" +msgstr "設定変更" + +#: ../../include/functions.php:2530 +#, php-format +msgid "%s seconds" +msgstr "%s 秒" + +#: ../../include/functions.php:2533 ../../include/functions.php:2534 +#, php-format +msgid "%s minutes" +msgstr "%s 分" + +#: ../../include/functions.php:2542 ../../include/functions.php:2543 +#, php-format +msgid "%s months" +msgstr "%s ヶ月" + +#: ../../include/functions.php:2545 ../../include/functions.php:2546 +#, php-format +msgid "%s years" +msgstr "%s 年" + +#: ../../include/functions.php:2548 +msgid "Default values will be used" +msgstr "デフォルト値を利用します" + +#: ../../include/functions.php:2737 +msgid "The uploaded file was only partially uploaded" +msgstr "ファイルは部分的にのみアップロードされました" + +#: ../../include/functions.php:2741 +msgid "No file was uploaded" +msgstr "ファイルがアップロードされませんでした" + +#: ../../include/functions.php:2745 +msgid "Missing a temporary folder" +msgstr "テンポラリフォルダがありません" + +#: ../../include/functions.php:2749 +msgid "Failed to write file to disk" +msgstr "ファイルのディスクへの書き込みに失敗しました" + +#: ../../include/functions.php:2753 +msgid "File upload stopped by extension" +msgstr "拡張によりファイルのアップロードが停止されました" + +#: ../../include/functions.php:2757 +msgid "Unknown upload error" +msgstr "不明なアップロードエラー" + +#: ../../include/functions.php:2868 +msgid "No data found to export" +msgstr "エクスポートするデータがありません" + +#: ../../include/functions.php:3189 +#: ../../operation/gis_maps/render_view.php:136 +msgid "5 seconds" +msgstr "5 秒" + +#: ../../include/functions.php:3190 +#: ../../operation/gis_maps/render_view.php:137 +msgid "10 seconds" +msgstr "10 秒" + +#: ../../include/functions.php:3191 +msgid "15 seconds" +msgstr "15秒" + +#: ../../include/functions.php:3192 +#: ../../operation/gis_maps/render_view.php:138 +msgid "30 seconds" +msgstr "30 秒" + +#: ../../include/functions.php:3196 +#: ../../include/functions_notifications.php:722 +msgid "15 minutes" +msgstr "15 分" + +#: ../../include/functions.php:3662 +#: ../../enterprise/include/functions_dashboard.php:1020 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 +msgid "Previous" +msgstr "前へ" + +#: ../../include/functions.php:3668 +msgid "Summatory series" +msgstr "" + +#: ../../include/functions.php:3672 +msgid "Average series" +msgstr "" + +#: ../../include/functions.php:3696 ../../include/functions.php:3697 +#: ../../include/functions.php:3705 ../../include/functions.php:3711 +#: ../../include/functions.php:3747 ../../include/functions.php:3808 +msgid "Unit " +msgstr "単位 " + +#: ../../include/functions.php:3718 ../../include/functions.php:3754 +msgid "Min:" +msgstr "最小:" + +#: ../../include/functions.php:3723 ../../include/functions.php:3759 +msgid "Max:" +msgstr "最大:" + +#: ../../include/functions.php:3728 ../../include/functions.php:3764 +msgid "Avg:" +msgstr "平均:" + +#: ../../include/functions.php:3805 ../../include/functions.php:3813 +msgid "of module" +msgstr "" + +#: ../../include/functions.php:3830 +msgid "Projection" +msgstr "" + +#: ../../include/functions_networkmap.php:1287 +#: ../../include/functions_maps.php:42 ../../operation/search_main.php:73 +#: ../../operation/search_results.php:170 ../../operation/tree.php:93 +#: ../../enterprise/dashboard/widgets/tree_view.php:44 +#: ../../enterprise/include/functions_groups.php:33 +#: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/operation/agentes/ver_agente.php:218 +msgid "Policies" +msgstr "ポリシー" + +#: ../../include/functions_networkmap.php:1291 +msgid "Radial dynamic" +msgstr "放射状で動的" + +#: ../../include/functions_networkmap.php:1295 +#: ../../include/functions_maps.php:38 +msgid "Topology" +msgstr "トポロジ" + +#: ../../include/functions_networkmap.php:1313 +msgid "Create a new topology map" +msgstr "トポロジマップの新規作成" + +#: ../../include/functions_networkmap.php:1314 +msgid "Create a new group map" +msgstr "グループマップの新規作成" + +#: ../../include/functions_networkmap.php:1315 +msgid "Create a new dynamic map" +msgstr "新たな動的マップの作成" + +#: ../../include/functions_networkmap.php:1317 +msgid "Create a new radial dynamic map" +msgstr "放射状の動的マップを新規作成" + +#: ../../include/functions_networkmap.php:2032 +#: ../../include/functions_maps.php:73 +msgid "Copy of " +msgstr "コピー: " + +#: ../../include/functions_agents.php:881 +msgid "" +"There was an error copying the agent configuration, the copy has been " +"cancelled" +msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。" + +#: ../../include/functions_agents.php:2606 +#: ../../include/functions_agents.php:2645 +#: ../../include/functions_agents.php:2684 +msgid "No Monitors" +msgstr "モニタ項目なし" + +#: ../../include/functions_agents.php:2614 +#: ../../include/functions_agents.php:2653 +#: ../../include/functions_agents.php:2692 +#: ../../include/functions_reporting.php:9883 +msgid "At least one module in CRITICAL status" +msgstr "一つ以上のモジュールが致命的な状態です。" + +#: ../../include/functions_agents.php:2620 +#: ../../include/functions_agents.php:2659 +#: ../../include/functions_agents.php:2700 +#: ../../include/functions_reporting.php:9890 +msgid "At least one module in WARNING status" +msgstr "一つ以上のモジュールが警告状態です。" + +#: ../../include/functions_agents.php:2626 +#: ../../include/functions_agents.php:2665 +#: ../../include/functions_agents.php:2708 +#: ../../include/functions_reporting.php:9897 +msgid "At least one module is in UKNOWN status" +msgstr "一つ以上のモジュールが不明な状態です。" + +#: ../../include/functions_agents.php:2632 +#: ../../include/functions_agents.php:2671 +#: ../../include/functions_agents.php:2716 +#: ../../include/functions_reporting.php:9904 +msgid "All Monitors OK" +msgstr "全モニタ項目が正常" + +#: ../../include/functions_agents.php:3405 +#: ../../include/functions_agents.php:3459 +#: ../../include/functions_reporting_html.php:4499 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:390 +msgid "Agents ok" +msgstr "正常状態エージェント" + +#: ../../include/functions_agents.php:3415 +#: ../../include/functions_reporting_html.php:4490 +#: ../../mobile/operation/groups.php:143 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:364 +msgid "Agents critical" +msgstr "障害状態エージェント" + +#: ../../include/functions_agents.php:3425 +#: ../../include/functions_reporting_html.php:4493 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:377 +msgid "Agents warning" +msgstr "警告状態エージェント" + +#: ../../include/functions_agents.php:3435 +#: ../../include/functions_reporting_html.php:4502 +#: ../../mobile/operation/groups.php:146 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:403 +msgid "Agents unknown" +msgstr "不明なエージェント" + +#: ../../include/functions_agents.php:3449 +#: ../../include/functions_reporting_html.php:4508 +#: ../../mobile/operation/groups.php:140 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:416 +msgid "Agents not init" +msgstr "未初期化エージェント" + +#: ../../include/functions_agents.php:3552 +#: ../../enterprise/include/class/SAP.app.php:699 +msgid "SAP Login OK" +msgstr "SAP ログイン OK" + +#: ../../include/functions_agents.php:3553 +#: ../../enterprise/include/class/SAP.app.php:700 +msgid "SAP Dumps" +msgstr "" + +#: ../../include/functions_agents.php:3554 +#: ../../enterprise/include/class/SAP.app.php:701 +msgid "SAP lock entry list" +msgstr "" + +#: ../../include/functions_agents.php:3555 +#: ../../enterprise/include/class/SAP.app.php:702 +msgid "SAP canceled Jobs" +msgstr "SAP キャンセルジョブ" + +#: ../../include/functions_agents.php:3556 +#: ../../enterprise/include/class/SAP.app.php:703 +msgid "SAP Batch inputs erroneous" +msgstr "" + +#: ../../include/functions_agents.php:3557 +#: ../../enterprise/include/class/SAP.app.php:704 +msgid "SAP IDOC erroneous" +msgstr "" + +#: ../../include/functions_agents.php:3558 +#: ../../enterprise/include/class/SAP.app.php:705 +msgid "SAP IDOC OK" +msgstr "SAP IDOC OK" + +#: ../../include/functions_agents.php:3559 +#: ../../enterprise/include/class/SAP.app.php:706 +msgid "SAP WP without active restart" +msgstr "" + +#: ../../include/functions_agents.php:3560 +#: ../../enterprise/include/class/SAP.app.php:707 +msgid "SAP WP stopped" +msgstr "" + +#: ../../include/functions_agents.php:3561 +msgid "Average time of SAPGUI response " +msgstr "SAPGUI 応答の平均時間 " + +#: ../../include/functions_agents.php:3562 +#: ../../enterprise/include/class/SAP.app.php:709 +msgid "Dialog response time" +msgstr "ダイアログ応答時間" + +#: ../../include/functions_agents.php:3563 +msgid "Dialog Logged users " +msgstr "ダイアログログインユーザ " + +#: ../../include/functions_agents.php:3564 +#: ../../enterprise/include/class/SAP.app.php:711 +msgid "TRFC in error" +msgstr "エラー TRFC" + +#: ../../include/functions_agents.php:3565 +#: ../../enterprise/include/class/SAP.app.php:712 +msgid "QRFC in error SMQ2" +msgstr "SMQ2 エラーの QRFC" + +#: ../../include/functions_agents.php:3566 +#: ../../enterprise/include/class/SAP.app.php:713 +msgid "Number of Update WPs in error" +msgstr "エラーアップデート WP 数" + +#: ../../include/functions_alerts.php:460 +#: ../../enterprise/include/functions_policies.php:511 +#: ../../enterprise/include/functions_policies.php:526 +msgid "copy" +msgstr "コピー" + +#: ../../include/functions_alerts.php:656 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:110 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:122 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:123 +msgid "Regular expression" +msgstr "正規表現" + +#: ../../include/functions_alerts.php:657 +msgid "Max and min" +msgstr "最大および最小" + +#: ../../include/functions_alerts.php:660 +msgid "Equal to" +msgstr "同じ値" + +#: ../../include/functions_alerts.php:661 +msgid "Not equal to" +msgstr "異なる値" + +#: ../../include/functions_alerts.php:664 +#: ../../enterprise/operation/agentes/wux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:337 +msgid "Unknown status" +msgstr "不明状態" + +#: ../../include/functions_alerts.php:665 +msgid "On Change" +msgstr "変化発生" + +#: ../../include/functions_alerts.php:667 +msgid "Not normal status" +msgstr "非正常状態" + +#: ../../include/functions_alerts.php:1135 +#: ../../include/functions_network_components.php:617 +#: ../../enterprise/include/functions_local_components.php:342 +msgid "Copy of" +msgstr "複製" + +#: ../../include/functions_alerts.php:1691 +msgid "No actions defined" +msgstr "アクションが定義されていません" + +#: ../../include/functions_alerts.php:2764 +msgid "Alert and command group does not match" +msgstr "アラートとコマンドグループが一致しません" + +#: ../../include/functions_api.php:93 +msgid "No set or get or help operation." +msgstr "設定、参照、ヘルプの操作がありません。" + +#: ../../include/functions_api.php:103 +msgid "This operation does not exist." +msgstr "この操作は存在しません。" + +#: ../../include/functions_api.php:113 +msgid "Id does not exist in BD." +msgstr "ID が存在しません。" + +#: ../../include/functions_api.php:123 +msgid "This operation can not be used in cluster elements." +msgstr "クラスタ要素ではこの操作は使えません。" + +#: ../../include/functions_api.php:133 +msgid "The user has not enough permission to make this action." +msgstr "ユーザにこの操作をするための十分な権限がありません。" + +#: ../../include/functions_api.php:143 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 +msgid "No data to show." +msgstr "表示するデータがありません。" + +#: ../../include/functions_api.php:153 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:309 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:72 +#: ../../enterprise/godmode/agentes/collections.php:57 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:18 +#: ../../enterprise/include/functions_enterprise_api.php:3044 +#: ../../enterprise/include/functions_enterprise_api.php:5648 +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console (Metaconsole)." +msgstr "これは、この環境における管理コンソールではありません。中央管理コンソール(メタコンソール)からこの機能を管理してください。" + +#: ../../include/functions_api.php:1078 +msgid "Does not exist agent with this name." +msgstr "この名前のエージェントが存在しません。" + +#: ../../include/functions_api.php:1088 +msgid "Does not exist module with this name." +msgstr "この名前のモジュールがありません。" + +#: ../../include/functions_api.php:1153 +msgid "Does not exist the pair alias/module required." +msgstr "別名/モジュールのペアが必要です。" + +#: ../../include/functions_api.php:1352 +msgid "The agent parent don`t exist." +msgstr "エージェントの親が存在しません。" + +#: ../../include/functions_api.php:1357 +msgid "The user cannot access to parent agent." +msgstr "ユーザが親エージェントにアクセスできません。" + +#: ../../include/functions_api.php:1643 +msgid "Could not be created for unknown reason" +msgstr "不明な理由で作成できませんでした" + +#: ../../include/functions_api.php:1686 +msgid "Error creating OS" +msgstr "OS 作成エラー" + +#: ../../include/functions_api.php:1715 +msgid "Success updating OS" +msgstr "OS を更新しました" + +#: ../../include/functions_api.php:1898 ../../include/functions_api.php:8239 +#: ../../include/functions_api.php:13996 +msgid "Correct Delete" +msgstr "削除しました。" + +#: ../../include/functions_api.php:3115 +msgid "" +"Error in creation network module. Id_module_type is not correct for network " +"modules." +msgstr "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が不正です。" + +#: ../../include/functions_api.php:3194 +msgid "Error in creation network module." +msgstr "ネットワークモジュールの作成に失敗しました。" + +#: ../../include/functions_api.php:3227 +msgid "Error updating network module. Module name cannot be left blank." +msgstr "ネットワークモジュール更新エラー。モジュール名が指定されていません。" + +#: ../../include/functions_api.php:3246 +msgid "Error updating network module. Id_module doesn't exist." +msgstr "ネットワークモジュール更新エラー。id_module が存在しません。" + +#: ../../include/functions_api.php:3272 +msgid "Error updating network module. Id_module exists in the new agent." +msgstr "ネットワークモジュール更新エラー。id_module が新規エージェントにあります。" + +#: ../../include/functions_api.php:3330 +msgid "Network module updated." +msgstr "ネットワークモジュールを更新しました。" + +#: ../../include/functions_api.php:3360 +msgid "Error in creation plugin module. Id_plugin cannot be left blank." +msgstr "ラグインモジュール作成エラー。id_plugin が指定されていません。" + +#: ../../include/functions_api.php:3461 +msgid "Error in creation plugin module." +msgstr "プラグインモジュール作成エラー。" + +#: ../../include/functions_api.php:3493 +msgid "Error updating plugin module. Id_module cannot be left blank." +msgstr "プラグインモジュール更新エラー。id_module が指定されていません。" + +#: ../../include/functions_api.php:3518 +msgid "Error updating plugin module. Id_module exists in the new agent." +msgstr "プラグインモジュール更新エラー。id_module が新規エージェントにあります。" + +#: ../../include/functions_api.php:3526 +msgid "Error updating plugin module. Id_agent doesn't exist." +msgstr "プラグインモジュールの更新エラー。id_agent が存在しません。" + +#: ../../include/functions_api.php:3590 +msgid "Plugin module updated." +msgstr "プラグインモジュールを更新しました。" + +#: ../../include/functions_api.php:3620 +msgid "Error in creation data module. Module_name cannot be left blank." +msgstr "データモジュール作成エラー。module_name が指定されていません。" + +#: ../../include/functions_api.php:3712 ../../include/functions_api.php:3803 +#: ../../include/functions_api.php:3956 +msgid "Error in creation data module." +msgstr "データモジュール作成エラー。" + +#: ../../include/functions_api.php:3744 +msgid "Error in creation synthetic module. Module_name cannot be left blank." +msgstr "統合モジュール作成エラー。モジュール名は空にできません。" + +#: ../../include/functions_api.php:3767 ../../include/functions_api.php:3773 +msgid "Error in creation synthetic module. Agent name doesn't exist." +msgstr "統合モジュール作成エラー。エージェント名が存在しません。" + +#: ../../include/functions_api.php:3946 ../../include/functions_api.php:4099 +msgid "Synthetic module created ID: " +msgstr "統合モジュールを作成しました。ID: " + +#: ../../include/functions_api.php:4132 +msgid "Error updating data module. Id_module cannot be left blank." +msgstr "データモジュール更新エラー。id_module が指定されていません。" + +#: ../../include/functions_api.php:4157 +msgid "Error updating data module. Id_module exists in the new agent." +msgstr "データモジュール更新エラー。id_module が新規エージェントにあります。" + +#: ../../include/functions_api.php:4165 +msgid "Error updating data module. Id_agent doesn't exist." +msgstr "データモジュールの更新エラー。id_agent が存在しません。" + +#: ../../include/functions_api.php:4216 +msgid "Data module updated." +msgstr "データモジュールを更新しました。" + +#: ../../include/functions_api.php:4252 +msgid "Error in creation SNMP module. Module_name cannot be left blank." +msgstr "SNMPモジュール作成エラー。module_name が指定されていません。" + +#: ../../include/functions_api.php:4257 +msgid "" +"Error in creation SNMP module. Invalid id_module_type for a SNMP module." +msgstr "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。" + +#: ../../include/functions_api.php:4288 ../../include/functions_api.php:4479 +#: ../../include/functions_api.php:7675 +msgid "" +"Error in creation SNMP module. snmp3_priv_method doesn't exist. Set it to " +"'AES' or 'DES'. " +msgstr "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または 'DES' を設定してください。 " + +#: ../../include/functions_api.php:4293 ../../include/functions_api.php:4490 +#: ../../include/functions_api.php:7680 +msgid "" +"Error in creation SNMP module. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"SNMPモジュール作成エラー。snmp3_sec_level がありません。 'authNoPriv'、'authPriv'、noAuthNoPriv' " +"のいずれかを設定してください。 " + +#: ../../include/functions_api.php:4298 ../../include/functions_api.php:4498 +#: ../../include/functions_api.php:7685 +msgid "" +"Error in creation SNMP module. snmp3_auth_method doesn't exist. Set it to " +"'MD5' or 'SHA'. " +msgstr "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または 'SHA' を設定してください。 " + +#: ../../include/functions_api.php:4402 +msgid "Error in creation SNMP module." +msgstr "SNMPモジュール作成エラー。" + +#: ../../include/functions_api.php:4436 +msgid "Error updating SNMP module. Id_module cannot be left blank." +msgstr "SNMPモジュール更新エラー。id_module が指定されていません。" + +#: ../../include/functions_api.php:4461 +msgid "Error updating SNMP module. Id_module exists in the new agent." +msgstr "SNMPモジュール更新エラー。id_moduleが新規エージェントにあります。" + +#: ../../include/functions_api.php:4469 +msgid "Error updating snmp module. Id_agent doesn't exist." +msgstr "snmp モジュールの更新エラー。id_agent が存在しません。" + +#: ../../include/functions_api.php:4590 +msgid "SNMP module updated." +msgstr "SNMPモジュールを更新しました。" + +#: ../../include/functions_api.php:4626 +msgid "" +"Error creating network component. Network component name cannot be left " +"blank." +msgstr "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定されていません。" + +#: ../../include/functions_api.php:4631 +msgid "" +"Error creating network component. Incorrect value for Network component type " +"field." +msgstr "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正です。" + +#: ../../include/functions_api.php:4636 +msgid "" +"Error creating network component. Network component group cannot be left " +"blank." +msgstr "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指定されていません。" + +#: ../../include/functions_api.php:4674 +msgid "" +"Error creating network component. This network component already exists." +msgstr "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在します。" + +#: ../../include/functions_api.php:4722 +msgid "" +"Error creating plugin component. Plugin component name cannot be left blank." +msgstr "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されていません。" + +#: ../../include/functions_api.php:4728 +msgid "Error creating plugin component. Incorrect value for Id plugin." +msgstr "プラグインコンポーネント作成エラー。プラグイン ID が不正です。" + +#: ../../include/functions_api.php:4733 +msgid "" +"Error creating plugin component. Plugin component group cannot be left blank." +msgstr "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定されていません。" + +#: ../../include/functions_api.php:4775 +msgid "" +"Error creating plugin component. This plugin component already exists." +msgstr "プラグインコンポーネント作成エラー。プラグインコンポーネントがすでに存在します。" + +#: ../../include/functions_api.php:4817 +msgid "" +"Error creating SNMP component. SNMP component name cannot be left blank." +msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネント名が指定されていません。" + +#: ../../include/functions_api.php:4827 +msgid "" +"Error creating SNMP component. Incorrect value for Snmp component type field." +msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントタイプが不正です。" + +#: ../../include/functions_api.php:4832 +msgid "" +"Error creating SNMP component. Snmp component group cannot be left blank." +msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていません。" + +#: ../../include/functions_api.php:4843 +msgid "" +"Error creating SNMP component. snmp3_priv_method doesn't exist. Set it to " +"'AES' or 'DES'. " +msgstr "" +"SNMPコンポーネント作成エラー。snmp3_priv_methd が存在しません。'AES' または 'DES' を設定してください。 " + +#: ../../include/functions_api.php:4853 +msgid "" +"Error creating SNMP component. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"SNMPコンポーネント作成エラー。snmp3_sec_level " +"が存在しません。'authNoPriv'、'authPriv'、'noAuthNoPriv' のいずれかを設定してください。 " + +#: ../../include/functions_api.php:4861 +msgid "" +"Error creating SNMP component. snmp3_auth_method doesn't exist. Set it to " +"'MD5' or 'SHA'. " +msgstr "" +"SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' または 'SHA' を設定してください。 " + +#: ../../include/functions_api.php:4944 +msgid "Error creating SNMP component. This SNMP component already exists." +msgstr "SNMPコンポーネント作成エラー。このSNMPコンポーネントはすでに存在します。" + +#: ../../include/functions_api.php:4986 +msgid "" +"Error creating local component. Local component name cannot be left blank." +msgstr "ローカルコンポーネント作成エラー。ローカルコンポーネント名が指定されていません。" + +#: ../../include/functions_api.php:4999 +msgid "" +"Error creating local component. Local component group cannot be left blank." +msgstr "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されていません。" + +#: ../../include/functions_api.php:5032 +msgid "Error creating local component." +msgstr "ローカルコンポーネント作成エラー。" + +#: ../../include/functions_api.php:5040 +msgid "Error creating local component. This local component already exists." +msgstr "ローカルコンポーネント作成エラー。このローカルコンポーネントはすでに存在します。" + +#: ../../include/functions_api.php:5085 +msgid "" +"Error getting module value from all agents. Module name cannot be left blank." +msgstr "全エージェントからのモジュール値取得エラー。モジュール名が指定されていません。" + +#: ../../include/functions_api.php:5095 +msgid "" +"Error getting module value from all agents. Module name doesn't exist." +msgstr "全エージェントからのモジュール値取得エラー。モジュール名が存在しません。" + +#: ../../include/functions_api.php:5158 +msgid "Error creating alert template. Template name cannot be left blank." +msgstr "アラートテンプレート作成エラー。テンプレート名が指定されていません。" + +#: ../../include/functions_api.php:5230 +msgid "Error creating alert template." +msgstr "アラートテンプレート作成エラー。" + +#: ../../include/functions_api.php:5270 +msgid "Error updating alert template. Id_template cannot be left blank." +msgstr "アラートテンプレート更新エラー。id_templateが指定されていません。" + +#: ../../include/functions_api.php:5280 +msgid "Error updating alert template. Id_template doesn't exist." +msgstr "アラートテンプレート更新エラー。id_templateが存在しません。" + +#: ../../include/functions_api.php:5331 +msgid "Error updating alert template." +msgstr "アラートテンプレート更新エラー。" + +#: ../../include/functions_api.php:5338 +msgid "Correct updating of alert template" +msgstr "アラートテンプレートの更新内容を修正してください" + +#: ../../include/functions_api.php:5367 +msgid "Error deleting alert template. Id_template cannot be left blank." +msgstr "アラートテンプレート削除エラー。id_templateが指定されていません。" + +#: ../../include/functions_api.php:5378 +msgid "Error deleting alert template." +msgstr "アラートテンプレート削除エラー。" + +#: ../../include/functions_api.php:5385 +msgid "Correct deleting of alert template." +msgstr "アラートテンプレートの削除内容を修正してください" + +#: ../../include/functions_api.php:5436 +msgid "Error getting all alert templates." +msgstr "全アラートテンプレート取得エラー。" + +#: ../../include/functions_api.php:5481 +msgid "Error getting all alert commands." +msgstr "全アラートコマンドの取得エラー" + +#: ../../include/functions_api.php:5516 +msgid "Error getting alert template. Id_template doesn't exist." +msgstr "アラートテンプレート取得エラー。id_templateが存在しません。" + +#: ../../include/functions_api.php:5544 +msgid "Error getting alert template." +msgstr "アラートテンプレート取得エラー。" + +#: ../../include/functions_api.php:5608 +#: ../../enterprise/include/functions_enterprise_api.php:2369 +msgid "Error getting alert actions." +msgstr "アラートアクション取得エラー" + +#: ../../include/functions_api.php:5658 +msgid "Error getting module groups." +msgstr "モジュールグループ取得エラー。" + +#: ../../include/functions_api.php:5722 +msgid "Error getting plugins." +msgstr "プラグイン取得エラー。" + +#: ../../include/functions_api.php:5770 ../../include/functions_api.php:5776 +msgid "Error creating module from network component. Agent doesn't exist." +msgstr "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しません。" + +#: ../../include/functions_api.php:5784 +msgid "" +"Error creating module from network component. Network component doesn't " +"exist." +msgstr "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネントが存在しません。" + +#: ../../include/functions_api.php:5810 ../../include/functions_api.php:11285 +#: ../../include/functions_api.php:11351 ../../include/functions_api.php:11632 +#: ../../include/functions_api.php:11713 +#, php-format +msgid "%d agents affected" +msgstr "%d エージェントに影響します" + +#: ../../include/functions_api.php:5816 +msgid "Error creating module from network component. Error creating module." +msgstr "ネットワークコンポーネントからのモジュール作成エラー。モジュール作成エラー。" + +#: ../../include/functions_api.php:5847 +msgid "Error assigning module to template. Id_template cannot be left blank." +msgstr "テンプレートへのモジュール割当エラー。id_templateが指定されていません。" + +#: ../../include/functions_api.php:5855 +msgid "Error assigning module to template. Id_module cannot be left blank." +msgstr "テンプレートへのモジュール割当エラー。id_moduleが指定されていません。" + +#: ../../include/functions_api.php:5863 +msgid "Error assigning module to template. Id_agent cannot be left blank." +msgstr "テンプレートへのモジュール割当エラー。id_agentが指定されていません。" + +#: ../../include/functions_api.php:5880 +msgid "Error assigning module to template. Id_template doensn't exists." +msgstr "テンプレートへのモジュール割当エラー。id_templateが存在しません。" + +#: ../../include/functions_api.php:5888 +msgid "Error assigning module to template. Id_agent doesn't exist." +msgstr "テンプレートへのモジュール割当エラー。id_agentが存在しません。" + +#: ../../include/functions_api.php:5895 +msgid "Error assigning module to template. Id_module doesn't exist." +msgstr "テンプレートへのモジュール割当エラー。id_moduleが存在しません。" + +#: ../../include/functions_api.php:5903 +msgid "Error assigning module to template." +msgstr "テンプレートへのモジュール割当エラー。" + +#: ../../include/functions_api.php:5937 +msgid "" +"Error deleting module template. Id_module_template cannot be left blank." +msgstr "モジュールテンプレート削除エラー。id_module_templateが指定されていません。" + +#: ../../include/functions_api.php:5944 +msgid "Error deleting module template. Id_module_template doesn't exist." +msgstr "モジュールテンプレート削除エラー。id_module_templateが存在しません。" + +#: ../../include/functions_api.php:5952 ../../include/functions_api.php:6060 +msgid "Error deleting module template." +msgstr "モジュールテンプレート削除エラー。" + +#: ../../include/functions_api.php:5954 ../../include/functions_api.php:6062 +msgid "Correct deleting of module template." +msgstr "モジュールテンプレートの削除内容を修正してください。" + +#: ../../include/functions_api.php:6042 +#, php-format +msgid "Module template has been deleted in %d agents." +msgstr "%d エージェントのモジュールテンプレートを削除しました" + +#: ../../include/functions_api.php:6135 +msgid "Error validate all alerts. Failed " +msgstr "全アラートの承諾エラー。失敗数: " + +#: ../../include/functions_api.php:6137 +#, php-format +msgid "Correct validating of all alerts (total %d)." +msgstr "全アラートを承諾しました(トータル %d)。" + +#: ../../include/functions_api.php:6172 +msgid "Error validating all alert policies." +msgstr "全アラートポリシーの承諾エラー。" + +#: ../../include/functions_api.php:6229 +msgid "Error validate all policy alerts. Failed " +msgstr "全ポリシーアラートの承諾エラー。失敗数: " + +#: ../../include/functions_api.php:6231 +msgid "Correct validating of all policy alerts." +msgstr "全ポリシーアラートの承諾内容を修正してください。" + +#: ../../include/functions_api.php:6263 +msgid "Error stopping downtime. Id_downtime cannot be left blank." +msgstr "計画停止の中断エラー。id_downtimeが指定されていません。" + +#: ../../include/functions_api.php:6274 +msgid "No action has been taken." +msgstr "アクションが行われていません。" + +#: ../../include/functions_api.php:6276 +msgid "Error stopping downtime." +msgstr "計画停止の停止エラー" + +#: ../../include/functions_api.php:6278 +msgid "Downtime stopped." +msgstr "計画停止を中断しました。" + +#: ../../include/functions_api.php:6405 +msgid "Error set tag." +msgstr "タグ設定エラー" + +#: ../../include/functions_api.php:6467 +msgid "No planned downtime retrieved" +msgstr "計画停止がありません" + +#: ../../include/functions_api.php:6754 +msgid "and this modules are doesn't exists or not applicable a this agents: " +msgstr "これらのモジュールが存在しないかまたはエージェントに適用できません : " + +#: ../../include/functions_api.php:6758 +msgid "and this agents are generate problems: " +msgstr "これらのエージェントでエラーです : " + +#: ../../include/functions_api.php:6762 +msgid "and this agents with ids are doesn't exists: " +msgstr "これらのエージェントIDは存在しません : " + +#: ../../include/functions_api.php:6802 +msgid "Error adding data module to policy. Id_policy cannot be left blank." +msgstr "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。" + +#: ../../include/functions_api.php:6812 +msgid "Error adding data module to policy. Module_name cannot be left blank." +msgstr "ポリシーへのデータモジュール追加エラー。module_nameが指定されていません。" + +#: ../../include/functions_api.php:6820 +msgid "Error adding data module to policy." +msgstr "ポリシーへのデータモジュール追加エラー。" + +#: ../../include/functions_api.php:6858 +msgid "" +"Error adding data module to policy. The module is already in the policy." +msgstr "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内にあります。" + +#: ../../include/functions_api.php:6910 +msgid "Error updating data module in policy. Id_policy cannot be left blank." +msgstr "ポリシーのデータモジュール更新エラー。id_policyが指定されていません。" + +#: ../../include/functions_api.php:6919 +msgid "" +"Error updating data module in policy. Id_policy_module cannot be left blank." +msgstr "ポリシーのデータモジュール更新エラー。id_policy_moduleが指定されていません。" + +#: ../../include/functions_api.php:6927 +msgid "Error updating data module in policy. Module doesn't exist." +msgstr "ポリシーのデータモジュール更新エラー。モジュールが存在しません。" + +#: ../../include/functions_api.php:6934 +msgid "" +"Error updating data module in policy. Module type is not network type." +msgstr "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイプではありません。" + +#: ../../include/functions_api.php:6984 +msgid "Data policy module updated." +msgstr "データポリシーモジュールを更新しました。" + +#: ../../include/functions_api.php:7019 +msgid "" +"Error adding network module to policy. Id_policy cannot be left blank." +msgstr "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていません。" + +#: ../../include/functions_api.php:7032 +msgid "" +"Error adding network module to policy. Module_name cannot be left blank." +msgstr "ポリシーへのネットワークモジュール追加エラー。module_nameが指定されていません。" + +#: ../../include/functions_api.php:7040 +msgid "" +"Error adding network module to policy. Id_module_type is not correct for " +"network modules." +msgstr "ポリシーへのネットワークモジュール追加エラー。id_module_typeがネットワークモジュールとして不正です。" + +#: ../../include/functions_api.php:7058 +msgid "Error adding network module to policy." +msgstr "ポリシーへのネットワークモジュール追加エラー。" + +#: ../../include/functions_api.php:7098 +msgid "" +"Error adding network module to policy. The module is already in the policy." +msgstr "ポリシーへのネットワークモジュール追加エラー。指定したモジュールはすでにポリシー内にあります。" + +#: ../../include/functions_api.php:7140 +msgid "" +"Error updating network module in policy. Id_policy cannot be left blank." +msgstr "ポリシーのネットワークモジュール更新エラー。id_policyが指定されていません。" + +#: ../../include/functions_api.php:7148 +msgid "" +"Error updating network module in policy. Id_policy_module cannot be left " +"blank." +msgstr "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていません。" + +#: ../../include/functions_api.php:7159 +msgid "Error updating network module in policy. Module doesn't exist." +msgstr "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。" + +#: ../../include/functions_api.php:7167 +msgid "" +"Error updating network module in policy. Module type is not network type." +msgstr "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークのタイプではありません。" + +#: ../../include/functions_api.php:7211 +msgid "Network policy module updated." +msgstr "ネットワークポリシーモジュールを更新しました。" + +#: ../../include/functions_api.php:7241 +msgid "Error adding plugin module to policy. Id_policy cannot be left blank." +msgstr "ポリシーへのプラグインモジュール追加エラー。id_policyが指定されていません。" + +#: ../../include/functions_api.php:7251 +msgid "" +"Error adding plugin module to policy. Module_name cannot be left blank." +msgstr "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていません。" + +#: ../../include/functions_api.php:7256 +msgid "Error adding plugin module to policy. Id_plugin cannot be left blank." +msgstr "ポリシーへのプラグインモジュール追加エラー。id_pluginが指定されていません。" + +#: ../../include/functions_api.php:7264 +msgid "Error adding plugin module to policy." +msgstr "ポリシーへのプラグインモジュール追加エラー。" + +#: ../../include/functions_api.php:7308 +msgid "" +"Error adding plugin module to policy. The module is already in the policy." +msgstr "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー内にあります。" + +#: ../../include/functions_api.php:7351 +msgid "" +"Error updating plugin module in policy. Id_policy cannot be left blank." +msgstr "ポリシーのプラグインモジュール更新エラー。id_policyが指定されていません。" + +#: ../../include/functions_api.php:7359 +msgid "" +"Error updating plugin module in policy. Id_policy_module cannot be left " +"blank." +msgstr "ポリシーのプラグインモジュール更新エラー。id_policy_moduleが指定されていません。" + +#: ../../include/functions_api.php:7370 +msgid "Error updating plugin module in policy. Module doesn't exist." +msgstr "ポリシーのプラグインモジュール更新エラー。モジュールが存在しません。" + +#: ../../include/functions_api.php:7378 +msgid "" +"Error updating plugin module in policy. Module type is not network type." +msgstr "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタイプではありません。" + +#: ../../include/functions_api.php:7438 +msgid "Plugin policy module updated." +msgstr "プラグインポリシーモジュールを更新しました。" + +#: ../../include/functions_api.php:7524 +#, php-format +msgid "Remote config of module %s not available" +msgstr "モジュール %s のリモート設定がありません" + +#: ../../include/functions_api.php:7641 +msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." +msgstr "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。" + +#: ../../include/functions_api.php:7651 +msgid "Error adding SNMP module to policy. Module_name cannot be left blank." +msgstr "SNMPモジュールのポリシーへの追加エラー。module_nameが指定されていません。" + +#: ../../include/functions_api.php:7659 +msgid "Error adding SNMP module to policy." +msgstr "SNMPモジュールのポリシーへの追加エラー。" + +#: ../../include/functions_api.php:7664 +msgid "" +"Error adding SNMP module to policy. Id_module_type is not correct for SNMP " +"modules." +msgstr "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用になっていません。" + +#: ../../include/functions_api.php:7758 +msgid "" +"Error adding SNMP module to policy. The module is already in the policy." +msgstr "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在します。" + +#: ../../include/functions_api.php:7800 +msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." +msgstr "ポリシー内のSNMPモジュール更新エラー。id_policyが指定されていません。" + +#: ../../include/functions_api.php:7805 +msgid "" +"Error updating SNMP module in policy. Id_policy_module cannot be left blank." +msgstr "ポリシー内のSNMPモジュール更新エラー。id_policy_moduleが指定されていません。" + +#: ../../include/functions_api.php:7813 +msgid "Error updating SNMP module in policy. Module doesn't exist." +msgstr "ポリシー内のSNMPモジュール更新エラー。モジュールが存在しません。" + +#: ../../include/functions_api.php:7818 +msgid "Error updating SNMP module in policy. Module type is not SNMP type." +msgstr "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありません。" + +#: ../../include/functions_api.php:7827 +msgid "" +"Error updating SNMP module. snmp3_priv_method doesn't exist. Set it to 'AES' " +"or 'DES'. " +msgstr "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' を指定してください。 " + +#: ../../include/functions_api.php:7839 +msgid "" +"Error updating SNMP module. snmp3_sec_level doesn't exist. Set it to " +"'authNoPriv' or 'authPriv' or 'noAuthNoPriv'. " +msgstr "" +"SNMPモジュール更新エラー。snmp3_sec_level がありません。'authNoPriv'、'authPriv'、'noAuthNoPriv' " +"のいずれかを指定してください。 " + +#: ../../include/functions_api.php:7848 +msgid "" +"Error updating SNMP module. snmp3_auth_method doesn't exist. Set it to 'MD5' " +"or 'SHA'. " +msgstr "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または 'SHA' を指定してください。 " + +#: ../../include/functions_api.php:7934 +msgid "SNMP policy module updated." +msgstr "SNMPポリシーモジュールを更新しました。" + +#: ../../include/functions_api.php:7955 ../../include/functions_api.php:7988 +msgid "Error deleting agent from policy. Policy cannot be left blank." +msgstr "ポリシーからのエージェント削除エラー。ポリシーを空白にすることはできません。" + +#: ../../include/functions_api.php:7960 +msgid "Error deleting agent from policy. Agent cannot be left blank." +msgstr "ポリシーからのエージェント削除エラー。エージェントは空白にできません。" + +#: ../../include/functions_api.php:7966 +msgid "Error deleting agent from policy. Node ID cannot be left blank." +msgstr "ポリシーからのエージェント削除エラー。ノード ID は空白にできません。" + +#: ../../include/functions_api.php:7993 +#: ../../enterprise/include/functions_enterprise_api.php:2671 +msgid "Error adding agent to policy. Agent name cannot be left blank." +msgstr "ポリシーへのエージェント追加エラー。エージェント名は空白にできません。" + +#: ../../include/functions_api.php:8038 +msgid "Error in group creation. Group_name cannot be left blank." +msgstr "グループ作成エラー。group_name が指定されていません。" + +#: ../../include/functions_api.php:8046 +msgid "Error in group creation. Icon_name cannot be left blank." +msgstr "グループ作成エラー。icon_name が指定されていません。" + +#: ../../include/functions_api.php:8059 +msgid "Error in group creation. Id_parent_group doesn't exist." +msgstr "グループ作成エラー。id_parent_group が存在しません。" + +#: ../../include/functions_api.php:8088 +msgid "Error in group creation." +msgstr "グループ作成エラー。" + +#: ../../include/functions_api.php:8145 ../../include/functions_api.php:10845 +#: ../../include/functions_api.php:10898 +msgid "There is not any group with the id provided" +msgstr "指定した ID のグループが存在しません" + +#: ../../include/functions_api.php:8275 +msgid "Error in netflow filter creation. Filter name cannot be left blank." +msgstr "Netflow フィルタ作成エラー。フィルタ名が空です。" + +#: ../../include/functions_api.php:8280 +msgid "Error in netflow filter creation. Group id cannot be left blank." +msgstr "Netflow フィルタ作成エラー。グループ ID が空です。" + +#: ../../include/functions_api.php:8286 +msgid "Error in netflow filter creation. Id_group doesn't exist." +msgstr "netflow フィルタ作成エラー。id_group が存在しません。" + +#: ../../include/functions_api.php:8297 +msgid "Error in netflow filter creation. Filter cannot be left blank." +msgstr "Netflow フィルタ作成エラー。フィルタが空です。" + +#: ../../include/functions_api.php:8302 +msgid "Error in netflow filter creation. Aggregate_by cannot be left blank." +msgstr "Netflow フィルタ作成エラー。集約設定が空です。" + +#: ../../include/functions_api.php:8307 +msgid "Error in netflow filter creation. Output_format cannot be left blank." +msgstr "Netflow フィルタ作成エラー。出力フォーマットが空です。" + +#: ../../include/functions_api.php:8325 +msgid "Error in netflow filter creation." +msgstr "Netflow フィルタ作成エラー。" + +#: ../../include/functions_api.php:8542 +msgid "Create user." +msgstr "ユーザ作成" + +#: ../../include/functions_api.php:8596 +msgid "Error updating user. Id_user cannot be left blank." +msgstr "ユーザ更新エラー。id_user が指定されていません。" + +#: ../../include/functions_api.php:8606 +msgid "Error updating user. Id_user doesn't exist." +msgstr "ユーザ更新エラー。id_user が存在しません。" + +#: ../../include/functions_api.php:8623 +msgid "Error updating user. Password info incorrect." +msgstr "ユーザ更新エラー。パスワード情報が不正です。" + +#: ../../include/functions_api.php:8631 +msgid "Updated user." +msgstr "ユーザを更新しました。" + +#: ../../include/functions_api.php:8673 +msgid "Error enable/disable user. Id_user cannot be left blank." +msgstr "ユーザの有効化/無効化エラー。id_user は空にできません。" + +#: ../../include/functions_api.php:8681 +msgid "Error enable/disable user. Enable/disable value cannot be left blank." +msgstr "ユーザの有効化/無効化エラー。有効化/無効化の値は空にできません。" + +#: ../../include/functions_api.php:8689 +msgid "Error enable/disable user. The user doesn't exist." +msgstr "ユーザの有効化/無効化エラー。ユーザが存在しません。" + +#: ../../include/functions_api.php:8700 +msgid "Error in user enabling/disabling." +msgstr "ユーザの有効化/無効化エラー。" + +#: ../../include/functions_api.php:8708 +msgid "Enabled user." +msgstr "ユーザを有効化しました。" + +#: ../../include/functions_api.php:8716 +msgid "Disabled user." +msgstr "ユーザを無効化しました。" + +#: ../../include/functions_api.php:8994 +#, php-format +msgid "Template have been inserted in %d agents." +msgstr "%d エージェントにテンプレートを挿入しました。" + +#: ../../include/functions_api.php:9166 +msgid "XML file was generated successfully in path: " +msgstr "次のパスに XML ファイルを生成しました: " + +#: ../../include/functions_api.php:9306 +#, php-format +msgid "Module has been created in %d agents." +msgstr "%d エージェントにモジュールを作成しました。" + +#: ../../include/functions_api.php:9428 +#, php-format +msgid "Action has been set for %d agents." +msgstr "%d エージェントにアクションを設定しました。" + +#: ../../include/functions_api.php:9558 +#, php-format +msgid "Created/Updated %s/%s module groups" +msgstr "モジュールグループを作成(%s)/更新(%s)しました" + +#: ../../include/functions_api.php:9562 +#, php-format +msgid "Error creating/updating %s/%s module groups
    " +msgstr "%s/%s モジュールグループの作成/更新エラー
    " + +#: ../../include/functions_api.php:9569 ../../include/functions_api.php:13601 +msgid "This function is only for metaconsole" +msgstr "この機能はメタコンソール専用です。" + +#: ../../include/functions_api.php:9616 +msgid "Name cannot be empty." +msgstr "名前は空にできません。" + +#: ../../include/functions_api.php:9621 +msgid "Command cannot be empty." +msgstr "コマンドは空にできません。" + +#: ../../include/functions_api.php:9626 +msgid "Name already exist" +msgstr "名前が既に存在します" + +#: ../../include/functions_api.php:9631 +msgid "Group does not exist" +msgstr "グループが存在しません" + +#: ../../include/functions_api.php:10062 +msgid "There is not gis data for the agent" +msgstr "エージェントに GIS データがありません" + +#: ../../include/functions_api.php:10103 ../../include/functions_api.php:10221 +msgid "Gis not activated" +msgstr "GIS が有効化されていません" + +#: ../../include/functions_api.php:10122 ../../include/functions_api.php:10240 +msgid "Missing parameters" +msgstr "パラメータがありません" + +#: ../../include/functions_api.php:10809 +msgid "Delete user." +msgstr "ユーザ削除" + +#: ../../include/functions_api.php:10850 ../../include/functions_api.php:10903 +msgid "There is not any profile with the id provided" +msgstr "指定した ID のプロファイルがありません" + +#: ../../include/functions_api.php:10862 +msgid "Add user profile." +msgstr "ユーザプロファイル追加" + +#: ../../include/functions_api.php:10921 +msgid "Delete user profile." +msgstr "ユーザプロファイル削除" + +#: ../../include/functions_api.php:10978 +msgid "Error retrieving profiles" +msgstr "プロファイル取得エラー" + +#: ../../include/functions_api.php:11034 +msgid "Error creating user profile" +msgstr "ユーザプロファイル作成エラー" + +#: ../../include/functions_api.php:11096 +msgid "Error updating user profile" +msgstr "ユーザプロファイル更新エラー" + +#: ../../include/functions_api.php:11131 +msgid "Error deleting user profile" +msgstr "ユーザプロファイル削除エラー" + +#: ../../include/functions_api.php:11292 +msgid "Correct module disable" +msgstr "モジュールを無効にしました" + +#: ../../include/functions_api.php:11294 +msgid "Error disabling module" +msgstr "モジュール無効化エラー" + +#: ../../include/functions_api.php:11358 +msgid "Correct module enable" +msgstr "モジュールを有効にしました" + +#: ../../include/functions_api.php:11360 +msgid "Error enabling module" +msgstr "モジュール有効化エラー" + +#: ../../include/functions_api.php:11408 ../../include/functions_api.php:11461 +msgid "Error alert disable" +msgstr "アラート無効化エラー" + +#: ../../include/functions_api.php:11508 ../../include/functions_api.php:11561 +msgid "Error alert enable" +msgstr "アラート有効化エラー" + +#: ../../include/functions_api.php:12026 +msgid "No alert found" +msgstr "アラートが見つかりません" + +#: ../../include/functions_api.php:12200 +msgid "Cannot connect with the agent node." +msgstr "エージェントノードに接続できません。" + +#: ../../include/functions_api.php:12446 +msgid "Error adding event comment." +msgstr "イベントコメント追加エラー" + +#: ../../include/functions_api.php:12729 +msgid "Error enable/disable agent. Id_agent cannot be left blank." +msgstr "エージェント有効化/無効化エラー。id_agent は空にできません。" + +#: ../../include/functions_api.php:12741 +msgid "" +"Error enable/disable agent. Enable/disable value cannot be left blank." +msgstr "エージェント有効化/無効化エラー。有効化/無効化は空にできません。" + +#: ../../include/functions_api.php:12749 +msgid "Error enable/disable agent. The agent doesn't exist." +msgstr "エージェント有効化/無効化エラー。エージェントが存在しません。" + +#: ../../include/functions_api.php:12773 +msgid "Error in agent enabling/disabling." +msgstr "エージェント有効化/無効化エラー" + +#: ../../include/functions_api.php:12780 +msgid "Enabled agent." +msgstr "エージェントを有効化しました" + +#: ../../include/functions_api.php:12788 +msgid "Disabled agent." +msgstr "エージェントを無効化しました" + +#: ../../include/functions_api.php:12903 +msgid "Error getting special_days." +msgstr "特別日取得エラー。" + +#: ../../include/functions_api.php:12943 +msgid "Error creating special day. Specified day already exists." +msgstr "特別日作成エラー。特別日はすでに存在します。" + +#: ../../include/functions_api.php:12948 +msgid "Error creating special day. Invalid date format." +msgstr "特別日作成エラー。日付の書式が不正です。" + +#: ../../include/functions_api.php:12953 +msgid "Error creating special day. Group id cannot be left blank." +msgstr "特別日作成エラー。グループ ID は空にできません。" + +#: ../../include/functions_api.php:12959 +msgid "Error creating special day. Id_group doesn't exist." +msgstr "特別日作成エラー。id_group が存在しません。" + +#: ../../include/functions_api.php:12977 +msgid "Error in creation special day." +msgstr "特別日作成エラー。" + +#: ../../include/functions_api.php:13027 +msgid "Error in creation service. No name" +msgstr "サービス作成エラー。名前がありません。" + +#: ../../include/functions_api.php:13050 +msgid "Error in creation service. No agent id" +msgstr "サービス作成エラー。エージェントIDがありません。" + +#: ../../include/functions_api.php:13114 +msgid "Error in creation service" +msgstr "サービス作成エラー" + +#: ../../include/functions_api.php:13146 +msgid "Error in update service. No service id" +msgstr "サービス更新エラー。サービスIDがありません。" + +#: ../../include/functions_api.php:13268 +msgid "Error in update service" +msgstr "サービス更新エラー" + +#: ../../include/functions_api.php:13301 +msgid "Error adding elements to service. No service id" +msgstr "サービスへの要素追加エラー。サービスIDがありません。" + +#: ../../include/functions_api.php:13378 +msgid "Error adding elements to service" +msgstr "サービスへの要素追加エラー" + +#: ../../include/functions_api.php:13415 +msgid "Error updating special day. Id cannot be left blank." +msgstr "特別日更新エラー。IDは空にできません。" + +#: ../../include/functions_api.php:13422 +msgid "Error updating special day. Id doesn't exist." +msgstr "特別日更新エラー。IDが存在しません。" + +#: ../../include/functions_api.php:13427 +msgid "Error updating special day. Invalid date format." +msgstr "特別日更新エラー。日付の書式が不正です。" + +#: ../../include/functions_api.php:13477 +msgid "Error deleting special day. Id cannot be left blank." +msgstr "特別日削除エラー。IDは空にできません。" + +#: ../../include/functions_api.php:13484 +msgid "Error deleting special day. Id doesn't exist." +msgstr "特別日削除エラー。IDが存在しません。" + +#: ../../include/functions_api.php:13491 +msgid "Error in deletion special day." +msgstr "特別日削除エラー。" + +#: ../../include/functions_api.php:13596 +#: ../../enterprise/meta/advanced/license_meta.php:50 +msgid "Metaconsole and all nodes license updated" +msgstr "メタコンソールと全ノードのライセンスを更新しました。" + +#: ../../include/functions_api.php:13598 +#: ../../enterprise/meta/advanced/license_meta.php:52 +#, php-format +msgid "Metaconsole license updated but %d of %d node synchronization failed" +msgstr "メタコンソールのライセンスを更新しましたが、%d ノード(%d中)の同期に失敗しました。" + +#: ../../include/functions_api.php:13627 +msgid "A cluster with this name already exists." +msgstr "この名前のクラスはすでに存在します。" + +#: ../../include/functions_api.php:13709 +msgid "Failed to create cluster." +msgstr "クラスタ作成に失敗。" + +#: ../../include/functions_api.php:13712 +msgid "Agent name cannot be empty." +msgstr "エージェント名は空にできません。" + +#: ../../include/functions_api.php:13745 ../../include/functions_api.php:13878 +msgid "Error adding elements to cluster" +msgstr "クラスタへの要素追加エラー" + +#: ../../include/functions_api.php:13894 ../../include/functions_api.php:13939 +#: ../../include/functions_api.php:13985 ../../include/functions_api.php:14160 +#: ../../include/functions_api.php:14198 ../../include/functions_api.php:14221 +#: ../../include/functions_api.php:14255 ../../include/functions_api.php:14324 +#: ../../include/functions_api.php:14359 ../../include/functions_api.php:14552 +msgid "The user cannot access to the cluster" +msgstr "ユーザがクラスタにアクセスできません" + +#: ../../include/functions_api.php:14591 +msgid "Error creating event filter. Event filter name cannot be left blank." +msgstr "イベントフィルタ作成エラー。イベントフィルタ名は空にできません。" + +#: ../../include/functions_api.php:14731 +msgid "Error creating event filter." +msgstr "イベントフィルタ作成エラー。" + +#: ../../include/functions_api.php:14737 +msgid "Event filter successfully created." +msgstr "イベントフィルタを作成しました。" + +#: ../../include/functions_api.php:14774 +msgid "Error updating event filter. Event filter ID cannot be left blank." +msgstr "イベントフィルタ更新エラー。イベントフィルタ ID は空にできません。" + +#: ../../include/functions_api.php:14785 +msgid "Error updating event filter. Event filter ID doesn't exist." +msgstr "イベントフィルタ更新エラー。イベントフィルタ ID が存在しません。" + +#: ../../include/functions_api.php:14966 +msgid "Error updating event filter." +msgstr "イベントフィルタ更新エラー。" + +#: ../../include/functions_api.php:14972 +msgid "Event filter successfully updated." +msgstr "イベントフィルタを更新しました。" + +#: ../../include/functions_api.php:14998 +msgid "Error deleting event_filter. Event filter ID cannot be left blank." +msgstr "event_filter 削除エラー。イベントフィルタ ID は空にできません。" + +#: ../../include/functions_api.php:15008 +msgid "Error deleting event filter." +msgstr "イベントフィルタ削除エラー。" + +#: ../../include/functions_api.php:15015 +msgid "Event filter successfully deleted." +msgstr "イベントフィルタを削除しました。" + +#: ../../include/functions_api.php:15063 +msgid "Error getting all event filters." +msgstr "全イベントフィルタ取得エラー。" + +#: ../../include/functions_api.php:15293 +msgid "Error in trap update." +msgstr "トラップ更新エラー。" + +#: ../../include/functions_api.php:15299 +msgid "Validated traps." +msgstr "トラップを承諾しました。" + +#: ../../include/functions_api.php:15320 +msgid "Error in trap delete." +msgstr "トラップ削除エラー。" + +#: ../../include/functions_api.php:15326 +msgid "Deleted traps." +msgstr "トラップを削除しました。" + +#: ../../include/functions_api.php:15484 +msgid "Error. Agent cannot be left blank." +msgstr "エラー。エージェントは空にできません。" + +#: ../../include/functions_api.php:15491 ../../include/functions_api.php:15941 +msgid "This agent does not exist." +msgstr "このエージェントは存在しません。" + +#: ../../include/functions_api.php:15513 +#, php-format +msgid "Successfully updated module/alert count in id agent %d." +msgstr "エージェント ID %d のモジュール/アラートカウントを更新しました。" + +#: ../../include/functions_api.php:15515 +msgid "Successfully updated module/alert count in all agents" +msgstr "全エージェントのモジュール/アラートカウントを更新しました。" + +#: ../../include/functions_api.php:15589 +msgid "Users could not be found." +msgstr "ユーザが見つかりません。" + +#: ../../include/functions_api.php:15793 ../../include/functions_api.php:15800 +msgid "User profile could not be deleted." +msgstr "ユーザプロファイルを削除できませんでした。" + +#: ../../include/functions_api.php:15848 ../../include/functions_api.php:15875 +msgid "User profile could not be available." +msgstr "ユーザプロファイルが存在しません。" + +#: ../../include/functions_api.php:15936 +msgid "This policy does not exist." +msgstr "このポリシーは存在しません。" + +#: ../../include/functions_api.php:15946 +msgid "This agent does not exist in this policy." +msgstr "このエージェントは、このポリシー内に存在しません。" + +#: ../../include/functions_api.php:15951 +#, php-format +msgid "Successfully added to delete pending id agent %d to id policy %d." +msgstr "保留中のエージェント ID %d をポリシー ID %d から削除するために正常に追加されました。" + +#: ../../include/functions_notifications.php:706 +msgid "Notify all users" +msgstr "全ユーザに通知" + +#: ../../include/functions_notifications.php:709 +msgid "Also email users with notification content" +msgstr "通知メールも送信する" + +#: ../../include/functions_notifications.php:712 +msgid "Users can modify notification preferences" +msgstr "ユーザによる通知設定変更可" + +#: ../../include/functions_notifications.php:717 +msgid "Users can postpone notifications up to" +msgstr "ユーザは次まで通知を延期可:" + +#: ../../include/functions_notifications.php:728 +msgid "forever" +msgstr "永久" + +#: ../../include/functions_notifications.php:761 +msgid "Notified users" +msgstr "通知されたユーザ" + +#: ../../include/functions_notifications.php:761 +msgid "Notified groups" +msgstr "通知されたグループ" + +#: ../../include/functions_notifications.php:762 +msgid "Add users" +msgstr "ユーザ追加" + +#: ../../include/functions_notifications.php:762 +msgid "Add groups" +msgstr "グループ追加" + +#: ../../include/functions_notifications.php:763 +msgid "Delete users" +msgstr "ユーザ削除" + +#: ../../include/functions_notifications.php:763 +msgid "Delete groups" +msgstr "グループ削除" + +#: ../../include/functions_notifications.php:859 +msgid "Add elements" +msgstr "要素追加" + +#: ../../include/functions_notifications.php:871 +msgid "Remove elements" +msgstr "要素削除" + +#: ../../include/functions_notifications.php:981 +msgid "Click here to get more information" +msgstr "詳細についてはこちらをクリックしてください" + +#: ../../include/functions_clippy.php:152 +#, php-format +msgid "%s assistant" +msgstr "%s アシスタント" + +#: ../../include/functions_clippy.php:189 +#: ../../include/functions_clippy.php:194 +msgid "End wizard" +msgstr "ウィザードの終了" + +#: ../../include/functions_clippy.php:227 +msgid "Next →" +msgstr "次へ →" + +#: ../../include/functions_clippy.php:228 +msgid "← Back" +msgstr "← 戻る" + +#: ../../include/functions_clippy.php:240 +msgid "Do you want to exit the help tour?" +msgstr "ヘルプツアーを終了しますか。" + +#: ../../include/functions_network.php:98 +msgid "Top listeners" +msgstr "上位の受信先" + +#: ../../include/functions_network.php:99 +msgid "Top talkers" +msgstr "上位の発信元" + +#: ../../include/functions_network.php:109 +msgid "Top TCP protocols" +msgstr "上位の TCP プロトコル" + +#: ../../include/functions_network.php:110 +msgid "Top UDP protocols" +msgstr "上位の UDP プロトコル" + +#: ../../include/functions_config.php:127 +msgid "Failed updated: User did not login." +msgstr "更新失敗: ユーザがログインしていません。" + +#: ../../include/functions_config.php:135 +msgid "Failed updated: User is not admin." +msgstr "更新失敗: ユーザは管理者ではありません。" + +#: ../../include/functions_config.php:160 +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:370 +msgid "Language settings" +msgstr "言語設定" + +#: ../../include/functions_config.php:168 +msgid "phantomjs config directory" +msgstr "phantomjs 設定ディレクトリ" + +#: ../../include/functions_config.php:184 +msgid "SSL cert path" +msgstr "SSL証明書パス" + +#: ../../include/functions_config.php:192 +msgid "Use cert." +msgstr "証明書利用" + +#: ../../include/functions_config.php:212 +msgid "Integria inventory" +msgstr "Integria インベントリ" + +#: ../../include/functions_config.php:216 +#: ../../include/functions_config.php:1499 +msgid "Integria API password" +msgstr "Integria API パスワード" + +#: ../../include/functions_config.php:220 +msgid "Integria URL" +msgstr "Integria URL" + +#: ../../include/functions_config.php:260 +msgid "License information" +msgstr "ライセンス情報" + +#: ../../include/functions_config.php:306 +msgid "Limit parameters bulk" +msgstr "一括処理制限" + +#: ../../include/functions_config.php:310 +msgid "Identification_reminder" +msgstr "識別リマインダ" + +#: ../../include/functions_config.php:314 +msgid "Include_agents" +msgstr "エージェントのインクルード" + +#: ../../include/functions_config.php:318 +msgid "alias_as_name" +msgstr "名前としてのエイリアス" + +#: ../../include/functions_config.php:326 +msgid "unique_ip" +msgstr "ユニーク IP" + +#: ../../include/functions_config.php:330 +#: ../../enterprise/meta/advanced/metasetup.mail.php:107 +msgid "Server SMTP" +msgstr "SMTP サーバ" + +#: ../../include/functions_config.php:334 +#: ../../enterprise/meta/advanced/metasetup.mail.php:101 +msgid "From dir" +msgstr "From アドレス" + +#: ../../include/functions_config.php:342 +#: ../../enterprise/meta/advanced/metasetup.mail.php:110 +msgid "Port SMTP" +msgstr "SMTP ポート" + +#: ../../include/functions_config.php:358 +msgid "WebSocket bind address" +msgstr "WebSocket 待受アドレス" + +#: ../../include/functions_config.php:362 +msgid "WebSocket port" +msgstr "WebSocket ポート" + +#: ../../include/functions_config.php:373 +#: ../../enterprise/godmode/setup/setup.php:47 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "SNMP トラップのエージェント(存在する場合)への転送" + +#: ../../include/functions_config.php:377 +#: ../../enterprise/godmode/setup/setup.php:77 +msgid "Use Enterprise ACL System" +msgstr "エンタープライズ ACL システムを利用する" + +#: ../../include/functions_config.php:381 +#: ../../enterprise/meta/include/functions_meta.php:361 +msgid "Activate Metaconsole" +msgstr "メタコンソールの有効化" + +#: ../../include/functions_config.php:385 +#: ../../enterprise/godmode/setup/setup.php:93 +#: ../../enterprise/meta/advanced/metasetup.setup.php:281 +#: ../../enterprise/meta/include/functions_meta.php:568 +msgid "Size of collection" +msgstr "コレクションのサイズ" + +#: ../../include/functions_config.php:389 +#: ../../enterprise/godmode/setup/setup.php:107 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:619 +msgid "Events replication" +msgstr "イベント複製" + +#: ../../include/functions_config.php:394 +#: ../../enterprise/godmode/setup/setup.php:119 +msgid "Replication interval" +msgstr "複製間隔" + +#: ../../include/functions_config.php:398 +#: ../../enterprise/godmode/setup/setup.php:133 +msgid "Replication limit" +msgstr "複製制限" + +#: ../../include/functions_config.php:402 +#: ../../enterprise/godmode/setup/setup.php:164 +msgid "Replication mode" +msgstr "複製モード" + +#: ../../include/functions_config.php:406 +#: ../../enterprise/godmode/setup/setup.php:270 +msgid "Show events list in local console (read only)" +msgstr "ローカルコンソールでのイベント一覧表示 (参照のみ)" + +#: ../../include/functions_config.php:411 +msgid "Replication DB engine" +msgstr "複製 DB エンジン" + +#: ../../include/functions_config.php:415 +msgid "Replication DB host" +msgstr "複製 DB ホスト" + +#: ../../include/functions_config.php:419 +msgid "Replication DB database" +msgstr "複製データベース" + +#: ../../include/functions_config.php:423 +msgid "Replication DB user" +msgstr "複製 DB ユーザ" + +#: ../../include/functions_config.php:427 +msgid "Replication DB password" +msgstr "複製 DB パスワード" + +#: ../../include/functions_config.php:431 +msgid "Replication DB port" +msgstr "複製 DB ポート" + +#: ../../include/functions_config.php:435 +msgid "Metaconsole agent cache" +msgstr "メタコンソールエージェントキャッシュ" + +#: ../../include/functions_config.php:439 +#: ../../enterprise/godmode/setup/setup.php:376 +msgid "Activate Log Collector" +msgstr "ログ収集の有効化" + +#: ../../include/functions_config.php:443 +msgid "Enable Update Manager" +msgstr "アップデートマネージャの有効化" + +#: ../../include/functions_config.php:451 +msgid "Ipam Ocuppied Manager Critical" +msgstr "IPAM 障害占有管理" + +#: ../../include/functions_config.php:455 +msgid "Ipam Ocuppied Manager Warning" +msgstr "IPAM 警告占有管理" + +#: ../../include/functions_config.php:459 +#: ../../enterprise/godmode/setup/setup.php:445 +msgid "SAP/R3 Plugin Licence" +msgstr "SAP/R3 プラグインライセンス" + +#: ../../include/functions_config.php:464 +#: ../../enterprise/godmode/setup/setup.php:288 +msgid "Inventory changes blacklist" +msgstr "インベントリブラックリスト変更" + +#: ../../include/functions_config.php:472 +#: ../../enterprise/godmode/setup/setup.php:499 +#: ../../enterprise/meta/advanced/metasetup.password.php:79 +#: ../../enterprise/meta/include/functions_meta.php:579 +msgid "Enable password policy" +msgstr "パスワードポリシーを利用する" + +#: ../../include/functions_config.php:476 +#: ../../enterprise/godmode/setup/setup.php:508 +#: ../../enterprise/meta/advanced/metasetup.password.php:101 +#: ../../enterprise/meta/include/functions_meta.php:588 +msgid "Min. size password" +msgstr "最小パスワードサイズ" + +#: ../../include/functions_config.php:480 +#: ../../enterprise/godmode/setup/setup.php:537 +#: ../../enterprise/meta/advanced/metasetup.password.php:105 +#: ../../enterprise/meta/include/functions_meta.php:615 +msgid "Password expiration" +msgstr "パスワードの期限切れ" + +#: ../../include/functions_config.php:484 +#: ../../enterprise/godmode/setup/setup.php:549 +#: ../../enterprise/meta/advanced/metasetup.password.php:132 +#: ../../enterprise/meta/include/functions_meta.php:624 +msgid "Force change password on first login" +msgstr "初回ログイン時にパスワードを変更する" + +#: ../../include/functions_config.php:488 +#: ../../enterprise/godmode/setup/setup.php:558 +#: ../../enterprise/meta/advanced/metasetup.password.php:109 +#: ../../enterprise/meta/include/functions_meta.php:633 +msgid "User blocked if login fails" +msgstr "ログインに失敗するとユーザをブロックします" + +#: ../../include/functions_config.php:492 +#: ../../enterprise/godmode/setup/setup.php:569 +#: ../../enterprise/meta/advanced/metasetup.password.php:113 +#: ../../enterprise/meta/include/functions_meta.php:642 +msgid "Number of failed login attempts" +msgstr "ログイン失敗回数" + +#: ../../include/functions_config.php:496 +#: ../../enterprise/godmode/setup/setup.php:519 +#: ../../enterprise/meta/advanced/metasetup.password.php:138 +#: ../../enterprise/meta/include/functions_meta.php:597 +msgid "Password must have numbers" +msgstr "パスワードには数字を含む必要があります" + +#: ../../include/functions_config.php:500 +#: ../../enterprise/godmode/setup/setup.php:528 +#: ../../enterprise/meta/advanced/metasetup.password.php:142 +#: ../../enterprise/meta/include/functions_meta.php:606 +msgid "Password must have symbols" +msgstr "パスワードには記号を含む必要があります" + +#: ../../include/functions_config.php:504 +#: ../../enterprise/godmode/setup/setup.php:581 +#: ../../enterprise/meta/advanced/metasetup.password.php:126 +#: ../../enterprise/meta/include/functions_meta.php:549 +msgid "Apply password policy to admin users" +msgstr "管理者ユーザへパスワードポリシーを適用" + +#: ../../include/functions_config.php:508 +#: ../../enterprise/godmode/setup/setup.php:590 +#: ../../enterprise/meta/advanced/metasetup.password.php:121 +#: ../../enterprise/meta/include/functions_meta.php:651 +msgid "Enable password history" +msgstr "パスワード履歴の有効化" + +#: ../../include/functions_config.php:512 +#: ../../enterprise/godmode/setup/setup.php:599 +#: ../../enterprise/meta/advanced/metasetup.password.php:117 +#: ../../enterprise/meta/include/functions_meta.php:662 +msgid "Compare previous password" +msgstr "以前のパスワードとの比較" + +#: ../../include/functions_config.php:516 +#: ../../enterprise/godmode/setup/setup.php:611 +#: ../../enterprise/meta/advanced/metasetup.password.php:146 +#: ../../enterprise/meta/include/functions_meta.php:514 +msgid "Activate reset password" +msgstr "パスワードリセットの有効化" + +#: ../../include/functions_config.php:532 +#: ../../enterprise/godmode/setup/setup_auth.php:52 +#: ../../enterprise/godmode/setup/setup_auth.php:297 +#: ../../enterprise/godmode/setup/setup_auth.php:838 +#: ../../enterprise/meta/include/functions_meta.php:701 +msgid "Autocreate profile" +msgstr "プロファイルの自動作成" + +#: ../../include/functions_config.php:536 +#: ../../enterprise/godmode/setup/setup_auth.php:58 +#: ../../enterprise/godmode/setup/setup_auth.php:303 +#: ../../enterprise/godmode/setup/setup_auth.php:844 +#: ../../enterprise/meta/include/functions_meta.php:710 +msgid "Autocreate profile group" +msgstr "プロファイルグループの自動作成" + +#: ../../include/functions_config.php:540 +#: ../../enterprise/godmode/setup/setup_auth.php:65 +#: ../../enterprise/godmode/setup/setup_auth.php:310 +#: ../../enterprise/godmode/setup/setup_auth.php:851 +#: ../../enterprise/meta/include/functions_meta.php:719 +msgid "Autocreate profile tags" +msgstr "自動作成プロファイルタグ" + +#: ../../include/functions_config.php:544 +#: ../../enterprise/godmode/setup/setup_auth.php:316 +#: ../../enterprise/meta/include/functions_meta.php:728 +msgid "Automatically assigned no hierarchy" +msgstr "自動的に割り当てられた階層なし" + +#: ../../include/functions_config.php:548 +#: ../../enterprise/godmode/setup/setup_auth.php:1037 +#: ../../enterprise/meta/include/functions_meta.php:737 +msgid "Autocreate blacklist" +msgstr "ブラックリストの自動作成" + +#: ../../include/functions_config.php:552 +#: ../../enterprise/godmode/setup/setup_auth.php:1045 +#: ../../enterprise/meta/include/functions_meta.php:768 +msgid "Active directory server" +msgstr "アクティブディレクトリサーバ" + +#: ../../include/functions_config.php:556 +#: ../../enterprise/godmode/setup/setup_auth.php:1051 +#: ../../enterprise/meta/include/functions_meta.php:777 +msgid "Active directory port" +msgstr "アクティブディレクトリポート" + +#: ../../include/functions_config.php:564 +#: ../../enterprise/godmode/setup/setup_auth.php:827 +#: ../../enterprise/meta/include/functions_meta.php:795 +msgid "Advanced Config AD" +msgstr "拡張 AD 設定" + +#: ../../include/functions_config.php:568 +#: ../../enterprise/godmode/setup/setup_auth.php:103 +#: ../../enterprise/meta/include/functions_meta.php:831 +msgid "Advanced Config LDAP" +msgstr "LDAP 拡張設定" + +#: ../../include/functions_config.php:572 +#: ../../enterprise/godmode/setup/setup_auth.php:1063 +#: ../../enterprise/meta/include/functions_meta.php:804 +msgid "Domain" +msgstr "ドメイン" + +#: ../../include/functions_config.php:576 +#: ../../enterprise/godmode/setup/setup_auth.php:885 +#: ../../enterprise/meta/include/functions_meta.php:813 +msgid "Advanced Permisions AD" +msgstr "AD 拡張パーミッション" + +#: ../../include/functions_config.php:580 +#: ../../enterprise/godmode/setup/setup_auth.php:126 +#: ../../enterprise/meta/include/functions_meta.php:822 +msgid "Advanced Permissions LDAP" +msgstr "LDAP 拡張パーミッション" + +#: ../../include/functions_config.php:620 +#: ../../enterprise/godmode/setup/setup_auth.php:98 +#: ../../enterprise/meta/include/functions_meta.php:1107 +msgid "Login user attribute" +msgstr "ログインユーザアトリビュート" + +#: ../../include/functions_config.php:624 +#: ../../enterprise/godmode/setup/setup_auth.php:91 +#: ../../enterprise/meta/include/functions_meta.php:1127 +msgid "LDAP function" +msgstr "LDAP 機能" + +#: ../../include/functions_config.php:629 +#: ../../enterprise/godmode/setup/setup_auth.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1094 +msgid "Save Password" +msgstr "パスワードを保存" + +#: ../../include/functions_config.php:636 +#: ../../enterprise/meta/include/functions_meta.php:1116 +msgid "Save profile" +msgstr "プロファイルの保存" + +#: ../../include/functions_config.php:640 +#: ../../enterprise/godmode/setup/setup_auth.php:712 +msgid "MySQL host" +msgstr "MySQL ホスト" + +#: ../../include/functions_config.php:644 +#: ../../include/functions_config.php:664 +#: ../../enterprise/godmode/setup/setup_auth.php:718 +#: ../../enterprise/godmode/setup/setup_auth.php:750 +#: ../../enterprise/meta/include/functions_meta.php:1147 +#: ../../enterprise/meta/include/functions_meta.php:1196 +#: ../../enterprise/meta/include/functions_meta.php:1245 +msgid "MySQL port" +msgstr "MySQL ポート" + +#: ../../include/functions_config.php:648 +#: ../../include/functions_config.php:668 +#: ../../include/functions_config.php:1403 +#: ../../enterprise/godmode/setup/setup_auth.php:724 +#: ../../enterprise/godmode/setup/setup_auth.php:756 +#: ../../enterprise/godmode/setup/setup_history.php:54 +#: ../../enterprise/meta/include/functions_meta.php:1156 +#: ../../enterprise/meta/include/functions_meta.php:1205 +#: ../../enterprise/meta/include/functions_meta.php:1254 +msgid "Database name" +msgstr "データベース名" + +#: ../../include/functions_config.php:660 +#: ../../enterprise/godmode/setup/setup_auth.php:744 +#: ../../enterprise/meta/include/functions_meta.php:1236 +msgid "Integria host" +msgstr "Integria ホスト" + +#: ../../include/functions_config.php:680 +#: ../../enterprise/meta/include/functions_meta.php:876 +msgid "Saml path" +msgstr "SAML パス" + +#: ../../include/functions_config.php:684 +#: ../../enterprise/meta/include/functions_meta.php:888 +msgid "Saml source" +msgstr "SAML ソース" + +#: ../../include/functions_config.php:688 +#: ../../enterprise/meta/include/functions_meta.php:900 +msgid "Saml user id parameter" +msgstr "SAML ユーザ ID パラメータ" + +#: ../../include/functions_config.php:692 +#: ../../enterprise/meta/include/functions_meta.php:912 +msgid "Saml mail parameter" +msgstr "SAML メールパラメータ" + +#: ../../include/functions_config.php:696 +#: ../../enterprise/meta/include/functions_meta.php:924 +msgid "Saml group name parameter" +msgstr "SAML グループ名パラメータ" + +#: ../../include/functions_config.php:700 +#: ../../enterprise/meta/include/functions_meta.php:936 +msgid "Saml attr type parameter" +msgstr "SAML attr タイプパラメータ" + +#: ../../include/functions_config.php:704 +#: ../../enterprise/meta/include/functions_meta.php:948 +msgid "Saml profiles and tags parameter" +msgstr "SAML プロファイルおよび タグパラメータ" + +#: ../../include/functions_config.php:708 +msgid "Saml profile parameters" +msgstr "SAML プロファイルパラメータ" + +#: ../../include/functions_config.php:712 +#: ../../enterprise/meta/include/functions_meta.php:984 +msgid "Saml tag parameter" +msgstr "SAML タグパラメータ" + +#: ../../include/functions_config.php:716 +#: ../../enterprise/meta/include/functions_meta.php:960 +msgid "Saml profile and tag separator" +msgstr "SAML プロファイルおよびタグセパレータ" + +#: ../../include/functions_config.php:724 +#: ../../enterprise/meta/include/functions_meta.php:757 +#: ../../enterprise/meta/include/functions_meta.php:1008 +msgid "Session timeout" +msgstr "セッションタイムアウト" + +#: ../../include/functions_config.php:770 +msgid "Max. days before autodisable deletion" +msgstr "自動無効化エージェントの保持日数" + +#: ../../include/functions_config.php:774 +msgid "Item limit for realtime reports)" +msgstr "リアルタイムレポートのアイテム制限" + +#: ../../include/functions_config.php:806 +msgid "Big Operatiopn Step to purge old data" +msgstr "古いデータ削除のための大きな操作ステップ" + +#: ../../include/functions_config.php:840 +msgid "Max execution event response" +msgstr "最大実行イベント応答" + +#: ../../include/functions_config.php:851 +#: ../../enterprise/meta/include/functions_meta.php:1295 +msgid "Timestamp or time comparation" +msgstr "タイムスタンプ表示" + +#: ../../include/functions_config.php:894 +#: ../../include/functions_config.php:2724 +#: ../../operation/network/network_report.php:218 +#: ../../operation/network/network_report.php:250 +#: ../../enterprise/include/functions_reporting_csv.php:1938 +#: ../../enterprise/include/functions_reporting_csv.php:1946 +msgid "Bytes" +msgstr "バイト" + +#: ../../include/functions_config.php:899 +#: ../../enterprise/meta/include/functions_meta.php:1340 +msgid "Data precision for reports" +msgstr "レポートのデータ精度" + +#: ../../include/functions_config.php:920 +msgid "Show QR code header" +msgstr "QR コードヘッダー表示" + +#: ../../include/functions_config.php:928 +#: ../../enterprise/meta/include/functions_meta.php:1630 +msgid "Font path" +msgstr "フォントパス" + +#: ../../include/functions_config.php:944 +msgid "Custom logo collapsed" +msgstr "折り畳み時カスタムロゴ" + +#: ../../include/functions_config.php:948 +msgid "Custom logo white background" +msgstr "白背景カスタムロゴ" + +#: ../../include/functions_config.php:952 +#: ../../enterprise/meta/include/functions_meta.php:1514 +msgid "Custom logo login" +msgstr "ログイン時のカスタムロゴ" + +#: ../../include/functions_config.php:956 +#: ../../enterprise/meta/include/functions_meta.php:1523 +msgid "Custom splash login" +msgstr "カスタムスプラッシュログイン" + +#: ../../include/functions_config.php:976 +msgid "Custom title header" +msgstr "カスタムタイトルヘッダ" + +#: ../../include/functions_config.php:980 +msgid "Custom subtitle header" +msgstr "カスタムサブタイトルヘッダ" + +#: ../../include/functions_config.php:984 +#: ../../enterprise/meta/include/functions_meta.php:1550 +msgid "Custom title1 login" +msgstr "カスタムタイトル1 ログイン" + +#: ../../include/functions_config.php:988 +#: ../../enterprise/meta/include/functions_meta.php:1559 +msgid "Custom title2 login" +msgstr "カスタムタイトル2 ログイン" + +#: ../../include/functions_config.php:996 +#: ../../include/functions_config.php:1040 +msgid "Custom Docs url" +msgstr "カスタムドキュメントURL" + +#: ../../include/functions_config.php:1000 +#: ../../include/functions_config.php:1044 +msgid "Custom support url" +msgstr "カスタムサポートURL" + +#: ../../include/functions_config.php:1012 +msgid "Custom logo metaconsole" +msgstr "メタコンソールカスタムロゴ" + +#: ../../include/functions_config.php:1016 +msgid "Custom logo metaconsole (white background)" +msgstr "メタコンソールカスタムロゴ(白背景)" + +#: ../../include/functions_config.php:1020 +msgid "Custom logo login metaconsole" +msgstr "メタコンソールログインカスタムロゴ" + +#: ../../include/functions_config.php:1024 +msgid "Custom splash login metaconsole" +msgstr "カスタムスプラッシュログイン メタコンソール" + +#: ../../include/functions_config.php:1028 +msgid "Custom title1 login metaconsole" +msgstr "カスタムタイトル1 メタコンソールログイン" + +#: ../../include/functions_config.php:1032 +msgid "Custom title2 login metaconsole" +msgstr "カスタムタイトル2 メタコンソールログイン" + +#: ../../include/functions_config.php:1036 +msgid "Login background metaconsole" +msgstr "メタコンソールログイン背景" + +#: ../../include/functions_config.php:1048 +#: ../../enterprise/meta/include/functions_meta.php:1687 +msgid "Use the legacy Visual Console" +msgstr "レガシービジュアルコンソールの利用" + +#: ../../include/functions_config.php:1052 +#: ../../enterprise/meta/include/functions_meta.php:1692 +msgid "Default expiration of the Visual Console item's cache" +msgstr "ビジュアルコンソールキャッシュのデフォルト有効期間" + +#: ../../include/functions_config.php:1060 +msgid "Default line favourite_view for the Visual Console" +msgstr "ビジュアルコンソールのデフォルトお気に入り" + +#: ../../include/functions_config.php:1064 +msgid "Default line menu items for the Visual Console" +msgstr "ビジュアルコンソールのデフォルトメニューアイテム" + +#: ../../include/functions_config.php:1072 +msgid "Default line menu items for the Services" +msgstr "サービス用のデフォルトラインメニューアイテム" + +#: ../../include/functions_config.php:1104 +msgid "Show units in values report" +msgstr "値のレポートに単位を表示" + +#: ../../include/functions_config.php:1112 +msgid "Autohidden menu" +msgstr "メニューを自動的に隠す" + +#: ../../include/functions_config.php:1116 +msgid "visual_animation" +msgstr "ビジュアルアニメーション" + +#: ../../include/functions_config.php:1120 +#: ../../enterprise/meta/advanced/metasetup.visual.php:146 +#: ../../enterprise/meta/include/functions_meta.php:1406 +msgid "Disable help" +msgstr "ヘルプの無効化" + +#: ../../include/functions_config.php:1124 +msgid "Fixed graph" +msgstr "グラフの固定" + +#: ../../include/functions_config.php:1132 +msgid "Paginate module" +msgstr "モジュール画面分割" + +#: ../../include/functions_config.php:1144 +msgid "Shortened module graph data" +msgstr "短縮モジュールグラフデータ" + +#: ../../include/functions_config.php:1156 +msgid "Default type of module charts." +msgstr "モジュールグラフのデフォルトタイプ" + +#: ../../include/functions_config.php:1160 +msgid "Default type of interface charts." +msgstr "インタフェースグラフのデフォルトタイプ" + +#: ../../include/functions_config.php:1171 +#: ../../include/functions_config.php:2800 +#: ../../include/functions_reporting_html.php:602 +#: ../../enterprise/include/functions_reporting.php:1698 +#: ../../enterprise/include/functions_reporting.php:1739 +#: ../../enterprise/include/functions_reporting.php:2623 +#: ../../enterprise/include/functions_reporting.php:2682 +#: ../../enterprise/include/functions_reporting.php:3616 +#: ../../enterprise/include/functions_reporting.php:3675 +#: ../../enterprise/include/functions_reporting.php:5729 +#: ../../enterprise/include/functions_reporting_csv.php:1334 +#: ../../enterprise/include/functions_reporting_csv.php:1380 +#: ../../enterprise/include/functions_reporting_csv.php:1698 +msgid "Fail" +msgstr "失敗" + +#: ../../include/functions_config.php:1177 +msgid "Display lateral menus with left click" +msgstr "クリックでサイドメニューを表示" + +#: ../../include/functions_config.php:1187 +msgid "Service item padding size" +msgstr "サービス要素の間隔" + +#: ../../include/functions_config.php:1192 +msgid "Default percentil" +msgstr "デフォルトのパーセンテージ" + +#: ../../include/functions_config.php:1196 +msgid "Default full scale (TIP)" +msgstr "デフォルトフルスケール(TIP)" + +#: ../../include/functions_config.php:1200 +msgid "Default soft graphs" +msgstr "デフォルトグラフソフト" + +#: ../../include/functions_config.php:1204 +msgid "Default zoom graphs" +msgstr "デフォルトグラフ拡大率" + +#: ../../include/functions_config.php:1208 +msgid "Default height of the chart image" +msgstr "グラフ画像のデフォルトの高さ" + +#: ../../include/functions_config.php:1229 +msgid "Add the custom post process" +msgstr "カスタム保存倍率を追加" + +#: ../../include/functions_config.php:1237 +msgid "Delete the custom post process" +msgstr "カスタム保存倍率を削除" + +#: ../../include/functions_config.php:1284 +#: ../../enterprise/meta/include/functions_meta.php:1642 +msgid "Custom report info" +msgstr "カスタムレポート情報" + +#: ../../include/functions_config.php:1305 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:127 +#: ../../enterprise/meta/include/functions_meta.php:1647 +msgid "Font family" +msgstr "フォントファミリ" + +#: ../../include/functions_config.php:1369 +msgid "IP ElasticSearch server" +msgstr "ElasticSearch サーバ IP" + +#: ../../include/functions_config.php:1373 +msgid "Port ElasticSearch server" +msgstr "ElasticSearch サーバポート番号" + +#: ../../include/functions_config.php:1377 +#: ../../enterprise/godmode/setup/setup_log_collector.php:42 +msgid "Number of logs viewed" +msgstr "ログ表示数" + +#: ../../include/functions_config.php:1381 +#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +msgid "Days to purge old information" +msgstr "旧情報を削除する日数" + +#: ../../include/functions_config.php:1387 +#: ../../enterprise/godmode/setup/setup_history.php:42 +msgid "Enable history database" +msgstr "ヒストリデータベースの有効化" + +#: ../../include/functions_config.php:1391 +msgid "Enable history event" +msgstr "ヒストリイベントの有効化" + +#: ../../include/functions_config.php:1395 +#: ../../enterprise/godmode/setup/setup_history.php:48 +#: ../../enterprise/include/functions_reporting_csv.php:1938 +#: ../../enterprise/include/functions_reporting_csv.php:1946 +msgid "Host" +msgstr "ホスト" + +#: ../../include/functions_config.php:1407 +#: ../../enterprise/godmode/setup/setup_history.php:57 +msgid "Database user" +msgstr "データベースユーザ" + +#: ../../include/functions_config.php:1411 +#: ../../enterprise/godmode/setup/setup_history.php:60 +msgid "Database password" +msgstr "データベースパスワード" + +#: ../../include/functions_config.php:1427 +msgid "Event Days" +msgstr "イベント日数" + +#: ../../include/functions_config.php:1443 +#: ../../enterprise/godmode/setup/setup_history.php:69 +msgid "Delay" +msgstr "遅延" + +#: ../../include/functions_config.php:1453 +msgid "eHorus user login" +msgstr "eHorus ユーザログイン" + +#: ../../include/functions_config.php:1465 +msgid "eHorus API hostname" +msgstr "eHorus API ホスト名" + +#: ../../include/functions_config.php:1469 +msgid "eHorus API port" +msgstr "eHorus API ポート" + +#: ../../include/functions_config.php:1473 +msgid "eHorus request timeout" +msgstr "eHorus リクエストタイムアウト" + +#: ../../include/functions_config.php:1477 +msgid "eHorus id custom field" +msgstr "eHorus id カスタムフィールド" + +#: ../../include/functions_config.php:1487 +msgid "Integria user" +msgstr "Integria ユーザ" + +#: ../../include/functions_config.php:1491 +msgid "Integria password" +msgstr "Integria パスワード" + +#: ../../include/functions_config.php:1495 +msgid "integria API hostname" +msgstr "Integria API ホスト名" + +#: ../../include/functions_config.php:1503 +msgid "Integria request timeout" +msgstr "Integria 要求タイムアウト" + +#: ../../include/functions_config.php:1507 +msgid "Integria default group" +msgstr "Integria デフォルトグループ" + +#: ../../include/functions_config.php:1511 +msgid "Integria custom response default group" +msgstr "Integria カスタム応答デフォルトグループ" + +#: ../../include/functions_config.php:1515 +msgid "Integria default priority" +msgstr "Integria デフォルト優先順位" + +#: ../../include/functions_config.php:1519 +msgid "Integria custom response default priority" +msgstr "Integria カスタム応答デフォルト優先順位" + +#: ../../include/functions_config.php:1523 +msgid "Integria default creator" +msgstr "Integria デフォルト作成者" + +#: ../../include/functions_config.php:1527 +msgid "Integria default owner" +msgstr "Integria デフォルト所有者" + +#: ../../include/functions_config.php:1531 +msgid "Integria custom response default owner" +msgstr "Integria カスタム応答デフォルト所有者" + +#: ../../include/functions_config.php:1535 +msgid "Integria default ticket type" +msgstr "Integria デフォルトチケットタイプ" + +#: ../../include/functions_config.php:1539 +msgid "Integria custom response default ticket type" +msgstr "Integria カスタム応答デフォルトチケットタイプ" + +#: ../../include/functions_config.php:1543 +msgid "Integria default ticket status" +msgstr "Integria デフォルトチケット状態" + +#: ../../include/functions_config.php:1547 +msgid "Integria custom response default ticket status" +msgstr "Integria カスタム応答デフォルトチケット状態" + +#: ../../include/functions_config.php:1551 +msgid "Integria default ticket title" +msgstr "Integria デフォルトチケットタイトル" + +#: ../../include/functions_config.php:1555 +msgid "Integria custom response default ticket title" +msgstr "Integria カスタム応答デフォルトチケットタイトル" + +#: ../../include/functions_config.php:1559 +msgid "Integria default ticket content" +msgstr "Integria デフォルトチケット内容" + +#: ../../include/functions_config.php:1563 +msgid "Integria custom response default ticket content" +msgstr "Integria カスタム応答デフォルトチケット内容" + +#: ../../include/functions_config.php:1581 +#, php-format +msgid "Failed updated: the next values cannot update: %s" +msgstr "更新失敗: 次の値は更新できません: %s" + +#: ../../include/functions_config.php:2068 +#: ../../operation/agentes/networkmap.dinamic.php:218 +msgid "Pandora FMS" +msgstr "Pandora FMS" + +#: ../../include/functions_config.php:2072 ../../include/functions_ui.php:1695 +msgid "the Flexible Monitoring System" +msgstr "the Flexible Monitoring System" + +#: ../../include/functions_config.php:2076 +msgid "PANDORA FMS" +msgstr "PANDORA FMS" + +#: ../../include/functions_config.php:2080 +#: ../../enterprise/include/process_reset_pass.php:150 +#: ../../enterprise/include/process_reset_pass.php:153 +#: ../../enterprise/include/reset_pass.php:130 +#: ../../enterprise/include/reset_pass.php:133 +msgid "ONE TOOL TO MONITOR THEM ALL" +msgstr "一つのツールですべてを監視" + +#: ../../include/functions_config.php:2124 +#: ../../enterprise/meta/general/login_page.php:199 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "PANDORA FMS NEXT GENERATION" + +#: ../../include/functions_config.php:2128 +#: ../../enterprise/meta/general/login_page.php:207 +#: ../../enterprise/meta/include/process_reset_pass.php:147 +#: ../../enterprise/meta/include/reset_pass.php:123 +msgid "METACONSOLE" +msgstr "メタコンソール" + +#: ../../include/functions_reports.php:631 +#: ../../include/functions_reports.php:635 +#: ../../include/functions_reports.php:640 +#: ../../include/functions_reports.php:646 +#: ../../include/functions_reports.php:652 +#: ../../include/functions_reports.php:656 +#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:667 +#: ../../include/functions_reports.php:673 +#: ../../include/functions_reports.php:678 +#: ../../include/functions_groups.php:123 +#: ../../include/functions_groups.php:187 +#: ../../operation/agentes/ver_agente.php:1266 +#: ../../operation/search_results.php:118 +msgid "Graphs" +msgstr "グラフ" + +#: ../../include/functions_reports.php:632 +#: ../../include/functions_reporting.php:7605 +#: ../../include/functions_reporting.php:7744 +msgid "Simple graph" +msgstr "単一グラフ" + +#: ../../include/functions_reports.php:636 +#: ../../enterprise/include/functions_reporting.php:7481 +msgid "Simple baseline graph" +msgstr "シンプルベースライングラフ" + +#: ../../include/functions_reports.php:653 +#: ../../enterprise/include/functions_reporting_csv.php:930 +msgid "SQL vertical bar graph" +msgstr "SQL 縦棒グラフ" + +#: ../../include/functions_reports.php:657 +#: ../../enterprise/include/functions_reporting_csv.php:934 +msgid "SQL pie graph" +msgstr "SQL 円グラフ" + +#: ../../include/functions_reports.php:661 +msgid "SQL horizonal bar graph" +msgstr "SQL 横棒グラフ" + +#: ../../include/functions_reports.php:668 +msgid "Automatic combined Graph" +msgstr "自動合成グラフ" + +#: ../../include/functions_reports.php:674 +msgid "Availability graph" +msgstr "可用性グラフ" + +#: ../../include/functions_reports.php:679 +msgid "Module Histogram graph" +msgstr "モジュールヒストグラムグラフ" + +#: ../../include/functions_reports.php:683 +#: ../../include/functions_reports.php:688 +#: ../../include/functions_reports.php:692 +#: ../../include/functions_reports.php:696 +#: ../../include/functions_reports.php:702 +#: ../../enterprise/include/functions_reporting_csv.php:1744 +#: ../../enterprise/operation/services/services.list.php:414 +#: ../../enterprise/operation/services/services.service.php:175 +msgid "SLA" +msgstr "SLA" + +#: ../../include/functions_reports.php:684 +#: ../../include/functions_reporting.php:871 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:127 +#: ../../enterprise/godmode/services/services.service.php:455 +#: ../../enterprise/include/functions_reporting_csv.php:1274 +msgid "S.L.A." +msgstr "SLA" + +#: ../../include/functions_reports.php:689 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:128 +#: ../../enterprise/include/functions_reporting.php:2088 +msgid "Monthly S.L.A." +msgstr "月次 S.L.A." + +#: ../../include/functions_reports.php:693 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:129 +#: ../../enterprise/include/functions_reporting.php:3035 +msgid "Weekly S.L.A." +msgstr "週次 S.L.A." + +#: ../../include/functions_reports.php:697 +#: ../../enterprise/include/functions_reporting.php:4010 +msgid "Hourly S.L.A." +msgstr "1時間ごとの S.L.A." + +#: ../../include/functions_reports.php:703 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:134 +#: ../../enterprise/include/functions_reporting.php:5210 +msgid "Services S.L.A." +msgstr "サービス SLA" + +#: ../../include/functions_reports.php:709 +#: ../../include/functions_reports.php:713 +msgid "Forecasting" +msgstr "予測" + +#: ../../include/functions_reports.php:710 +#: ../../enterprise/include/functions_reporting_csv.php:675 +msgid "Prediction date" +msgstr "予測日" + +#: ../../include/functions_reports.php:714 +msgid "Projection graph" +msgstr "予想グラフ" + +#: ../../include/functions_reports.php:719 +msgid "Avg. Value" +msgstr "平均値" + +#: ../../include/functions_reports.php:731 +msgid "Monitor report" +msgstr "モニタ項目レポート" + +#: ../../include/functions_reports.php:735 +msgid "Serialize data" +msgstr "データの並び" + +#: ../../include/functions_reports.php:739 +#: ../../include/functions_reporting.php:4831 +#: ../../include/functions_reporting.php:7482 +#: ../../enterprise/include/functions_reporting_csv.php:963 +#: ../../enterprise/include/functions_reporting_csv.php:981 +#: ../../enterprise/include/functions_reporting_csv.php:983 +msgid "Summatory" +msgstr "合計" + +#: ../../include/functions_reports.php:743 +msgid "Historical Data" +msgstr "保存データ" + +#: ../../include/functions_reports.php:747 +#: ../../include/functions_reporting_html.php:2918 +#: ../../include/functions_reporting.php:7109 +#: ../../enterprise/include/functions_reporting_csv.php:1104 +#: ../../enterprise/include/functions_reporting_csv.php:1118 +#: ../../enterprise/include/functions_reporting_csv.php:1122 +#: ../../enterprise/include/functions_reporting_csv.php:1133 +msgid "Increment" +msgstr "増分" + +#: ../../include/functions_reports.php:751 +#: ../../include/functions_reports.php:757 +#: ../../include/functions_reports.php:763 +#: ../../include/functions_reports.php:769 +#: ../../include/functions_reports.php:775 +#: ../../include/functions_reports.php:784 +#: ../../include/functions_reports.php:790 +#: ../../include/functions_reports.php:794 +#: ../../include/functions_reports.php:798 +msgid "Grouped" +msgstr "グループ化" + +#: ../../include/functions_reports.php:758 +#: ../../include/functions_reports.php:764 +#: ../../enterprise/include/functions_reporting_csv.php:841 +msgid "Group report" +msgstr "グループレポート" + +#: ../../include/functions_reports.php:770 +#: ../../include/functions_reporting.php:2369 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 +#: ../../enterprise/include/functions_reporting_csv.php:755 +msgid "Exception" +msgstr "例外" + +#: ../../include/functions_reports.php:791 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 +msgid "Top n" +msgstr "トップ n" + +#: ../../include/functions_reports.php:795 +msgid "Network interfaces" +msgstr "ネットワークインタフェース" + +#: ../../include/functions_reports.php:799 +#: ../../include/functions_reporting.php:6224 +#: ../../include/functions_reporting.php:6499 +#: ../../enterprise/include/functions_reporting.php:1076 +#: ../../enterprise/include/functions_reporting_csv.php:445 +msgid "Availability" +msgstr "可用性" + +#: ../../include/functions_reports.php:803 +#: ../../include/functions_reports.php:807 +msgid "Text/HTML " +msgstr "テキスト/HTML " + +#: ../../include/functions_reports.php:808 +msgid "Import text from URL" +msgstr "URL からテキストをインポート" + +#: ../../include/functions_reports.php:813 +msgid "Module alert report" +msgstr "モジュールアラートレポート" + +#: ../../include/functions_reports.php:817 +msgid "Agent alert report " +msgstr "エージェントアラートレポート " + +#: ../../include/functions_reports.php:822 +msgid "Group alert report" +msgstr "グループアラートレポート" + +#: ../../include/functions_reports.php:828 +msgid "Module event report" +msgstr "モジュールイベントレポート" + +#: ../../include/functions_reports.php:832 +msgid "Agent event report" +msgstr "エージェントイベントレポート" + +#: ../../include/functions_reports.php:836 +msgid "Group event report" +msgstr "グループイベントレポート" + +#: ../../include/functions_reports.php:847 +msgid "Inventory changes" +msgstr "インベントリ変更" + +#: ../../include/functions_reports.php:855 +#: ../../include/functions_reporting.php:4676 +msgid "Agent configuration" +msgstr "エージェント設定" + +#: ../../include/functions_reports.php:859 +#: ../../include/functions_reporting.php:3433 +msgid "Group configuration" +msgstr "グループ設定" + +#: ../../include/functions_reports.php:863 +msgid "Netflow area chart" +msgstr "Netflow 塗り潰しグラフ" + +#: ../../include/functions_reports.php:867 +msgid "Netflow data table" +msgstr "Netflow データ表" + +#: ../../include/functions_reports.php:871 +msgid "Netflow summary table" +msgstr "Netflow サマリ表" + +#: ../../include/functions_reports.php:877 +#: ../../enterprise/include/functions_reporting.php:1968 +msgid "Log" +msgstr "ログ" + +#: ../../include/functions_reports.php:878 +#: ../../enterprise/include/functions_reporting.php:1955 +msgid "Log report" +msgstr "ログレポート" + +#: ../../include/functions_reports.php:884 +#: ../../enterprise/meta/general/logon_ok.php:37 +msgid "Network traffic" +msgstr "ネットワークトラフィック" + +#: ../../include/functions_reports.php:885 +msgid "Network Traffic Top N" +msgstr "ネットワークトラフィックトップ N" + +#: ../../include/functions_cron.php:446 +msgid "Scheduled jobs" +msgstr "スケジュールされたジョブ" + +#: ../../include/functions_cron.php:455 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:593 +#: ../../enterprise/include/functions_tasklist.php:168 +#: ../../enterprise/meta/advanced/cron_main.php:322 +msgid "Task" +msgstr "タスク" + +#: ../../include/functions_cron.php:456 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:603 +#: ../../enterprise/include/functions_tasklist.php:169 +#: ../../enterprise/meta/advanced/cron_main.php:353 +msgid "Scheduled" +msgstr "スケジュール" + +#: ../../include/functions_cron.php:457 +#: ../../enterprise/include/functions_tasklist.php:170 +#: ../../enterprise/meta/advanced/cron_main.php:366 +msgid "Next execution" +msgstr "次回の実行" + +#: ../../include/functions_cron.php:458 +#: ../../enterprise/include/functions_tasklist.php:171 +msgid "Last run" +msgstr "最後の実行" + +#: ../../include/functions_cron.php:481 ../../include/functions_cron.php:519 +#: ../../include/functions_cron.php:570 ../../include/functions_cron.php:596 +#: ../../include/functions_cron.php:632 ../../include/functions_cron.php:662 +#: ../../enterprise/include/functions_tasklist.php:200 +#: ../../enterprise/include/functions_tasklist.php:243 +#: ../../enterprise/include/functions_tasklist.php:295 +#: ../../enterprise/include/functions_tasklist.php:322 +#: ../../enterprise/include/functions_tasklist.php:359 +#: ../../enterprise/include/functions_tasklist.php:390 +#: ../../enterprise/include/functions_tasklist.php:414 +msgid "Force run" +msgstr "強制実行" + +#: ../../include/functions_cron.php:507 +#: ../../enterprise/include/functions_reporting_csv.php:838 +#: ../../enterprise/include/functions_reporting_csv.php:977 +#: ../../enterprise/include/functions_reporting_csv.php:1008 +#: ../../enterprise/include/functions_reporting_csv.php:1063 +#: ../../enterprise/include/functions_reporting_csv.php:1118 +#: ../../enterprise/include/functions_reporting_csv.php:1167 +#: ../../enterprise/include/functions_reporting_csv.php:1222 +#: ../../enterprise/include/functions_tasklist.php:223 +#: ../../enterprise/operation/reporting/custom_reporting.php:81 +msgid "Report type" +msgstr "レポートタイプ" + +#: ../../include/functions_cron.php:558 +#: ../../enterprise/include/functions_cron.php:219 +#: ../../enterprise/include/functions_tasklist.php:279 +msgid "Report per agent" +msgstr "エージェントごとのレポート" + +#: ../../include/functions_cron.php:586 +#: ../../enterprise/include/functions_cron.php:273 +#: ../../enterprise/include/functions_tasklist.php:308 +msgid "Custom script" +msgstr "カスタムスクリプト" + +#: ../../include/functions_servers.php:560 +#: ../../include/functions_servers.php:1187 +msgid "Data server" +msgstr "データサーバ" + +#: ../../include/functions_servers.php:570 +#: ../../include/functions_servers.php:1190 +msgid "Network server" +msgstr "ネットワークサーバ" + +#: ../../include/functions_servers.php:580 +msgid "SNMP Trap server" +msgstr "SNMPトラップサーバ" + +#: ../../include/functions_servers.php:600 +#: ../../include/functions_servers.php:1202 +msgid "Plugin server" +msgstr "プラグインサーバ" + +#: ../../include/functions_servers.php:610 +msgid "Prediction server" +msgstr "予測サーバ" + +#: ../../include/functions_servers.php:620 +#: ../../include/functions_servers.php:1208 +msgid "WMI server" +msgstr "WMI サーバ" + +#: ../../include/functions_servers.php:630 +#: ../../include/functions_servers.php:1214 +#: ../../enterprise/godmode/servers/manage_export_form.php:73 +msgid "Export server" +msgstr "エクスポートサーバ" + +#: ../../include/functions_servers.php:640 +#: ../../include/functions_servers.php:1217 +msgid "Inventory server" +msgstr "インベントリサーバ" + +#: ../../include/functions_servers.php:650 +#: ../../include/functions_servers.php:1211 +msgid "Web server" +msgstr "ウェブサーバ" + +#: ../../include/functions_servers.php:660 +#: ../../include/functions_servers.php:1220 +msgid "Event server" +msgstr "イベントサーバ" + +#: ../../include/functions_servers.php:670 +#: ../../include/functions_servers.php:1196 +msgid "Enterprise ICMP server" +msgstr "エンタープライズ ICMP サーバ" + +#: ../../include/functions_servers.php:680 +#: ../../include/functions_servers.php:1199 +msgid "Enterprise SNMP server" +msgstr "エンタープライズSNMPサーバ" + +#: ../../include/functions_servers.php:690 +msgid "Enterprise Satellite server" +msgstr "Enterprise サテライトサーバ" + +#: ../../include/functions_servers.php:700 +msgid "Enterprise Transactional server" +msgstr "Enterprise トランザクションサーバ" + +#: ../../include/functions_servers.php:710 +msgid "Mainframe server" +msgstr "メインフレームサーバ" + +#: ../../include/functions_servers.php:720 +msgid "Sync server" +msgstr "同期サーバ" + +#: ../../include/functions_servers.php:730 +msgid "Wux server" +msgstr "Wux サーバ" + +#: ../../include/functions_servers.php:740 +#: ../../include/functions_servers.php:1226 +msgid "Log server" +msgstr "ログサーバ" + +#: ../../include/functions_servers.php:750 +msgid "Autoprovision server" +msgstr "自動プロビジョニングサーバ" + +#: ../../include/functions_servers.php:760 +msgid "Migration server" +msgstr "マイグレーションサーバ" + +#: ../../include/functions_servers.php:1193 +msgid "SNMP server" +msgstr "SNNP サーバ" + +#: ../../include/functions_servers.php:1205 +msgid "Prediction Server" +msgstr "予測サーバ" + +#: ../../include/functions_servers.php:1229 +msgid "WUX server" +msgstr "WUX サーバ" + +#: ../../include/functions_snmp.php:65 +msgid "Load Average (Last minute)" +msgstr "ロードアベレージ (1分)" + +#: ../../include/functions_snmp.php:69 +msgid "Load Average (Last 5 minutes)" +msgstr "ロードアベレージ (5分)" + +#: ../../include/functions_snmp.php:73 +msgid "Load Average (Last 15 minutes)" +msgstr "ロードアベレージ (15分)" + +#: ../../include/functions_snmp.php:77 +msgid "Total Swap Size configured for the host" +msgstr "ホストに設定されているスワップ容量" + +#: ../../include/functions_snmp.php:81 +msgid "Available Swap Space on the host" +msgstr "ホストのスワップ領域の空き容量" + +#: ../../include/functions_snmp.php:85 +msgid "Total Real/Physical Memory Size on the host" +msgstr "ホストの物理メモリ量" + +#: ../../include/functions_snmp.php:89 +msgid "Available Real/Physical Memory Space on the host" +msgstr "ホストの実メモリの空き容量" + +#: ../../include/functions_snmp.php:93 +msgid "Total Available Memory on the host" +msgstr "ホストの全体の空きメモリ" + +#: ../../include/functions_snmp.php:97 +msgid "Total Cached Memory" +msgstr "キャッシュメモリ量" + +#: ../../include/functions_snmp.php:101 +msgid "Total Buffered Memory" +msgstr "バッファメモリ量" + +#: ../../include/functions_snmp.php:105 +msgid "Amount of memory swapped in from disk (kB/s)" +msgstr "ディスクからスワップしているメモリ量 (kB/s)" + +#: ../../include/functions_snmp.php:109 +msgid "Amount of memory swapped to disk (kB/s)" +msgstr "ディスクへスワップしているメモリ量 (kB/s)" + +#: ../../include/functions_snmp.php:113 +msgid "Number of blocks sent to a block device" +msgstr "ブロックデバイスへ送っているブロック数" + +#: ../../include/functions_snmp.php:117 +msgid "Number of blocks received from a block device" +msgstr "ブロックデバイスから受け取っているブロック数" + +#: ../../include/functions_snmp.php:121 +msgid "Number of interrupts processed" +msgstr "割り込み処理数" + +#: ../../include/functions_snmp.php:125 +msgid "Number of context switches" +msgstr "コンテキストスイッチ数" + +#: ../../include/functions_snmp.php:129 +msgid "user CPU time" +msgstr "user CPU時間" + +#: ../../include/functions_snmp.php:133 +msgid "system CPU time" +msgstr "system CPU時間" + +#: ../../include/functions_snmp.php:137 +msgid "idle CPU time" +msgstr "idle CPU時間" + +#: ../../include/functions_snmp.php:141 +msgid "system Up time" +msgstr "システムアップタイム" + +#: ../../include/functions_snmp.php:349 +msgid "Pagination" +msgstr "ページ" + +#: ../../include/functions_snmp.php:381 ../../include/functions_snmp.php:389 +msgid "Group by Enterprise String / IP" +msgstr "Enterprise 文字列/IP でのグループ" + +#: ../../include/functions_snmp.php:451 +#: ../../enterprise/include/functions_events.php:291 +msgid "Active filter" +msgstr "有効なフィルタ" + +#: ../../include/functions_snmp.php:451 +#: ../../enterprise/include/functions_events.php:291 +msgid "Active filters" +msgstr "有効なフィルタ" + +#: ../../include/functions_db.php:115 +#, php-format +msgid "Error connecting to database %s at %s." +msgstr "データベース %s@%s への接続エラー。" + +#: ../../include/functions_db.php:1749 +msgid "Database debug" +msgstr "DBのデバッグ" + +#: ../../include/functions_db.php:1765 +msgid "SQL sentence" +msgstr "SQL 構文" + +#: ../../include/functions_db.php:1767 +msgid "Rows" +msgstr "行" + +#: ../../include/functions_db.php:1768 +msgid "Saved" +msgstr "保存" + +#: ../../include/functions_db.php:1769 +msgid "Time (ms)" +msgstr "時間 (ミリ秒)" + +#: ../../include/functions_snmp_browser.php:503 +msgid "Numeric OID" +msgstr "数値 OID" + +#: ../../include/functions_snmp_browser.php:521 +msgid "Syntax" +msgstr "書式" + +#: ../../include/functions_snmp_browser.php:527 +msgid "Display hint" +msgstr "ヒント表示" + +#: ../../include/functions_snmp_browser.php:533 +msgid "Max access" +msgstr "最大アクセス" + +#: ../../include/functions_snmp_browser.php:555 +msgid "OID Information" +msgstr "OID 情報" + +#: ../../include/functions_snmp_browser.php:633 +msgid "Starting OID" +msgstr "開始 OID" + +#: ../../include/functions_snmp_browser.php:682 +msgid "Server to execute" +msgstr "実行サーバ" + +#: ../../include/functions_snmp_browser.php:685 +msgid "Browse" +msgstr "参照" + +#: ../../include/functions_snmp_browser.php:731 +msgid "First match" +msgstr "最初のマッチ" + +#: ../../include/functions_snmp_browser.php:732 +msgid "Previous match" +msgstr "前のマッチ" + +#: ../../include/functions_snmp_browser.php:733 +msgid "Next match" +msgstr "次のマッチ" + +#: ../../include/functions_snmp_browser.php:734 +msgid "Last match" +msgstr "最後のマッチ" + +#: ../../include/functions_snmp_browser.php:741 +msgid "Expand the tree (can be slow)" +msgstr "ツリーを展開する (遅くなります)" + +#: ../../include/functions_snmp_browser.php:746 +msgid "Collapse the tree" +msgstr "ツリーを閉じる" + +#: ../../include/functions_snmp_browser.php:765 +msgid "SNMP v3 options" +msgstr "SNMP v3 オプション" + +#: ../../include/functions_snmp_browser.php:768 +msgid "Search options" +msgstr "検索オプション" + +#: ../../include/functions_snmp_browser.php:778 +msgid "Search matches" +msgstr "検索マッチ" + +#: ../../include/functions_events.php:60 +#: ../../include/functions_events.php.orig:58 +#: ../../include/functions_modules.php:2426 +#: ../../include/functions_modules.php:3393 +#: ../../mobile/operation/modules.php:515 +#: ../../mobile/operation/modules.php:578 +#: ../../operation/agentes/status_monitor.php:1352 +#: ../../operation/events/events.php:1837 ../../operation/search_modules.php:90 +#: ../../enterprise/operation/agentes/tag_view.php:918 +msgid "NOT INIT" +msgstr "未初期化" + +#: ../../include/functions_events.php:65 ../../include/functions_events.php:91 +#: ../../include/functions_events.php.orig:63 +#: ../../include/functions_events.php.orig:89 +#: ../../include/functions_ui.php:3495 ../../operation/events/events.php:1779 +#: ../../operation/events/events.php:1844 +msgid "ALERT" +msgstr "アラート" + +#: ../../include/functions_events.php:98 +#: ../../include/functions_events.php:2673 +#: ../../include/functions_events.php.orig:96 +#: ../../include/functions_events.php.orig:2579 +#: ../../include/functions_ui.php:3504 ../../include/functions_graph.php:3384 +#: ../../operation/events/events.php:1788 +msgid "SYSTEM" +msgstr "システム" + +#: ../../include/functions_events.php:132 +#: ../../include/functions_events.php.orig:130 +msgid "NEW" +msgstr "新規" + +#: ../../include/functions_events.php:135 +#: ../../include/functions_events.php.orig:133 +msgid "IN PROCESS" +msgstr "処理中" + +#: ../../include/functions_events.php:138 +#: ../../include/functions_events.php.orig:136 +msgid "VALIDATED" +msgstr "承諾済" + +#: ../../include/functions_events.php:157 +#: ../../include/functions_events.php.orig:155 +#: ../../include/functions_ui.php:3573 ../../operation/events/events.php:1716 +msgid "MAINTENANCE" +msgstr "メンテナンス" + +#: ../../include/functions_events.php:160 +#: ../../include/functions_events.php.orig:158 +#: ../../include/functions_ui.php:3578 ../../operation/events/events.php:1721 +msgid "INFORMATIONAL" +msgstr "情報" + +#: ../../include/functions_events.php:163 +#: ../../include/functions_events.php.orig:161 +#: ../../include/functions_ui.php:3603 ../../operation/events/events.php:1726 +msgid "MAJOR" +msgstr "メジャー" + +#: ../../include/functions_events.php:166 +#: ../../include/functions_events.php.orig:164 +#: ../../include/functions_ui.php:3598 ../../operation/events/events.php:1731 +msgid "MINOR" +msgstr "マイナー" + +#: ../../include/functions_events.php:189 +#: ../../include/functions_events.php.orig:187 +#: ../../enterprise/meta/include/functions_events_meta.php:58 +msgid "Event id" +msgstr "イベント ID" + +#: ../../include/functions_events.php:190 +#: ../../include/functions_events.php:2388 +#: ../../include/functions_events.php:4490 +#: ../../include/functions_events.php.orig:188 +#: ../../include/functions_events.php.orig:2294 +#: ../../include/functions_events.php.orig:4384 +#: ../../include/functions_reporting_html.php:1183 +#: ../../include/functions_reporting_html.php:1191 +#: ../../include/functions_reporting_html.php:3951 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:395 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:451 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:503 +#: ../../enterprise/meta/include/functions_events_meta.php:62 +msgid "Event name" +msgstr "イベント名" + +#: ../../include/functions_events.php:197 +#: ../../include/functions_events.php.orig:195 +msgid "Agent module" +msgstr "エージェントモジュール" + +#: ../../include/functions_events.php:203 +#: ../../include/functions_events.php:4268 +#: ../../include/functions_events.php.orig:201 +#: ../../include/functions_events.php.orig:4175 +#: ../../enterprise/meta/include/functions_events_meta.php:114 +msgid "Extra id" +msgstr "拡張 ID" + +#: ../../include/functions_events.php:209 +#: ../../include/functions_events.php:6111 +#: ../../include/functions_events.php.orig:207 +#: ../../include/functions_events.php.orig:6015 +#: ../../include/functions_reporting_html.php:3882 ../../operation/tree.php:219 +#: ../../enterprise/dashboard/widgets/module_status.php:30 +#: ../../enterprise/dashboard/widgets/module_status.php:223 +#: ../../enterprise/meta/include/functions_events_meta.php:138 +msgid "Module status" +msgstr "モジュールの状態" + +#: ../../include/functions_events.php:238 +#: ../../include/functions_events.php.orig:236 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:105 +#: ../../enterprise/include/functions_inventory.php:76 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:409 +msgid "Agent alias" +msgstr "エージェントの別名" + +#: ../../include/functions_events.php:2353 +#: ../../include/functions_events.php:2356 +#: ../../include/functions_events.php.orig:2259 +#: ../../include/functions_events.php.orig:2262 +#: ../../include/functions_reporting_html.php:4849 +#: ../../include/functions_reporting_html.php:5034 +#: ../../include/functions_reporting.php:1827 +#: ../../include/functions_reporting.php:2117 +#: ../../mobile/operation/events.php:858 +#: ../../operation/events/events.build_table.php:134 +#: ../../operation/events/events.build_table.php:1141 +msgid "No events" +msgstr "イベントがありません。" + +#: ../../include/functions_events.php:2366 +#: ../../include/functions_events.php.orig:2272 +#: ../../operation/agentes/tactical.php:197 +msgid "Latest events" +msgstr "最新のイベント" + +#: ../../include/functions_events.php:2406 +#: ../../include/functions_events.php:3142 +#: ../../include/functions_events.php:3422 +#: ../../include/functions_events.php:3431 +#: ../../include/functions_events.php:3438 +#: ../../include/functions_events.php:3445 +#: ../../include/functions_events.php:5535 +#: ../../include/functions_events.php:5543 +#: ../../include/functions_events.php.orig:2312 +#: ../../include/functions_events.php.orig:3048 +#: ../../include/functions_events.php.orig:3328 +#: ../../include/functions_events.php.orig:3337 +#: ../../include/functions_events.php.orig:3344 +#: ../../include/functions_events.php.orig:3351 +#: ../../include/functions_events.php.orig:5439 +#: ../../include/functions_events.php.orig:5447 +#: ../../include/functions_graph.php:3255 +#: ../../operation/snmpconsole/snmp_view.php:564 +#: ../../operation/snmpconsole/snmp_view.php:886 +#: ../../operation/snmpconsole/snmp_view.php:1153 +msgid "Validated" +msgstr "承諾済み" + +#: ../../include/functions_events.php:2406 +#: ../../include/functions_events.php.orig:2312 +#: ../../enterprise/operation/agentes/policy_view.php:53 +msgid "V." +msgstr "V." + +#: ../../include/functions_events.php:2503 +#: ../../include/functions_events.php.orig:2409 +msgid "Events -by module-" +msgstr "イベント -モジュールごと-" + +#: ../../include/functions_events.php:2509 +#: ../../include/functions_events.php.orig:2415 +#: ../../operation/agentes/tactical.php:214 +#: ../../operation/events/event_statistics.php:51 +msgid "Event graph" +msgstr "イベントグラフ" + +#: ../../include/functions_events.php:2511 +#: ../../include/functions_events.php.orig:2417 +#: ../../operation/agentes/tactical.php:217 +#: ../../operation/events/event_statistics.php:71 +msgid "Event graph by agent" +msgstr "エージェントごとのイベントグラフ" + +#: ../../include/functions_events.php:2637 +#: ../../include/functions_events.php.orig:2543 +msgid "Going to unknown" +msgstr "不明状態になりました。" + +#: ../../include/functions_events.php:2645 +#: ../../include/functions_events.php.orig:2551 +msgid "Alert manually validated" +msgstr "アラートは承諾されました。" + +#: ../../include/functions_events.php:2649 +#: ../../include/functions_events.php.orig:2555 +msgid "Going from critical to warning" +msgstr "障害が警告状態になりました。" + +#: ../../include/functions_events.php:2655 +#: ../../include/functions_events.php.orig:2561 +msgid "Going up to critical state" +msgstr "障害状態に変わりました" + +#: ../../include/functions_events.php:2661 +#: ../../include/functions_events.php.orig:2567 +msgid "Going up to normal state" +msgstr "正常になりました。" + +#: ../../include/functions_events.php:2665 +#: ../../include/functions_events.php.orig:2571 +msgid "Going down from normal to warning" +msgstr "警告状態になりました。" + +#: ../../include/functions_events.php:2677 +#: ../../include/functions_events.php.orig:2583 +msgid "Discovery server detected a new host" +msgstr "自動検出サーバが新たなホストを検出しました" + +#: ../../include/functions_events.php:2681 +#: ../../include/functions_events.php.orig:2587 +msgid "New agent created" +msgstr "新しいエージェントが作成されました。" + +#: ../../include/functions_events.php:2698 +#: ../../include/functions_events.php.orig:2604 +msgid "Unknown type:" +msgstr "不明なタイプ" + +#: ../../include/functions_events.php:3134 +#: ../../include/functions_events.php:3140 +#: ../../include/functions_events.php:3162 +#: ../../include/functions_events.php.orig:3040 +#: ../../include/functions_events.php.orig:3046 +#: ../../include/functions_events.php.orig:3068 +#: ../../enterprise/dashboard/widgets/events_list.php:64 +msgid "All event" +msgstr "全イベント" + +#: ../../include/functions_events.php:3135 +#: ../../include/functions_events.php:3166 +#: ../../include/functions_events.php.orig:3041 +#: ../../include/functions_events.php.orig:3072 +msgid "Only new" +msgstr "新規のみ" + +#: ../../include/functions_events.php:3136 +#: ../../include/functions_events.php:3170 +#: ../../include/functions_events.php.orig:3042 +#: ../../include/functions_events.php.orig:3076 +#: ../../enterprise/dashboard/widgets/events_list.php:65 +msgid "Only validated" +msgstr "承諾済み" + +#: ../../include/functions_events.php:3137 +#: ../../include/functions_events.php:3174 +#: ../../include/functions_events.php.orig:3043 +#: ../../include/functions_events.php.orig:3080 +msgid "Only in process" +msgstr "処理中のみ" + +#: ../../include/functions_events.php:3138 +#: ../../include/functions_events.php:3178 +#: ../../include/functions_events.php.orig:3044 +#: ../../include/functions_events.php.orig:3084 +msgid "Only not validated" +msgstr "未承諾のみ" + +#: ../../include/functions_events.php:3141 +#: ../../include/functions_events.php:3420 +#: ../../include/functions_events.php.orig:3047 +#: ../../include/functions_events.php.orig:3326 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:31 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 +msgid "New" +msgstr "新規" + +#: ../../include/functions_events.php:3143 +#: ../../include/functions_events.php:3421 +#: ../../include/functions_events.php:3430 +#: ../../include/functions_events.php.orig:3049 +#: ../../include/functions_events.php.orig:3327 +#: ../../include/functions_events.php.orig:3336 +msgid "In process" +msgstr "処理中" + +#: ../../include/functions_events.php:3144 +#: ../../include/functions_events.php.orig:3050 +msgid "Not Validated" +msgstr "未承諾" + +#: ../../include/functions_events.php:3329 +#: ../../include/functions_events.php.orig:3235 +msgid "Change owner" +msgstr "所有者変更" + +#: ../../include/functions_events.php:3405 +#: ../../include/functions_events.php.orig:3311 +msgid "Change status" +msgstr "ステータス変更" + +#: ../../include/functions_events.php:3488 +#: ../../include/functions_events.php:4797 +#: ../../include/functions_events.php.orig:3394 +#: ../../include/functions_events.php.orig:4701 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:365 +msgid "Add comment" +msgstr "コメントの追加" + +#: ../../include/functions_events.php:3508 +#: ../../include/functions_events.php:3512 +#: ../../include/functions_events.php:6591 +#: ../../include/functions_events.php.orig:3414 +#: ../../include/functions_events.php.orig:3418 +#: ../../include/functions_events.php.orig:6495 +#: ../../operation/events/events.build_table.php:867 +#: ../../operation/events/events.php:1900 +msgid "Delete event" +msgstr "削除" + +#: ../../include/functions_events.php:3532 +#: ../../include/functions_events.php.orig:3438 +msgid "Custom responses" +msgstr "カスタム応答" + +#: ../../include/functions_events.php:3966 +#: ../../include/functions_events.php.orig:3872 +msgid "Extended information" +msgstr "拡張情報" + +#: ../../include/functions_events.php:3994 +#: ../../include/functions_events.php.orig:3900 +msgid "There was an error connecting to the node" +msgstr "ノードへの接続エラーが発生しました" + +#: ../../include/functions_events.php:4031 +#: ../../include/functions_events.php.orig:3937 +msgid "Agent details" +msgstr "エージェント詳細" + +#: ../../include/functions_events.php:4081 +#: ../../include/functions_events.php.orig:3987 +#: ../../operation/agentes/ver_agente.php:859 +#: ../../enterprise/operation/agentes/ver_agente.php:75 +msgid "Last remote contact" +msgstr "最終リモート接続" + +#: ../../include/functions_events.php:4088 +#: ../../include/functions_events.php.orig:3994 +msgid "View custom fields" +msgstr "カスタムフィールド表示" + +#: ../../include/functions_events.php:4111 +#: ../../include/functions_events.php.orig:4017 +msgid "Module details" +msgstr "モジュール詳細" + +#: ../../include/functions_events.php:4127 +#: ../../include/functions_events.php.orig:4033 +msgid "No assigned" +msgstr "未割当" + +#: ../../include/functions_events.php:4217 +#: ../../include/functions_events.php:4223 +#: ../../include/functions_events.php.orig:4124 +#: ../../include/functions_events.php.orig:4130 +msgid "Go to data overview" +msgstr "データ概要表示" + +#: ../../include/functions_events.php:4323 +#: ../../include/functions_events.php.orig:4226 +#, php-format +msgid "Invalid custom data: %s" +msgstr "不正なカスタムデータ: %s" + +#: ../../include/functions_events.php:4485 +#: ../../include/functions_events.php:6000 +#: ../../include/functions_events.php.orig:4379 +#: ../../include/functions_events.php.orig:5904 +#: ../../mobile/operation/events.php:512 +#: ../../operation/events/events.build_table.php:162 +msgid "Event ID" +msgstr "イベントID" + +#: ../../include/functions_events.php:4498 +#: ../../include/functions_events.php.orig:4392 +msgid "First event" +msgstr "最初のイベント" + +#: ../../include/functions_events.php:4498 +#: ../../include/functions_events.php.orig:4392 +msgid "Last event" +msgstr "最後のイベント" + +#: ../../include/functions_events.php:4574 +#: ../../include/functions_events.php.orig:4468 +#: ../../mobile/operation/events.php:540 +msgid "Acknowledged by" +msgstr "承諾者" + +#: ../../include/functions_events.php:4635 +#: ../../include/functions_events.php.orig:4521 +msgid "ID extra" +msgstr "拡張 ID" + +#: ../../include/functions_events.php:4688 +#: ../../include/functions_events.php.orig:4608 +#: ../../include/functions_events.php.orig:4664 +msgid "There are no comments" +msgstr "コメントがありません" + +#: ../../include/functions_events.php:4807 +#: ../../include/functions_events.php.orig:4711 +msgid "" +"If event replication is ongoing, it won't be possible to enter comments " +"here. This option is only to allow local pandora users to see comments, but " +"not to operate with them. The operation, when event replication is enabled, " +"must be done only in the Metaconsole." +msgstr "" +"イベントの複製実行中は、ここにコメントを入力することはできません。 このオプションでは、ローカルの pandora " +"ユーザはコメントを表示することのみが可能で、コメントを操作することはできません。 " +"イベント複製が有効な場合は、操作はメタコンソールでのみ実行する必要があります。" + +#: ../../include/functions_events.php:4992 +#: ../../include/functions_events.php.orig:4896 +msgid "Pandora System" +msgstr "Pandora System" + +#: ../../include/functions_events.php:5537 +#: ../../include/functions_events.php:5544 +#: ../../include/functions_events.php.orig:5441 +#: ../../include/functions_events.php.orig:5448 +#: ../../operation/snmpconsole/snmp_view.php:563 +#: ../../operation/snmpconsole/snmp_view.php:876 +#: ../../operation/snmpconsole/snmp_view.php:1162 +msgid "Not validated" +msgstr "未承諾" + +#: ../../include/functions_events.php:6051 +#: ../../include/functions_events.php.orig:5955 +msgid "Agent Module" +msgstr "エージェントモジュール" + +#: ../../include/functions_events.php:6577 +#: ../../include/functions_events.php.orig:6481 +#: ../../operation/events/events.build_table.php:843 +#: ../../operation/events/events.php:1876 +msgid "Validate event" +msgstr "承諾" + +#: ../../include/functions_events.php:6600 +#: ../../include/functions_events.php.orig:6504 +#: ../../operation/events/events.build_table.php:877 +msgid "Is not allowed delete events in process" +msgstr "処理中イベントは削除できません" + +#: ../../include/functions_events.php:6611 +#: ../../include/functions_events.php.orig:6515 +#: ../../operation/events/events.build_table.php:831 +#: ../../operation/events/events.php:1698 +#: ../../operation/events/events.php:1861 ../../operation/menu.php:247 +#: ../../operation/snmpconsole/snmp_view.php:988 +#: ../../enterprise/operation/agentes/wux_console_view.php:560 +msgid "Show more" +msgstr "詳細を表示する" + +#: ../../include/functions_tags.php:707 +msgid "Click here to open a popup window with URL tag" +msgstr "URLタグのポップアップウインドウを開くにはここをクリックしてください" + +#: ../../include/functions_treeview.php:52 +msgid "There was a problem loading module" +msgstr "モジュールの読み込みで問題が発生しました。" + +#: ../../include/functions_treeview.php:313 +#: ../../include/functions_visual_map.php:2943 +#: ../../include/functions_visual_map.php:2958 +#: ../../include/graphs/functions_flot.php:501 +#: ../../include/functions_reporting_html.php:595 +#: ../../include/functions_reporting_html.php:3411 +#: ../../enterprise/godmode/reporting/cluster_view.php:356 +#: ../../enterprise/godmode/reporting/cluster_view.php:452 +msgid "No data" +msgstr "データがありません" + +#: ../../include/functions_treeview.php:317 +#: ../../include/functions_reporting_html.php:75 +#: ../../include/functions_reporting_html.php:4463 +#: ../../enterprise/include/functions_reporting_pdf.php:1708 +msgid "Last data" +msgstr "最新データ" + +#: ../../include/functions_treeview.php:332 +msgid "Go to module edition" +msgstr "モジュールの編集へ行く" + +#: ../../include/functions_treeview.php:383 +msgid "There was a problem loading alerts" +msgstr "アラートの読み込みで問題が発生しました。" + +#: ../../include/functions_treeview.php:468 +msgid "Go to alerts edition" +msgstr "アラートの編集へ行く" + +#: ../../include/functions_treeview.php:540 +#: ../../operation/agentes/agent_fields.php:24 +#: ../../operation/agentes/custom_fields.php:24 +#: ../../operation/agentes/estado_generalagente.php:63 +msgid "There was a problem loading agent" +msgstr "エージェントのロードに失敗しました。" + +#: ../../include/functions_treeview.php:601 +#: ../../operation/agentes/estado_generalagente.php:433 +msgid "Other IP addresses" +msgstr "他のIPアドレス" + +#: ../../include/functions_treeview.php:631 +#: ../../operation/agentes/estado_agente.php:701 +#: ../../operation/agentes/estado_generalagente.php:298 +#: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 +#: ../../enterprise/operation/agentes/tag_view.php:574 +msgid "Remote" +msgstr "リモート" + +#: ../../include/functions_treeview.php:639 +msgid "Next agent contact" +msgstr "次の接続予定" + +#: ../../include/functions_treeview.php:657 +msgid "Go to agent edition" +msgstr "エージェントの編集へ行く" + +#: ../../include/functions_treeview.php:661 +msgid "Edit cluster" +msgstr "" + +#: ../../include/functions_treeview.php:673 +msgid "Agent data" +msgstr "エージェントデータ" + +#: ../../include/functions_treeview.php:685 +#: ../../operation/agentes/estado_generalagente.php:208 +#: ../../operation/gis_maps/ajax.php:341 +msgid "Agent Version" +msgstr "エージェントバージョン" + +#: ../../include/functions_treeview.php:704 +#: ../../operation/agentes/estado_generalagente.php:399 +msgid "Position (Long, Lat)" +msgstr "位置 (経度、緯度)" + +#: ../../include/functions_treeview.php:721 +#: ../../operation/agentes/estado_generalagente.php:441 +msgid "Timezone Offset" +msgstr "タイムゾーンオフセット" + +#: ../../include/functions_treeview.php:737 +#: ../../operation/agentes/agent_fields.php:44 +#: ../../operation/agentes/estado_generalagente.php:472 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:211 +msgid "Custom field" +msgstr "カスタムフィールド" + +#: ../../include/functions_treeview.php:753 +msgid "Advanced information" +msgstr "拡張情報" + +#: ../../include/functions_treeview.php:759 +#: ../../operation/agentes/estado_generalagente.php:523 +msgid "Agent access rate (24h)" +msgstr "エージェントアクセス頻度(過去24時間)" + +#: ../../include/functions_treeview.php:766 +#: ../../mobile/operation/agent.php:275 +#: ../../operation/agentes/estado_generalagente.php:809 +msgid "Events (24h)" +msgstr "イベント (24時間)" + +#: ../../include/functions_treeview.php:809 +#: ../../operation/agentes/estado_generalagente.php:642 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:1164 +msgid "Interface traffic" +msgstr "インタフェーストラフィック" + +#: ../../include/functions_treeview.php:830 +msgid "Interface information" +msgstr "インタフェース情報" + +#: ../../include/functions_filemanager.php:170 +#: ../../include/functions_filemanager.php:235 +#: ../../include/functions_filemanager.php:288 +#: ../../include/functions_filemanager.php:367 +msgid "Security error" +msgstr "セキュリティエラー" + +#: ../../include/functions_filemanager.php:180 +msgid "Upload error" +msgstr "アップロードエラー" + +#: ../../include/functions_filemanager.php:187 +#: ../../include/functions_filemanager.php:250 +#: ../../include/functions_filemanager.php:312 +msgid "Upload correct" +msgstr "アップロードしました" + +#: ../../include/functions_filemanager.php:200 +msgid "" +"File size seems to be too large. Please check your php.ini configuration or " +"contact with the administrator" +msgstr "ファイルサイズが大きすぎます。php.ini の設定を確認するか管理者に相談してください。" + +#: ../../include/functions_filemanager.php:244 +msgid "Error creating file" +msgstr "ファイル作成エラー" + +#: ../../include/functions_filemanager.php:255 +#: ../../include/functions_filemanager.php:347 +msgid "Error creating file with empty name" +msgstr "ファイル名未指定によるファイル作成エラー" + +#: ../../include/functions_filemanager.php:298 +msgid "Attach error" +msgstr "添付エラー" + +#: ../../include/functions_filemanager.php:334 +#: ../../enterprise/godmode/agentes/collections.editor.php:171 +#: ../../enterprise/godmode/agentes/collections.editor.php:338 +#: ../../enterprise/meta/advanced/collections.editor.php:139 +#: ../../enterprise/meta/advanced/collections.editor.php:304 +msgid "Security error." +msgstr "セキュリティエラー" + +#: ../../include/functions_filemanager.php:343 +msgid "Directory created" +msgstr "ディレクトリを作成しました" + +#: ../../include/functions_filemanager.php:369 +#: ../../include/functions_reporting_html.php:1411 +#: ../../enterprise/include/functions_inventory.php:721 +#: ../../enterprise/include/functions_inventory.php:786 +msgid "Deleted" +msgstr "削除しました" + +#: ../../include/functions_filemanager.php:548 +#: ../../include/functions_filemanager.php:776 +msgid "Create a Directory" +msgstr "" + +#: ../../include/functions_filemanager.php:552 +#: ../../include/functions_filemanager.php:783 +#: ../../include/functions_filemanager.php:784 +msgid "Create a Text" +msgstr "" + +#: ../../include/functions_filemanager.php:556 +#: ../../include/functions_filemanager.php:791 +#: ../../include/functions_filemanager.php:792 +msgid "Upload Files" +msgstr "" + +#: ../../include/functions_filemanager.php:587 +#, php-format +msgid "Directory %s doesn't exist!" +msgstr "%s ディレクトリは存在しません!" + +#: ../../include/functions_filemanager.php:636 +msgid "Parent directory" +msgstr "親ディレクトリ" + +#: ../../include/functions_filemanager.php:650 +msgid "Directory" +msgstr "ディレクトリ" + +#: ../../include/functions_filemanager.php:658 +msgid "Compressed file" +msgstr "圧縮ファイル" + +#: ../../include/functions_filemanager.php:662 +#: ../../include/functions_filemanager.php:669 +msgid "Text file" +msgstr "テキストファイル" + +#: ../../include/functions_filemanager.php:702 +msgid "This file could be executed by any user" +msgstr "このファイルは任意のユーザで実行できます。" + +#: ../../include/functions_filemanager.php:703 +msgid "Make sure it can't perform dangerous tasks" +msgstr "危険な処理はできないことを確認してください" + +#: ../../include/functions_filemanager.php:775 +#: ../../include/functions_filemanager.php:811 +msgid "Create directory" +msgstr "ディレクトリの作成" + +#: ../../include/functions_filemanager.php:800 +msgid "The zip upload in this dir, easy to upload multiple files." +msgstr "このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロードも簡単です。" + +#: ../../include/functions_filemanager.php:800 +msgid "Decompress" +msgstr "展開" + +#: ../../include/functions_filemanager.php:800 +#: ../../enterprise/extensions/csv_import_group/main.php:91 +#: ../../enterprise/include/class/CSVImportAgents.class.php:196 +msgid "Go" +msgstr "実行" + +#: ../../include/functions_filemanager.php:819 +msgid "Create text" +msgstr "テキストの作成" + +#: ../../include/functions_filemanager.php:827 +msgid "Upload file/s" +msgstr "ファイルのアップロード" + +#: ../../include/functions_filemanager.php:834 +msgid "The directory is read-only" +msgstr "ディレクトリが読み出し専用です。" + +#: ../../include/functions_ui.php:280 +msgid "Information" +msgstr "情報" + +#: ../../include/functions_ui.php:454 msgid "Request successfully processed" msgstr "要求された処理を実行しました。" -#: ../../include/functions_ui.php:375 +#: ../../include/functions_ui.php:458 msgid "Error processing request" msgstr "要求された処理の実行に失敗しました。" -#: ../../include/functions_ui.php:513 +#: ../../include/functions_ui.php:615 msgid "" "Is possible that this view uses part of information which your user has not " "access" msgstr "あなたのユーザでアクセスできない情報の一部を利用している可能性があります" -#: ../../include/functions_ui.php:683 +#: ../../include/functions_ui.php:857 msgid "Software" msgstr "ソフトウェア" -#: ../../include/functions_ui.php:1055 +#: ../../include/functions_ui.php:1331 msgid "The alert would fire when the value is over " msgstr "取得した値が 以上になったら、アラートを発生させます。" -#: ../../include/functions_ui.php:1060 +#: ../../include/functions_ui.php:1336 msgid "The alert would fire when the value is under " msgstr "取得した値が 未満になったら、アラートを発生させます。" -#: ../../include/functions_ui.php:1343 -#: ../../enterprise/meta/include/functions_ui_meta.php:54 -msgid "the Flexible Monitoring System" -msgstr "the Flexible Monitoring System" +#: ../../include/functions_ui.php:1351 +msgid "Unknown option." +msgstr "" -#: ../../include/functions_ui.php:1681 ../../include/functions_ui.php:1707 +#: ../../include/functions_ui.php:2069 ../../include/functions_ui.php:2095 #, php-format msgid "Total items: %s" msgstr "全アイテム数: %s" -#: ../../include/functions_ui.php:2024 +#: ../../include/functions_ui.php:2494 msgid "Unknown type" msgstr "不明なタイプ" -#: ../../include/functions_ui.php:2837 +#: ../../include/functions_ui.php:3269 +#: ../../enterprise/include/class/DatabaseHA.class.php:213 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:337 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:339 +msgid "Processing" +msgstr "" + +#: ../../include/functions_ui.php:3341 ../../include/functions_ui.php:3342 +msgid "Export current page to CSV" +msgstr "" + +#: ../../include/functions_ui.php:4466 msgid "Type at least two characters to search." msgstr "2文字以上入力するとマッチするエージェント名が検索されます" -#: ../../include/functions_ui.php:3721 -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" -"\t\t\tthe database server is not running." +#: ../../include/functions_ui.php:5380 +msgid "Unhandled error" msgstr "" -"データベースに接続できません。 include/config.php " -"ファイル内のデータベースの設定を確認してください。

    \n" -"\t\t\tおそらく、データベース名、ホスト名、ユーザ名またはパスワードの値が不正か、\n" -"\t\t\tデータベースが動作していません。" -#: ../../include/functions_ui.php:3736 -msgid "" -"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.
    " +#: ../../include/functions_ui.php:5381 +msgid "An unhandled error occurs" msgstr "" -"データベースから設定を読み込めません。include/config.phpファイルのデータベース設定を確認してください。
    \n" -"\t\t\t " -"データベーススキーマは作成されているがデータが入っていない、データベースへのアクセス権限が無い、またはスキーマが古いといったことが考えられます。\n" -"\t\t\t

    または、Pandora FMS コンソールが include/config.php " -"ファイルを見つけられないか、このファイルが不正な\n" -"\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決にはドキュメントを参照してください。
    " -#: ../../include/functions_ui.php:3744 -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." -msgstr "" -"Pandora FMS コンソールが include/config.php ファイルを見つけられないか、このファイルが不正な\n" -"\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決にはドキュメントを参照してください。
    " +#: ../../include/functions_ui.php:5623 +#: ../../enterprise/include/functions_ux_console.php:472 +#: ../../enterprise/operation/agentes/tag_view.php:856 +#: ../../enterprise/operation/agentes/tag_view.php:866 +#: ../../enterprise/operation/agentes/ux_console_view.php:123 +#: ../../enterprise/operation/agentes/ux_console_view.php:311 +#: ../../enterprise/operation/agentes/ux_console_view.php:406 +#: ../../enterprise/operation/agentes/wux_console_view.php:312 +msgid "Snapshot view" +msgstr "スナップショット表示" -#: ../../include/functions_ui.php:3759 -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." -msgstr "" -"セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはなりません。\n" -"\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削除してください。" - -#: ../../include/functions_ui.php:3764 -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." -msgstr "" -"セキュリティ上の理由により、 config.php は制限されたパーミッションである必要があります。\n" -"\t\t\t\"other\"ユーザは読み書きできないようにし、所有者(通常は www-data や http デーモンの\n" -"\t\t\tユーザ)のみが書き込みできるようにします。include/config.php ファイルの\n" -"\t\t\tパーミッションを修正するまで通常の動作をしません。セキュリティのために調整をしてください。" - -#: ../../include/functions_db.php:90 +#: ../../include/functions_ui.php:5647 #, php-format -msgid "Error connecting to database %s at %s." -msgstr "データベース %s@%s への接続エラー。" +msgid "" +"These controls are using the timezone of the system (%s) instead of yours " +"(%s). The difference with your time zone in hours is %s." +msgstr "" -#: ../../include/functions_db.php:1564 -msgid "Database debug" -msgstr "DBのデバッグ" +#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 +#: ../../include/functions_gis.php:36 +msgid "Hierarchy of agents" +msgstr "エージェントの階層" -#: ../../include/functions_db.php:1580 -msgid "SQL sentence" -msgstr "SQL 構文" +#: ../../include/functions_graph.php:1016 +msgid "No data to display within the selected interval" +msgstr "" -#: ../../include/functions_db.php:1582 -msgid "Rows" -msgstr "行" +#: ../../include/functions_graph.php:2465 +msgid "Not fired alerts" +msgstr "未発報アラート" -#: ../../include/functions_db.php:1583 -msgid "Saved" -msgstr "保存" +#: ../../include/functions_graph.php:2484 +#: ../../include/functions_graph.php:2602 +#: ../../include/functions_graph.php:2700 +#: ../../include/functions_graph.php:3273 +#: ../../include/functions_graph.php:3780 +#: ../../include/functions_reporting.php:1663 +#: ../../include/functions_reporting.php:1876 +#: ../../include/functions_reporting.php:1901 +#: ../../include/functions_reporting.php:1928 +#: ../../include/functions_reporting.php:1955 +#: ../../include/functions_reporting.php:2802 +#: ../../include/functions_reporting.php:3053 +#: ../../include/functions_reporting.php:3080 +#: ../../include/functions_reporting.php:3107 +#: ../../include/functions_reporting.php:8127 +#: ../../include/functions_reporting.php:8154 +#: ../../include/functions_reporting.php:8181 +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:243 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:206 +msgid "other" +msgstr "その他" -#: ../../include/functions_db.php:1584 -msgid "Time (ms)" -msgstr "時間 (ミリ秒)" +#: ../../include/functions_graph.php:2715 +#: ../../include/functions_graph.php:2763 +#: ../../include/graphs/functions_gd.php:183 +#: ../../include/graphs/functions_gd.php:466 +msgid "Out of limits" +msgstr "範囲外" -#: ../../include/functions_update_manager.php:202 +#: ../../include/functions_graph.php:2875 +#: ../../include/functions_incidents.php:29 +#: ../../include/functions_incidents.php:55 +msgid "Informative" +msgstr "情報" + +#: ../../include/functions_graph.php:2876 +#: ../../include/functions_incidents.php:30 +#: ../../include/functions_incidents.php:59 +#: ../../include/functions_netflow.php:1595 +msgid "Low" +msgstr "低い" + +#: ../../include/functions_graph.php:2877 +#: ../../include/functions_incidents.php:31 +#: ../../include/functions_incidents.php:63 +#: ../../include/functions_netflow.php:1596 +msgid "Medium" +msgstr "中くらい" + +#: ../../include/functions_graph.php:2878 +#: ../../include/functions_incidents.php:32 +#: ../../include/functions_incidents.php:67 +msgid "Serious" +msgstr "深刻" + +#: ../../include/functions_graph.php:2879 +#: ../../include/functions_incidents.php:33 +#: ../../include/functions_incidents.php:71 +msgid "Very serious" +msgstr "とても深刻" + +#: ../../include/functions_graph.php:2918 +#: ../../include/functions_graph.php:2941 +msgid "Open incident" +msgstr "オープンのインシデント" + +#: ../../include/functions_graph.php:2919 +#: ../../include/functions_graph.php:2945 +msgid "Closed incident" +msgstr "クローズされたインシデント" + +#: ../../include/functions_graph.php:2920 +#: ../../include/functions_graph.php:2949 +msgid "Outdated" +msgstr "期限切れ" + +#: ../../include/functions_graph.php:2921 +#: ../../include/functions_graph.php:2953 +#: ../../enterprise/godmode/setup/setup_acl.php:651 +#: ../../enterprise/godmode/setup/setup_acl.php:661 +msgid "Invalid" +msgstr "無効" + +#: ../../include/functions_graph.php:5274 +msgid "Main node" +msgstr "メインノード" + +#: ../../include/functions_groups.php:75 +msgid "Alert Actions" +msgstr "アラートアクション" + +#: ../../include/functions_groups.php:91 +msgid "Alert Templates" +msgstr "アラートテンプレート" + +#: ../../include/functions_groups.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 +msgid "Recon task" +msgstr "自動検出タスク" + +#: ../../include/functions_groups.php:139 +#: ../../operation/search_results.php:131 +#: ../../enterprise/include/functions_cron.php:1324 +#: ../../enterprise/meta/general/main_header.php:158 +#: ../../enterprise/meta/general/main_header.php:174 +#: ../../enterprise/mobile/include/functions_web.php:15 +msgid "Reports" +msgstr "レポート" + +#: ../../include/functions_groups.php:155 +msgid "Layout visual console" +msgstr "ビジュアルコンソールレイアウト" + +#: ../../include/functions_groups.php:171 +msgid "Plannet down time" +msgstr "計画停止時間" + +#: ../../include/functions_groups.php:203 +msgid "GIS maps" +msgstr "GIS マップ" + +#: ../../include/functions_groups.php:219 +msgid "GIS connections" +msgstr "GIS 利用マップ" + +#: ../../include/functions_groups.php:235 +msgid "GIS map layers" +msgstr "GIS マップレイヤ" + +#: ../../include/functions_groups.php:251 +msgid "Network maps" +msgstr "ネットワークマップ" + +#: ../../include/functions_update_manager.php:130 +#, php-format +msgid "%s configuration wizard" +msgstr "" + +#: ../../include/functions_update_manager.php:133 +#, php-format +msgid "" +"Please fill the following information in order to configure your %s instance " +"successfully" +msgstr "" + +#: ../../include/functions_update_manager.php:196 +msgid "E-mail for receiving alerts" +msgstr "アラート受信メールアドレス" + +#: ../../include/functions_update_manager.php:221 +msgid "All fields required" +msgstr "全フィールドが必須です" + +#: ../../include/functions_update_manager.php:230 +msgid "Are you sure you don't want to configure a base email?" +msgstr "" + +#: ../../include/functions_update_manager.php:232 +msgid "" +"You could change this options later in \"alert actions\" and setting your " +"account." +msgstr "" + +#: ../../include/functions_update_manager.php:446 +msgid "Register to Update Manager" +msgstr "" + +#: ../../include/functions_update_manager.php:454 +#, php-format +msgid "Keep this %s console up to date with latest updates." +msgstr "" + +#: ../../include/functions_update_manager.php:461 +#, php-format +msgid "" +"When you subscribe to the %s Update Manager service, you accept that we " +"register your %s instance as an identifier on a database owned by %s. This " +"data will solely be used to provide you with information about %s and will " +"not be conceded to third parties. You can unregister from said database at " +"any time from the Update Manager options." +msgstr "" + +#: ../../include/functions_update_manager.php:477 +#: ../../include/functions_update_manager.php:771 +msgid "OK!" +msgstr "" + +#: ../../include/functions_update_manager.php:493 +msgid "Are you sure you don't want to use update manager?" +msgstr "アップデートマネージャを使用しませんが、よいですか?" + +#: ../../include/functions_update_manager.php:495 +msgid "" +"You will need to update your system manually, through source code or RPM " +"packages to be up to date with latest updates." +msgstr "最新版のソースコードまたは RPM パッケージを用いて、システムを手動で更新する必要があります。" + +#: ../../include/functions_update_manager.php:714 +msgid "Do you want to be up to date?" +msgstr "更新しますか?" + +#: ../../include/functions_update_manager.php:722 +#: ../../operation/users/user_edit.php:434 +msgid "Subscribe to our newsletter" +msgstr "ニュースレターを購読する" + +#: ../../include/functions_update_manager.php:731 +#, php-format +msgid "" +"By subscribing to the newsletter, you accept that your email will be " +"transferred to a database owned by %s. These data will be used only to " +"provide you with information about %s and will not be given to third " +"parties. You can unsubscribe from this database at any time from the " +"newsletter subscription options." +msgstr "" +"ニュースレターを購読すると、%s が所有するデータベースにメールアドレスが保存されることに同意したことになります。これらのデータは、%s " +"に関する情報を提供するためにのみ使用され、第三者に提供されることはありません。ニュースレターの購読オプションから、いつでも購読を解除できます。" + +#: ../../include/functions_update_manager.php:788 +msgid "Are you sure you don't want to subscribe?" +msgstr "購読しませんが良いですか?" + +#: ../../include/functions_update_manager.php:790 +msgid "You will miss all news about amazing features and fixes!" +msgstr "あなたは素晴らしい機能と修正に関するすべてのニュースを見逃します!" + +#: ../../include/functions_update_manager.php:869 +msgid "You must specify an email" +msgstr "メールアドレスを指定する必要があります" + +#: ../../include/functions_update_manager.php:1121 +#: ../../include/functions_update_manager.php:1151 +#, php-format +msgid "Line \"%s\" not copied to the progress file." +msgstr "" + +#: ../../include/functions_update_manager.php:1195 msgid "There is a unknown error." msgstr "不明なエラーがあります。" -#: ../../include/functions_update_manager.php:316 -#: ../../include/functions_update_manager.php:319 -#: ../../include/functions_update_manager.php:445 -#: ../../include/functions_update_manager.php:449 -#: ../../enterprise/include/functions_update_manager.php:141 -#: ../../enterprise/include/functions_update_manager.php:317 +#: ../../include/functions_update_manager.php:1344 +#: ../../include/functions_update_manager.php:1346 +#: ../../include/functions_update_manager.php:1486 +#: ../../include/functions_update_manager.php:1489 +#: ../../enterprise/include/functions_update_manager.php:182 +#: ../../enterprise/include/functions_update_manager.php:376 msgid "Could not connect to internet" msgstr "インターネットへ接続できません" -#: ../../include/functions_update_manager.php:324 -#: ../../include/functions_update_manager.php:327 -#: ../../include/functions_update_manager.php:456 -#: ../../include/functions_update_manager.php:460 -#: ../../enterprise/include/functions_update_manager.php:144 +#: ../../include/functions_update_manager.php:1350 +#: ../../include/functions_update_manager.php:1352 +#: ../../include/functions_update_manager.php:1495 +#: ../../include/functions_update_manager.php:1498 +#: ../../enterprise/include/functions_update_manager.php:184 msgid "Server not found." msgstr "サーバが見つかりません。" -#: ../../include/functions_update_manager.php:382 -msgid "Update to the last version" -msgstr "最新版に更新" - -#: ../../include/functions_update_manager.php:385 -#: ../../enterprise/include/functions_update_manager.php:229 +#: ../../include/functions_update_manager.php:1408 +#: ../../enterprise/include/functions_update_manager.php:266 msgid "There is no update available." msgstr "更新がありません。" -#: ../../include/functions_update_manager.php:494 -#: ../../include/functions_update_manager.php:524 +#: ../../include/functions_update_manager.php:1548 msgid "Remote server error on newsletter request" msgstr "ニュースレターリクエストにおけるリモートサーバエラー" -#: ../../include/functions_update_manager.php:502 +#: ../../include/functions_update_manager.php:1558 msgid "E-mail successfully subscribed to newsletter." msgstr "ニュースレターの購読登録が完了しました。" -#: ../../include/functions_update_manager.php:504 +#: ../../include/functions_update_manager.php:1563 msgid "E-mail has already subscribed to newsletter." msgstr "設定メールアドレスはすでにニュースレター購読済です。" -#: ../../include/functions_update_manager.php:506 -#: ../../include/functions_update_manager.php:546 +#: ../../include/functions_update_manager.php:1570 +#: ../../include/functions_update_manager.php:1651 msgid "Update manager returns error code: " msgstr "アップデートマネージャがエラーコードを返しました: " -#: ../../include/functions_update_manager.php:541 +#: ../../include/functions_update_manager.php:1607 +msgid "Error while registering console." +msgstr "コンソール登録エラー" + +#: ../../include/functions_update_manager.php:1639 msgid "Pandora successfully subscribed with UID: " msgstr "次のUIDで購読しました: " -#: ../../include/functions_update_manager.php:543 +#: ../../include/functions_update_manager.php:1644 msgid "Unsuccessful subscription." msgstr "購読に失敗しました。" -#: ../../include/functions_update_manager.php:670 +#: ../../include/functions_update_manager.php:1722 msgid "Failed extracting the package to temp directory." msgstr "テンポラリディレクトリへのパッケージ展開に失敗しました。" -#: ../../include/functions_update_manager.php:709 +#: ../../include/functions_update_manager.php:1772 msgid "Failed the copying of the files." msgstr "ファイルのコピーに失敗しました。" -#: ../../include/functions_update_manager.php:725 +#: ../../include/functions_update_manager.php:1792 msgid "Package extracted successfully." msgstr "パッケージを展開しました。" -#: ../../include/functions_events.php:880 -#: ../../operation/agentes/tactical.php:188 -msgid "Latest events" -msgstr "最新のイベント" +#: ../../include/functions_html.php:1069 +msgid "weeks" +msgstr "週" -#: ../../include/functions_events.php:895 -#: ../../include/functions_events.php:1509 -#: ../../include/functions_events.php:1711 -#: ../../include/functions_events.php:1717 -#: ../../include/functions_events.php:1721 -#: ../../include/functions_events.php:1726 -#: ../../include/functions_events.php:3250 -#: ../../include/functions_events.php:3258 -#: ../../include/functions_graph.php:3505 -#: ../../operation/snmpconsole/snmp_view.php:465 -#: ../../operation/snmpconsole/snmp_view.php:772 -#: ../../operation/snmpconsole/snmp_view.php:1027 -msgid "Validated" -msgstr "承諾済み" +#: ../../include/functions_html.php:1230 +msgid "Month day" +msgstr "日にち" -#: ../../include/functions_events.php:895 -#: ../../enterprise/operation/agentes/policy_view.php:51 -msgid "V." -msgstr "V." +#: ../../include/functions_html.php:1231 +#: ../../enterprise/include/functions_reporting_csv.php:1530 +#: ../../enterprise/include/functions_reporting_csv.php:1798 +msgid "Month" +msgstr "月" -#: ../../include/functions_events.php:1015 -msgid "Events -by module-" -msgstr "イベント -モジュールごと-" +#: ../../include/functions_html.php:1232 +msgid "Week day" +msgstr "曜日" -#: ../../include/functions_events.php:1025 -#: ../../operation/agentes/tactical.php:203 -#: ../../operation/events/event_statistics.php:37 -msgid "Event graph" -msgstr "イベントグラフ" +#: ../../include/functions_html.php:3093 +msgid "Type at least two characters to search the module." +msgstr "モジュールを検索するには、少なくとも二文字入力してください。" -#: ../../include/functions_events.php:1030 -#: ../../operation/agentes/tactical.php:209 -#: ../../operation/events/event_statistics.php:57 -msgid "Event graph by agent" -msgstr "エージェントごとのイベントグラフ" - -#: ../../include/functions_events.php:1135 -msgid "Going to unknown" -msgstr "不明状態になりました。" - -#: ../../include/functions_events.php:1141 -msgid "Alert manually validated" -msgstr "アラートは承諾されました。" - -#: ../../include/functions_events.php:1144 -msgid "Going from critical to warning" -msgstr "障害が警告状態になりました。" - -#: ../../include/functions_events.php:1148 -msgid "Going down to critical state" -msgstr "障害が発生しました。" - -#: ../../include/functions_events.php:1152 -msgid "Going up to normal state" -msgstr "正常になりました。" - -#: ../../include/functions_events.php:1155 -msgid "Going down from normal to warning" -msgstr "警告状態になりました。" - -#: ../../include/functions_events.php:1161 -#: ../../include/functions_graph.php:3630 -#: ../../include/functions_graph.php:3681 -msgid "SYSTEM" -msgstr "システム" - -#: ../../include/functions_events.php:1164 -msgid "Recon server detected a new host" -msgstr "自動検出サーバが新しいホストを見つけました。" - -#: ../../include/functions_events.php:1167 -msgid "New agent created" -msgstr "新しいエージェントが作成されました。" - -#: ../../include/functions_events.php:1180 -msgid "Unknown type:" -msgstr "不明なタイプ" - -#: ../../include/functions_events.php:1500 -#: ../../include/functions_events.php:1507 -#: ../../include/functions_events.php:1527 -#: ../../enterprise/dashboard/widgets/events_list.php:47 -msgid "All event" -msgstr "全イベント" - -#: ../../include/functions_events.php:1501 -#: ../../include/functions_events.php:1530 -msgid "Only new" -msgstr "新規のみ" - -#: ../../include/functions_events.php:1502 -#: ../../include/functions_events.php:1533 -#: ../../enterprise/dashboard/widgets/events_list.php:48 -msgid "Only validated" -msgstr "承諾済み" - -#: ../../include/functions_events.php:1503 -#: ../../include/functions_events.php:1536 -msgid "Only in process" -msgstr "処理中のみ" - -#: ../../include/functions_events.php:1504 -#: ../../include/functions_events.php:1539 -msgid "Only not validated" -msgstr "未承諾のみ" - -#: ../../include/functions_events.php:1508 -#: ../../include/functions_events.php:1711 -#: ../../enterprise/godmode/reporting/cluster_builder.php:144 -#: ../../enterprise/godmode/reporting/cluster_builder.php:191 -#: ../../enterprise/godmode/reporting/cluster_builder.php:300 -#: ../../enterprise/godmode/reporting/cluster_builder.php:543 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:97 -msgid "New" -msgstr "新規" - -#: ../../include/functions_events.php:1510 -#: ../../include/functions_events.php:1711 -#: ../../include/functions_events.php:1717 -msgid "In process" -msgstr "処理中" - -#: ../../include/functions_events.php:1511 -msgid "Not Validated" -msgstr "未検証" - -#: ../../include/functions_events.php:1666 -msgid "Change owner" -msgstr "所有者変更" - -#: ../../include/functions_events.php:1705 -msgid "Change status" -msgstr "ステータス変更" - -#: ../../include/functions_events.php:1744 -#: ../../include/functions_events.php:2663 -msgid "Add comment" -msgstr "コメントの追加" - -#: ../../include/functions_events.php:1751 -#: ../../include/functions_events.php:1753 -#: ../../include/functions_events.php:4132 -#: ../../operation/events/events.build_table.php:687 -msgid "Delete event" -msgstr "削除" - -#: ../../include/functions_events.php:1763 -msgid "Custom responses" -msgstr "カスタム応答" - -#: ../../include/functions_events.php:2073 -msgid "There was an error connecting to the node" -msgstr "ノードへの接続エラーが発生しました" - -#: ../../include/functions_events.php:2112 -msgid "Agent details" -msgstr "エージェント詳細" - -#: ../../include/functions_events.php:2144 -#: ../../operation/agentes/ver_agente.php:772 -#: ../../enterprise/extensions/vmware/ajax.php:105 -#: ../../enterprise/operation/agentes/ver_agente.php:76 -msgid "Last remote contact" -msgstr "最終リモート接続" - -#: ../../include/functions_events.php:2150 -msgid "View custom fields" -msgstr "カスタムフィールド表示" - -#: ../../include/functions_events.php:2162 -msgid "Module details" -msgstr "モジュール詳細" - -#: ../../include/functions_events.php:2179 -msgid "No assigned" -msgstr "未割当" - -#: ../../include/functions_events.php:2252 -#: ../../include/functions_events.php:2256 -msgid "Go to data overview" -msgstr "データ概要表示" - -#: ../../include/functions_events.php:2342 +#: ../../include/functions_html.php:3250 #, php-format -msgid "Invalid custom data: %s" -msgstr "不正なカスタムデータ: %s" +msgid "%s cannot verify the origin of the request. Try again, please." +msgstr "%s はリクエストを確認できません。 もう一度やり直してください。" -#: ../../include/functions_events.php:2443 -#: ../../include/functions_events.php:3624 -#: ../../mobile/operation/events.php:469 -#: ../../operation/events/events.build_table.php:149 -msgid "Event ID" -msgstr "イベントID" +#: ../../include/functions_html.php:3746 +msgid "Type at least two characters to search the user." +msgstr "ユーザを検索するには、少なくとも 2文字入力してください。" -#: ../../include/functions_events.php:2455 -msgid "First event" -msgstr "最初のイベント" - -#: ../../include/functions_events.php:2455 -msgid "Last event" -msgstr "最後のイベント" - -#: ../../include/functions_events.php:2520 -#: ../../mobile/operation/events.php:497 -msgid "Acknowledged by" -msgstr "承諾者" - -#: ../../include/functions_events.php:2558 -msgid "ID extra" -msgstr "拡張 ID" - -#: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:2655 -msgid "There are no comments" -msgstr "コメントがありません" - -#: ../../include/functions_events.php:2808 -#: ../../include/functions_reporting_html.php:878 -msgid "Pandora System" -msgstr "Pandora System" - -#: ../../include/functions_events.php:3253 -#: ../../include/functions_events.php:3258 -#: ../../operation/snmpconsole/snmp_view.php:464 -#: ../../operation/snmpconsole/snmp_view.php:768 -#: ../../operation/snmpconsole/snmp_view.php:1030 -msgid "Not validated" -msgstr "未承諾" - -#: ../../include/functions_events.php:3629 -#: ../../mobile/operation/events.php:108 -#: ../../operation/events/events.build_table.php:155 -msgid "Event Name" -msgstr "イベント名" - -#: ../../include/functions_events.php:3667 -#: ../../operation/events/events.build_table.php:198 -msgid "Agent Module" -msgstr "エージェントモジュール" - -#: ../../include/functions_events.php:3698 -#: ../../operation/events/events.build_table.php:235 -msgid "Extra ID" -msgstr "拡張 ID" - -#: ../../include/functions_events.php:4122 -#: ../../operation/events/events.build_table.php:677 -msgid "Validate event" -msgstr "承諾" - -#: ../../include/functions_events.php:4137 -#: ../../operation/events/events.build_table.php:692 -#: ../../operation/events/events.php:806 ../../operation/events/events.php:810 -#: ../../operation/events/events.php:980 ../../operation/events/events.php:984 -msgid "Is not allowed delete events in process" -msgstr "処理中イベントは削除できません" - -#: ../../include/functions_events.php:4145 -#: ../../operation/events/events.build_table.php:700 -#: ../../operation/menu.php:199 ../../operation/snmpconsole/snmp_view.php:868 -#: ../../enterprise/operation/agentes/wux_console_view.php:448 -msgid "Show more" -msgstr "詳細を表示する" - -#: ../../include/functions_users.php:527 +#: ../../include/functions_users.php:593 #, php-format msgid "User %s login at %s" msgstr "ユーザ %s が %s にログイン" -#: ../../include/functions_users.php:588 +#: ../../include/functions_users.php:673 #, php-format msgid "User %s was deleted in the DB at %s" msgstr "ユーザ %s が %s にデータベースから削除されました" -#: ../../include/functions_users.php:593 +#: ../../include/functions_users.php:680 #, php-format msgid "User %s logout at %s" msgstr "ユーザ %s が %s にログアウト" -#: ../../include/functions_visual_map.php:1031 -#: ../../enterprise/dashboard/widgets/custom_graph.php:196 -msgid "" -"Could not draw pie with labels contained inside canvas. Resize widget to " -"500px width minimum" -msgstr "キャンバス内にラベル付き円グラフを表示できません。ウィジェットを少なくとも 500px にリサイズしてください。" +#: ../../include/functions_incidents.php:95 +#: ../../include/functions_incidents.php:116 +msgid "Active incidents" +msgstr "アクティブ" -#: ../../include/functions_visual_map.php:1826 -msgid "Last value: " -msgstr "最新の値: " +#: ../../include/functions_incidents.php:96 +#: ../../include/functions_incidents.php:120 +msgid "Active incidents, with comments" +msgstr "アクティブ(コメント付き)" -#: ../../include/functions_visual_map.php:2618 +#: ../../include/functions_incidents.php:97 +#: ../../include/functions_incidents.php:124 +msgid "Rejected incidents" +msgstr "却下" + +#: ../../include/functions_incidents.php:98 +#: ../../include/functions_incidents.php:128 +msgid "Expired incidents" +msgstr "期限切れ" + +#: ../../include/functions_incidents.php:99 +#: ../../include/functions_incidents.php:132 +msgid "Closed incidents" +msgstr "終了" + +#: ../../include/functions_visual_map.php:2721 msgid "Agent successfully added to layout" msgstr "エージェントが追加されました。" -#: ../../include/functions_visual_map.php:2773 +#: ../../include/functions_visual_map.php:2905 msgid "Modules successfully added to layout" msgstr "モジュールが追加されました。" -#: ../../include/functions_visual_map.php:3060 +#: ../../include/functions_visual_map.php:3236 msgid "Agents successfully added to layout" msgstr "レイアウトにエージェントを追加しました" -#: ../../include/functions_visual_map.php:3435 +#: ../../include/functions_visual_map.php:3635 msgid "Cannot load the visualmap" msgstr "ビジュアルマップを読み込めません" -#: ../../include/functions_visual_map.php:3906 -#: ../../include/functions_visual_map_editor.php:62 -#: ../../include/functions_visual_map_editor.php:873 +#: ../../include/functions_visual_map.php:4253 +#: ../../include/functions_visual_map_editor.php:69 +#: ../../include/functions_visual_map_editor.php:1306 +#: ../../enterprise/dashboard/widgets/clock.php:25 +#: ../../enterprise/dashboard/widgets/clock.php:79 msgid "Clock" msgstr "時計" -#: ../../include/functions_visual_map.php:3910 +#: ../../include/functions_visual_map.php:4258 msgid "Bars graph" msgstr "棒グラフ" -#: ../../include/functions_visual_map.php:3918 +#: ../../include/functions_visual_map.php:4268 msgid "Percentile bar" msgstr "パーセント(バー)" -#: ../../include/functions_visual_map.php:3922 +#: ../../include/functions_visual_map.php:4273 msgid "Circular progress bar" -msgstr "" +msgstr "円形進捗バー" -#: ../../include/functions_visual_map.php:3926 -#: ../../include/functions_visual_map_editor.php:515 +#: ../../include/functions_visual_map.php:4278 +#: ../../include/functions_visual_map_editor.php:621 msgid "Circular progress bar (interior)" -msgstr "" +msgstr "円進捗バー(内部)" -#: ../../include/functions_visual_map.php:3930 -msgid "Static graph" -msgstr "状態を表すアイコン" +#: ../../include/functions_integriaims.php:41 +msgid "Configure Integria IMS" +msgstr "Integria IMS 設定" -#: ../../include/functions_visual_map_editor.php:58 +#: ../../include/functions_integriaims.php:42 +msgid "Ticket list" +msgstr "チケット一覧" + +#: ../../include/functions_integriaims.php:43 +msgid "New ticket" +msgstr "新規チケット" + +#: ../../include/functions_integriaims.php:72 +msgid "Edit ticket" +msgstr "チケット編集" + +#: ../../include/functions_integriaims.php:73 +msgid "View ticket" +msgstr "チケット表示" + +#: ../../include/functions_integriaims.php:209 +msgid "" +"API request failed. Please check Integria IMS' access credentials in Pandora " +"setup." +msgstr "API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認証情報を確認してください。" + +#: ../../include/functions_maps.php:50 +#: ../../include/functions_reporting.php:969 +#: ../../include/functions_reporting.php:6807 +#: ../../operation/agentes/pandora_networkmap.php:776 +#: ../../enterprise/include/functions_reporting.php:2237 +#: ../../enterprise/include/functions_reporting.php:3186 +#: ../../enterprise/include/functions_reporting.php:4159 +msgid "Dynamic" +msgstr "動的" + +#: ../../include/functions_menu.php:492 +msgid "Configure user" +msgstr "ユーザ設定" + +#: ../../include/functions_menu.php:493 +msgid "Configure profile" +msgstr "プロファイル設定" + +#: ../../include/functions_menu.php:495 +msgid "Manage recontask" +msgstr "自動検出管理" + +#: ../../include/functions_menu.php:497 +msgid "Module templates management" +msgstr "モジュールテンプレート管理" + +#: ../../include/functions_menu.php:498 +msgid "Inventory modules management" +msgstr "インベントリモジュール管理" + +#: ../../include/functions_menu.php:499 +#: ../../enterprise/meta/advanced/component_management.php:49 +msgid "Tags management" +msgstr "タグ管理" + +#: ../../include/functions_menu.php:503 +msgid "View agent" +msgstr "エージェント表示" + +#: ../../include/functions_menu.php:507 +msgid "Manage network map" +msgstr "ネットワークマップ管理" + +#: ../../include/functions_menu.php:509 +msgid "Builder visual console" +msgstr "ビジュアルコンソールビルダ" + +#: ../../include/functions_menu.php:511 +msgid "Administration events" +msgstr "イベント管理" + +#: ../../include/functions_menu.php:513 +msgid "View reporting" +msgstr "レポート表示" + +#: ../../include/functions_menu.php:514 +msgid "Graph viewer" +msgstr "グラフ表示" + +#: ../../include/functions_menu.php:516 +msgid "Manage custom graphs" +msgstr "カスタムグラフ管理" + +#: ../../include/functions_menu.php:517 +msgid "View graph containers" +msgstr "グラフコンテナ表示" + +#: ../../include/functions_menu.php:518 +msgid "Manage graph containers" +msgstr "グラフコンテナ管理" + +#: ../../include/functions_menu.php:519 +msgid "View graph templates" +msgstr "グラフテンプレート表示" + +#: ../../include/functions_menu.php:520 +msgid "Manage graph templates" +msgstr "グラフテンプレート管理" + +#: ../../include/functions_menu.php:521 +msgid "Graph template items" +msgstr "グラフテンプレートアイテム" + +#: ../../include/functions_menu.php:522 +msgid "Graph template wizard" +msgstr "グラフテンプレートウィザード" + +#: ../../include/functions_menu.php:524 +msgid "Copy dashboard" +msgstr "ダッシュボードのコピー" + +#: ../../include/functions_menu.php:527 +msgid "Manage GIS Maps" +msgstr "GIS マップ管理" + +#: ../../include/functions_menu.php:530 +msgid "Incidents statistics" +msgstr "インシデント統計" + +#: ../../include/functions_menu.php:531 +msgid "Manage messages" +msgstr "メッセージ管理" + +#: ../../include/functions_menu.php:533 +msgid "Manage groups" +msgstr "グループ管理" + +#: ../../include/functions_menu.php:534 +msgid "Manage module groups" +msgstr "モジュールグループ管理" + +#: ../../include/functions_menu.php:535 +msgid "Manage custom field" +msgstr "カスタムフィールド管理" + +#: ../../include/functions_menu.php:537 +msgid "Manage alert actions" +msgstr "アラートアクション管理" + +#: ../../include/functions_menu.php:538 +msgid "Manage commands" +msgstr "コマンド管理" + +#: ../../include/functions_menu.php:539 +msgid "Manage event alerts" +msgstr "イベントアラート管理" + +#: ../../include/functions_menu.php:541 +msgid "Manage export targets" +msgstr "エクスポートターゲット管理" + +#: ../../include/functions_menu.php:543 +msgid "Manage services" +msgstr "サービス管理" + +#: ../../include/functions_menu.php:545 ../../operation/menu.php:143 +msgid "SNMP filters" +msgstr "SNMP フィルタ" + +#: ../../include/functions_menu.php:546 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:23 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:24 +#: ../../enterprise/operation/menu.php:184 +#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 +msgid "SNMP trap editor" +msgstr "SNMP トラップエディタ" + +#: ../../include/functions_menu.php:547 ../../operation/menu.php:144 +msgid "SNMP trap generator" +msgstr "SNMPトラップジェネレータ" + +#: ../../include/functions_menu.php:548 ../../operation/menu.php:133 +msgid "SNMP console" +msgstr "SNMPコンソール" + +#: ../../include/functions_menu.php:550 +msgid "Manage incident" +msgstr "インシデント管理" + +#: ../../include/functions_menu.php:603 +msgid "Administration" +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 " @@ -23869,165 +29477,245 @@ msgstr "" "'ラベル' フィールドを利用するには、'(_VALUE_)'を\n" "\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されます。" -#: ../../include/functions_visual_map_editor.php:97 -#: ../../include/functions_visual_map_editor.php:121 +#: ../../include/functions_visual_map_editor.php:108 +#: ../../include/functions_visual_map_editor.php:134 msgid "Border color" msgstr "枠の色" -#: ../../include/functions_visual_map_editor.php:133 +#: ../../include/functions_visual_map_editor.php:152 msgid "Border width" msgstr "枠の幅" -#: ../../include/functions_visual_map_editor.php:142 +#: ../../include/functions_visual_map_editor.php:161 msgid "Fill color" msgstr "塗りつぶしの色" -#: ../../include/functions_visual_map_editor.php:193 +#: ../../include/functions_visual_map_editor.php:217 msgid "" "Scroll the mouse wheel over the label editor to change the background color" msgstr "背景色を変更するには、ラベルエディタの上でマウスのウィールをスクロースします" -#: ../../include/functions_visual_map_editor.php:212 +#: ../../include/functions_visual_map_editor.php:233 msgid "Clock animation" msgstr "時計アニメーション" -#: ../../include/functions_visual_map_editor.php:214 +#: ../../include/functions_visual_map_editor.php:236 msgid "Simple analogic" msgstr "シンプルアナログ" -#: ../../include/functions_visual_map_editor.php:215 +#: ../../include/functions_visual_map_editor.php:237 msgid "Simple digital" msgstr "シンプルデジタル" -#: ../../include/functions_visual_map_editor.php:221 +#: ../../include/functions_visual_map_editor.php:251 msgid "Time format" msgstr "時間書式" -#: ../../include/functions_visual_map_editor.php:223 +#: ../../include/functions_visual_map_editor.php:254 msgid "Only time" msgstr "時間のみ" -#: ../../include/functions_visual_map_editor.php:224 +#: ../../include/functions_visual_map_editor.php:255 msgid "Time and date" msgstr "時間および日付" -#: ../../include/functions_visual_map_editor.php:241 +#: ../../include/functions_visual_map_editor.php:291 msgid "Time zone" msgstr "タイムゾーン" -#: ../../include/functions_visual_map_editor.php:263 +#: ../../include/functions_visual_map_editor.php:307 msgid "Enable link" msgstr "リンクを有効にする" -#: ../../include/functions_visual_map_editor.php:285 +#: ../../include/functions_visual_map_editor.php:328 msgid "White" msgstr "白" -#: ../../include/functions_visual_map_editor.php:286 +#: ../../include/functions_visual_map_editor.php:329 msgid "Black" msgstr "黒" -#: ../../include/functions_visual_map_editor.php:287 +#: ../../include/functions_visual_map_editor.php:330 msgid "Transparent" msgstr "透過" -#: ../../include/functions_visual_map_editor.php:294 +#: ../../include/functions_visual_map_editor.php:344 msgid "Grid color" msgstr "グリッドの色" -#: ../../include/functions_visual_map_editor.php:404 +#: ../../include/functions_visual_map_editor.php:464 msgid "Data image" msgstr "データ画像" -#: ../../include/functions_visual_map_editor.php:411 +#: ../../include/functions_visual_map_editor.php:469 msgid "Resume data color" -msgstr "" +msgstr "データの色を戻す" -#: ../../include/functions_visual_map_editor.php:419 +#: ../../include/functions_visual_map_editor.php:483 msgid "24h" msgstr "24時間" -#: ../../include/functions_visual_map_editor.php:420 +#: ../../include/functions_visual_map_editor.php:484 msgid "8h" msgstr "8時間" -#: ../../include/functions_visual_map_editor.php:421 +#: ../../include/functions_visual_map_editor.php:485 msgid "2h" msgstr "2時間" -#: ../../include/functions_visual_map_editor.php:422 +#: ../../include/functions_visual_map_editor.php:486 msgid "1h" msgstr "1時間" -#: ../../include/functions_visual_map_editor.php:426 +#: ../../include/functions_visual_map_editor.php:490 msgid "Max. Time" msgstr "最大時間" -#: ../../include/functions_visual_map_editor.php:480 +#: ../../include/functions_visual_map_editor.php:572 msgid "Original Size" msgstr "オリジナルのサイズ" -#: ../../include/functions_visual_map_editor.php:487 +#: ../../include/functions_visual_map_editor.php:580 msgid "Aspect ratio" msgstr "縦横比:" -#: ../../include/functions_visual_map_editor.php:488 -msgid "Width proportional" -msgstr "幅に比例" +#: ../../include/functions_visual_map_editor.php:581 +msgid "Proportional Width" +msgstr "プロポーショナル幅" -#: ../../include/functions_visual_map_editor.php:494 +#: ../../include/functions_visual_map_editor.php:589 msgid "Height proportional" msgstr "高さに比例" -#: ../../include/functions_visual_map_editor.php:515 +#: ../../include/functions_visual_map_editor.php:620 msgid "Circular porgress bar" -msgstr "" +msgstr "円進捗バー" -#: ../../include/functions_visual_map_editor.php:552 +#: ../../include/functions_visual_map_editor.php:671 msgid "Element color" msgstr "要素の色" -#: ../../include/functions_visual_map_editor.php:561 -msgid "Label color" -msgstr "ラベルの色" +#: ../../include/functions_visual_map_editor.php:691 +msgid "Value color" +msgstr "値の色" -#: ../../include/functions_visual_map_editor.php:582 +#: ../../include/functions_visual_map_editor.php:725 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:521 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:393 msgid "Show statistics" msgstr "統計表示" -#: ../../include/functions_visual_map_editor.php:589 +#: ../../include/functions_visual_map_editor.php:733 +msgid "Diameter" +msgstr "直径" + +#: ../../include/functions_visual_map_editor.php:740 +msgid "Default color" +msgstr "デフォルト色" + +#: ../../include/functions_visual_map_editor.php:744 +msgid "" +"The color of the element will be the one selected in the first range created " +"in which the value of the module is found (with the initial and final values " +"of the range included)" +msgstr "要素の色は、見つかったモジュールの値内で作成された最初の範囲で選択された色になります(含まれる範囲の初期値と最終値)。" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "Ranges" +msgstr "範囲" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "From value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "To value" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:747 +msgid "Color" +msgstr "色" + +#: ../../include/functions_visual_map_editor.php:752 msgid "Always show on top" msgstr "常に上に表示" -#: ../../include/functions_visual_map_editor.php:605 +#: ../../include/functions_visual_map_editor.php:753 +msgid "" +"It allows the element to be superimposed to the rest of items of the visual " +"console" +msgstr "要素をビジュアルコンソールの残りの項目に重ね合わせることができます。" + +#: ../../include/functions_visual_map_editor.php:756 +msgid "Hide last value on boolean modules" +msgstr "boolean モジュールでは最新の値を隠す" + +#: ../../include/functions_visual_map_editor.php:762 +msgid "Show last value" +msgstr "最新の値を表示" + +#: ../../include/functions_visual_map_editor.php:775 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:95 msgid "Vertical" msgstr "縦" -#: ../../include/functions_visual_map_editor.php:605 +#: ../../include/functions_visual_map_editor.php:776 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:98 msgid "Horizontal" msgstr "横" -#: ../../include/functions_visual_map_editor.php:673 +#: ../../include/functions_visual_map_editor.php:844 msgid "For use the original image file size, set 0 width and 0 height." msgstr "オリジナルの画像サイズを利用するためには、幅と高さを 0 に設定してください。" -#: ../../include/functions_visual_map_editor.php:711 -msgid "Map linked weight" +#: ../../include/functions_visual_map_editor.php:884 +msgid "Linked visual console" +msgstr "リンクされたビジュアルコンソール" + +#: ../../include/functions_visual_map_editor.php:991 +#: ../../enterprise/extensions/visual_console_manager.php:247 +msgid "By status weight" msgstr "" -#: ../../include/functions_visual_map_editor.php:722 +#: ../../include/functions_visual_map_editor.php:992 +#: ../../enterprise/extensions/visual_console_manager.php:248 +msgid "By critical elements" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1007 +msgid "Type of the status calculation of the linked visual console" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1012 +#: ../../enterprise/extensions/visual_console_manager.php:256 msgid "By default" msgstr "デフォルト" -#: ../../include/functions_visual_map_editor.php:728 +#: ../../include/functions_visual_map_editor.php:1032 +msgid "Linked visual console weight" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1058 +#: ../../enterprise/extensions/visual_console_manager.php:278 +#: ../../enterprise/godmode/services/services.elements.php:735 +msgid "Critical weight" +msgstr "障害ウエイト" + +#: ../../include/functions_visual_map_editor.php:1084 +#: ../../enterprise/extensions/visual_console_manager.php:293 +#: ../../enterprise/godmode/services/services.elements.php:739 +msgid "Warning weight" +msgstr "警告ウエイト" + +#: ../../include/functions_visual_map_editor.php:1099 msgid "Lines haven't advanced options" msgstr "拡張オプションがありません" -#: ../../include/functions_visual_map_editor.php:737 +#: ../../include/functions_visual_map_editor.php:1116 msgid "Restrict access to group" msgstr "グループへの制限アクセス" -#: ../../include/functions_visual_map_editor.php:740 +#: ../../include/functions_visual_map_editor.php:1127 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 " @@ -24036,1999 +29724,942 @@ msgstr "" "選択すると、ビジュアルコンソールでのこのアイテム表示を、選択したグループにアクセスできるユーザーに制限します。 " "これは、子ビジュアルコンソールにも使用されます。" -#: ../../include/functions_visual_map_editor.php:767 +#: ../../include/functions_visual_map_editor.php:1158 +msgid "Cache expiration" +msgstr "" + +#: ../../include/functions_visual_map_editor.php:1197 msgid "Click start point
    of the line" msgstr "線の開始場所
    をクリックしてください" -#: ../../include/functions_visual_map_editor.php:772 +#: ../../include/functions_visual_map_editor.php:1200 msgid "Click end point
    of the line" msgstr "線の終了場所
    をクリックしてください" -#: ../../include/functions_visual_map_editor.php:867 +#: ../../include/functions_visual_map_editor.php:1300 msgid "Serialized pie graph" -msgstr "" +msgstr "連続円グラフ" -#: ../../include/functions_visual_map_editor.php:868 +#: ../../include/functions_visual_map_editor.php:1301 msgid "Bars Graph" msgstr "棒グラフ" -#: ../../include/functions_visual_map_editor.php:889 +#: ../../include/functions_visual_map_editor.php:1323 msgid "Show grid" msgstr "グリッド表示" -#: ../../include/functions_visual_map_editor.php:891 +#: ../../include/functions_visual_map_editor.php:1325 msgid "Delete item" msgstr "アイテムの削除" -#: ../../include/functions_visual_map_editor.php:892 +#: ../../include/functions_visual_map_editor.php:1326 msgid "Copy item" msgstr "アイテムのコピー" -#: ../../include/functions_visual_map_editor.php:920 +#: ../../include/functions_visual_map_editor.php:1366 +#: ../../include/functions_visual_map_editor.php:1370 +#: ../../include/functions_visual_map_editor.php:1374 +#: ../../include/functions_visual_map_editor.php:1378 +#: ../../include/functions_visual_map_editor.php:1382 +#: ../../include/functions_visual_map_editor.php:1386 +#: ../../include/functions_visual_map_editor.php:1390 +#: ../../include/functions_visual_map_editor.php:1394 +#: ../../include/functions_visual_map_editor.php:1398 +#: ../../include/functions_visual_map_editor.php:1402 +#: ../../include/functions_visual_map_editor.php:1406 +#: ../../include/functions_visual_map_editor.php:1410 +#: ../../include/functions_visual_map_editor.php:1414 +#: ../../include/functions_visual_map_editor.php:1418 +#: ../../include/functions_visual_map_editor.php:1422 +#: ../../include/functions_visual_map_editor.php:1426 +#: ../../include/functions_visual_map_editor.php:1430 +#: ../../include/functions_visual_map_editor.php:1434 +#: ../../include/functions_visual_map_editor.php:1438 +msgid "Visual Console Builder Information" +msgstr "ビジュアルコンソールビルダ情報" + +#: ../../include/functions_visual_map_editor.php:1367 +msgid "Min allowed size is 1024x768." +msgstr "最小サイズは 1024x768 です。" + +#: ../../include/functions_visual_map_editor.php:1371 +#: ../../include/functions_visual_map_editor.php:1439 +msgid "No custom graph defined." +msgstr "カスタムグラフがありません。" + +#: ../../include/functions_visual_map_editor.php:1375 msgid "No image or name defined." msgstr "画像や名前が定義されていません。" -#: ../../include/functions_visual_map_editor.php:922 +#: ../../include/functions_visual_map_editor.php:1379 msgid "No label defined." msgstr "ラベルが定義されていません。" -#: ../../include/functions_visual_map_editor.php:924 +#: ../../include/functions_visual_map_editor.php:1383 +msgid "No service defined." +msgstr "サービスがありません。" + +#: ../../include/functions_visual_map_editor.php:1387 msgid "No image defined." msgstr "画像が定義されていません。" -#: ../../include/functions_visual_map_editor.php:926 +#: ../../include/functions_visual_map_editor.php:1391 msgid "No process defined." msgstr "処理が定義されていません。" -#: ../../include/functions_visual_map_editor.php:928 +#: ../../include/functions_visual_map_editor.php:1395 msgid "No Max value defined." msgstr "最大値が定義されていません" -#: ../../include/functions_visual_map_editor.php:930 +#: ../../include/functions_visual_map_editor.php:1399 msgid "No width defined." msgstr "幅が定義されていません" -#: ../../include/functions_visual_map_editor.php:932 +#: ../../include/functions_visual_map_editor.php:1403 msgid "No height defined." msgstr "高さが定義されていません。" -#: ../../include/functions_visual_map_editor.php:934 +#: ../../include/functions_visual_map_editor.php:1407 +msgid "The width must not exceed the size of the visual console container." +msgstr "幅はビジュアルコンソールコンテナのサイズを超えてはいけません。" + +#: ../../include/functions_visual_map_editor.php:1411 +msgid "The height must not exceed the size of the visual console container." +msgstr "高さはビジュアルコンソールコンテナのサイズを超えてはいけません。" + +#: ../../include/functions_visual_map_editor.php:1415 msgid "No period defined." msgstr "期間が定義されていません。" -#: ../../include/functions_visual_map_editor.php:936 +#: ../../include/functions_visual_map_editor.php:1419 msgid "No agent defined." msgstr "エージェントが定義されていません" -#: ../../include/functions_visual_map_editor.php:938 +#: ../../include/functions_visual_map_editor.php:1423 msgid "No module defined." msgstr "モジュールが定義されていません" -#: ../../include/functions_visual_map_editor.php:941 +#: ../../include/functions_visual_map_editor.php:1427 +msgid "No module defined. This module must be string type." +msgstr "モジュールが定義されていません。このモジュールは文字列タイプである必要があります。" + +#: ../../include/functions_visual_map_editor.php:1431 msgid "Successfully save the changes." msgstr "変更を保存しました。" -#: ../../include/functions_visual_map_editor.php:943 -msgid "Could not be save" -msgstr "保存できませんでした" +#: ../../include/functions_visual_map_editor.php:1435 +msgid "Could not be save." +msgstr "保存できません。" -#: ../../include/functions_filemanager.php:172 -#: ../../include/functions_filemanager.php:242 -#: ../../include/functions_filemanager.php:300 -#: ../../include/functions_filemanager.php:382 -msgid "Security error" -msgstr "セキュリティエラー" - -#: ../../include/functions_filemanager.php:185 -msgid "Upload error" -msgstr "アップロードエラー" - -#: ../../include/functions_filemanager.php:193 -#: ../../include/functions_filemanager.php:261 -#: ../../include/functions_filemanager.php:326 -msgid "Upload correct" -msgstr "アップロードしました" - -#: ../../include/functions_filemanager.php:206 -msgid "" -"File size seems to be too large. Please check your php.ini configuration or " -"contact with the administrator" -msgstr "ファイルサイズが大きすぎます。php.ini の設定を確認するか管理者に相談してください。" - -#: ../../include/functions_filemanager.php:254 -msgid "Error creating file" -msgstr "ファイル作成エラー" - -#: ../../include/functions_filemanager.php:267 -#: ../../include/functions_filemanager.php:362 -msgid "Error creating file with empty name" -msgstr "ファイル名未指定によるファイル作成エラー" - -#: ../../include/functions_filemanager.php:312 -msgid "Attach error" -msgstr "添付エラー" - -#: ../../include/functions_filemanager.php:348 -#: ../../enterprise/godmode/agentes/collections.editor.php:142 -#: ../../enterprise/godmode/agentes/collections.editor.php:305 -msgid "Security error." -msgstr "セキュリティエラー" - -#: ../../include/functions_filemanager.php:357 -msgid "Directory created" -msgstr "ディレクトリを作成しました" - -#: ../../include/functions_filemanager.php:385 -#: ../../include/functions_reporting_html.php:1241 -#: ../../enterprise/include/functions_inventory.php:662 -#: ../../enterprise/include/functions_inventory.php:727 -#: ../../enterprise/include/functions_reporting_pdf.php:557 -msgid "Deleted" -msgstr "削除しました" - -#: ../../include/functions_filemanager.php:550 -#, php-format -msgid "Directory %s doesn't exist!" -msgstr "%s ディレクトリは存在しません!" - -#: ../../include/functions_filemanager.php:565 -msgid "Index of images" -msgstr "画像一覧" - -#: ../../include/functions_filemanager.php:603 -msgid "Parent directory" -msgstr "親ディレクトリ" - -#: ../../include/functions_filemanager.php:632 -msgid "The zip upload in this dir, easy to upload multiple files." -msgstr "このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロードも簡単です。" - -#: ../../include/functions_filemanager.php:636 -msgid "Decompress" -msgstr "展開" - -#: ../../include/functions_filemanager.php:638 -#: ../../enterprise/extensions/csv_import/main.php:108 -#: ../../enterprise/extensions/csv_import_group/main.php:84 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1204 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1412 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1588 -msgid "Go" -msgstr "実行" - -#: ../../include/functions_filemanager.php:679 -msgid "Directory" -msgstr "ディレクトリ" - -#: ../../include/functions_filemanager.php:685 -msgid "Compressed file" -msgstr "圧縮ファイル" - -#: ../../include/functions_filemanager.php:688 -#: ../../include/functions_filemanager.php:695 -msgid "Text file" -msgstr "テキストファイル" - -#: ../../include/functions_filemanager.php:727 -msgid "This file could be executed by any user" -msgstr "このファイルは任意のユーザで実行できます。" - -#: ../../include/functions_filemanager.php:728 -msgid "Make sure it can't perform dangerous tasks" -msgstr "危険な処理はできないことを確認してください" - -#: ../../include/functions_filemanager.php:796 -msgid "Create directory" -msgstr "ディレクトリの作成" - -#: ../../include/functions_filemanager.php:801 -msgid "Create text" -msgstr "テキストの作成" - -#: ../../include/functions_filemanager.php:806 -msgid "Upload file/s" -msgstr "ファイルのアップロード" - -#: ../../include/functions_filemanager.php:813 -msgid "The directory is read-only" -msgstr "ディレクトリが読み出し専用です。" - -#: ../../include/functions_gis.php:27 ../../include/functions_gis.php:31 -#: ../../include/functions_gis.php:36 -msgid "Hierarchy of agents" -msgstr "エージェントの階層" - -#: ../../include/functions_graph.php:805 -#: ../../include/functions_graph.php:4617 -#: ../../include/functions_reports.php:564 -msgid "Avg. Value" -msgstr "平均値" - -#: ../../include/functions_graph.php:807 -msgid "Units. Value" -msgstr "単位" - -#: ../../include/functions_graph.php:890 -#: ../../include/functions_graph.php:1917 -#: ../../include/functions_graph.php:2011 -#, php-format -msgid "Percentile %dº" -msgstr "%dパーセント" - -#: ../../include/functions_graph.php:940 -#: ../../include/functions_graph.php:4852 -#: ../../enterprise/include/functions_dashboard.php:851 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:160 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:180 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:208 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:170 -msgid "Previous" -msgstr "前へ" - -#: ../../include/functions_graph.php:1412 -#, php-format -msgid "%s" -msgstr "%s" - -#: ../../include/functions_graph.php:1917 -#: ../../include/functions_graph.php:2011 -msgid " of module " -msgstr " のモジュール " - -#: ../../include/functions_graph.php:2221 -#: ../../include/functions_graph.php:2224 -#: ../../include/functions_graph.php:2231 -#: ../../include/functions_graph.php:2234 -#: ../../include/functions_graph.php:2241 -#: ../../include/functions_graph.php:2244 -#: ../../include/functions_graph.php:2267 -#: ../../include/functions_graph.php:2269 -#: ../../include/functions_graph.php:2275 -#: ../../include/functions_graph.php:2277 -#: ../../include/functions_graph.php:2282 -#: ../../include/functions_graph.php:2284 -msgid "summatory" -msgstr "" - -#: ../../include/functions_graph.php:2222 -#: ../../include/functions_graph.php:2225 -#: ../../include/functions_graph.php:2232 -#: ../../include/functions_graph.php:2235 -#: ../../include/functions_graph.php:2240 -#: ../../include/functions_graph.php:2243 -#: ../../include/functions_graph.php:2307 -#: ../../include/functions_graph.php:2309 -#: ../../include/functions_graph.php:2315 -#: ../../include/functions_graph.php:2317 -#: ../../include/functions_graph.php:2322 -#: ../../include/functions_graph.php:2324 -msgid "average" -msgstr "平均" - -#: ../../include/functions_graph.php:2589 -msgid "Not fired alerts" -msgstr "未発報アラート" - -#: ../../include/functions_graph.php:2758 -#: ../../include/functions_graph.php:2804 -#: ../../include/graphs/functions_gd.php:165 -#: ../../include/graphs/functions_gd.php:256 -#: ../../enterprise/include/functions_reporting.php:1793 -#: ../../enterprise/include/functions_reporting_pdf.php:1849 -#: ../../enterprise/include/functions_reporting_pdf.php:1850 -msgid "Out of limits" -msgstr "範囲外" - -#: ../../include/functions_graph.php:3037 -msgid "Today" -msgstr "今日" - -#: ../../include/functions_graph.php:3038 -msgid "Week" -msgstr "週" - -#: ../../include/functions_graph.php:3039 ../../include/functions_html.php:954 -#: ../../enterprise/include/functions_reporting_csv.php:1271 -#: ../../enterprise/include/functions_reporting_csv.php:1483 -msgid "Month" -msgstr "月" - -#: ../../include/functions_graph.php:3040 -#: ../../include/functions_graph.php:3041 -msgid "Months" -msgstr "月" - -#: ../../include/functions_graph.php:3063 -msgid "History db" -msgstr "ヒストリデータベース" - -#: ../../include/functions_graph.php:3254 -#: ../../include/functions_incidents.php:29 -#: ../../include/functions_incidents.php:54 -msgid "Informative" -msgstr "情報" - -#: ../../include/functions_graph.php:3255 -#: ../../include/functions_incidents.php:30 -#: ../../include/functions_incidents.php:57 -msgid "Low" -msgstr "低い" - -#: ../../include/functions_graph.php:3256 -#: ../../include/functions_incidents.php:31 -#: ../../include/functions_incidents.php:60 -msgid "Medium" -msgstr "中くらい" - -#: ../../include/functions_graph.php:3257 -#: ../../include/functions_incidents.php:32 -#: ../../include/functions_incidents.php:63 -msgid "Serious" -msgstr "深刻" - -#: ../../include/functions_graph.php:3258 -#: ../../include/functions_incidents.php:33 -#: ../../include/functions_incidents.php:66 -msgid "Very serious" -msgstr "とても深刻" - -#: ../../include/functions_graph.php:3281 -#: ../../include/functions_graph.php:3293 -msgid "Open incident" -msgstr "オープンのインシデント" - -#: ../../include/functions_graph.php:3282 -#: ../../include/functions_graph.php:3295 -msgid "Closed incident" -msgstr "クローズされたインシデント" - -#: ../../include/functions_graph.php:3283 -#: ../../include/functions_graph.php:3297 -msgid "Outdated" -msgstr "期限切れ" - -#: ../../include/functions_graph.php:3284 -#: ../../include/functions_graph.php:3299 -#: ../../enterprise/godmode/setup/setup_acl.php:577 -#: ../../enterprise/godmode/setup/setup_acl.php:590 -msgid "Invalid" -msgstr "無効" - -#: ../../include/functions_graph.php:4618 -msgid "Units" -msgstr "単位" - -#: ../../include/functions_graph.php:5162 -#: ../../enterprise/dashboard/widgets/top_n.php:77 -msgid "Avg." -msgstr "平均" - -#: ../../include/functions_graph.php:6457 -msgid "Main node" -msgstr "メインノード" - -#: ../../include/get_file.php:46 +#: ../../include/get_file.php:39 msgid "Security error. Please contact the administrator." msgstr "セキュリティエラー。管理者に連絡してください。" -#: ../../include/get_file.php:56 +#: ../../include/get_file.php:62 msgid "File is missing in disk storage. Please contact the administrator." msgstr "ファイルが存在しません。管理者に連絡してください。" -#: ../../include/functions_groups.php:63 -msgid "Alert Actions" -msgstr "アラートアクション" - -#: ../../include/functions_groups.php:78 -msgid "Alert Templates" -msgstr "アラートテンプレート" - -#: ../../include/functions_groups.php:106 -#: ../../include/functions_groups.php:163 -#: ../../include/functions_reports.php:498 -#: ../../include/functions_reports.php:500 -#: ../../include/functions_reports.php:504 -#: ../../include/functions_reports.php:506 -#: ../../include/functions_reports.php:510 -#: ../../include/functions_reports.php:512 -#: ../../include/functions_reports.php:514 -#: ../../include/functions_reports.php:518 -#: ../../include/functions_reports.php:522 -#: ../../include/functions_reports.php:525 -#: ../../operation/agentes/ver_agente.php:1152 -#: ../../operation/search_results.php:104 -msgid "Graphs" -msgstr "グラフ" - -#: ../../include/functions_groups.php:120 -#: ../../operation/search_results.php:114 -#: ../../enterprise/extensions/cron/functions.php:593 -#: ../../enterprise/meta/general/main_header.php:136 -#: ../../enterprise/meta/general/main_header.php:151 -#: ../../enterprise/mobile/include/functions_web.php:15 -msgid "Reports" -msgstr "レポート" - -#: ../../include/functions_groups.php:135 -msgid "Layout visual console" -msgstr "ビジュアルコンソールレイアウト" - -#: ../../include/functions_groups.php:149 -msgid "Plannet down time" -msgstr "計画停止時間" - -#: ../../include/functions_groups.php:176 -msgid "GIS maps" -msgstr "GIS マップ" - -#: ../../include/functions_groups.php:190 -msgid "GIS connections" -msgstr "GIS 利用マップ" - -#: ../../include/functions_groups.php:204 -msgid "GIS map layers" -msgstr "GIS マップレイヤ" - -#: ../../include/functions_groups.php:217 -msgid "Network maps" -msgstr "ネットワークマップ" - -#: ../../include/functions_groups.php:788 -#: ../../include/functions_groups.php:790 -#: ../../include/functions_groups.php:792 -#: ../../include/functions_groups.php:793 -#: ../../include/functions_groups.php:794 -#: ../../include/functions_reporting_html.php:3539 -#: ../../mobile/operation/groups.php:137 -msgid "Agents unknown" -msgstr "不明なエージェント" - -#: ../../include/functions_groups.php:842 -#: ../../include/functions_groups.php:844 -#: ../../include/functions_groups.php:846 -#: ../../include/functions_groups.php:847 -#: ../../include/functions_groups.php:848 -#: ../../include/functions_reporting_html.php:3043 -#: ../../include/functions_reporting_html.php:3052 -#: ../../mobile/operation/groups.php:161 -#: ../../operation/agentes/ver_agente.php:848 -#: ../../enterprise/operation/agentes/ver_agente.php:152 -msgid "Alerts fired" -msgstr "発生中アラート" - -#: ../../include/functions_groups.php:2143 -msgid "Show branch children" -msgstr "子の表示" - -#: ../../include/functions_groups.php:2172 -msgid "" -"You can not delete the last group in Pandora. A common installation must has " -"almost one group." -msgstr "最後のグループは削除できません。通常、1つはグループが設定されていなければなりません。" - -#: ../../include/functions_html.php:835 -msgid "weeks" -msgstr "週" - -#: ../../include/functions_html.php:953 -msgid "Month day" -msgstr "日にち" - -#: ../../include/functions_html.php:955 -msgid "Week day" -msgstr "曜日" - -#: ../../include/functions_html.php:2261 -msgid "Type at least two characters to search the module." -msgstr "モジュールを検索するには、少なくとも二文字入力してください。" - -#: ../../include/functions_incidents.php:88 -#: ../../include/functions_incidents.php:107 -msgid "Active incidents" -msgstr "アクティブ" - -#: ../../include/functions_incidents.php:89 -#: ../../include/functions_incidents.php:110 -msgid "Active incidents, with comments" -msgstr "アクティブ(コメント付き)" - -#: ../../include/functions_incidents.php:90 -#: ../../include/functions_incidents.php:113 -msgid "Rejected incidents" -msgstr "却下" - -#: ../../include/functions_incidents.php:91 -#: ../../include/functions_incidents.php:116 -msgid "Expired incidents" -msgstr "期限切れ" - -#: ../../include/functions_incidents.php:92 -#: ../../include/functions_incidents.php:119 -msgid "Closed incidents" -msgstr "終了" - -#: ../../include/functions_maps.php:34 -#: ../../include/functions_networkmap.php:1678 -#: ../../include/functions_networkmap.php:1757 -#: ../../enterprise/meta/general/logon_ok.php:62 -msgid "Topology" -msgstr "トポロジ" - -#: ../../include/functions_maps.php:37 -#: ../../include/functions_networkmap.php:1672 ../../operation/tree.php:80 -#: ../../enterprise/dashboard/widgets/tree_view.php:41 -#: ../../enterprise/include/functions_groups.php:32 -#: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/operation/agentes/ver_agente.php:208 -msgid "Policies" -msgstr "ポリシー" - -#: ../../include/functions_menu.php:481 -msgid "Configure user" -msgstr "ユーザ設定" - -#: ../../include/functions_menu.php:482 -msgid "Configure profile" -msgstr "プロファイル設定" - -#: ../../include/functions_menu.php:486 -msgid "Module templates management" -msgstr "モジュールテンプレート管理" - -#: ../../include/functions_menu.php:487 -msgid "Inventory modules management" -msgstr "インベントリモジュール管理" - -#: ../../include/functions_menu.php:488 -#: ../../enterprise/meta/advanced/component_management.php:56 -msgid "Tags management" -msgstr "タグ管理" - -#: ../../include/functions_menu.php:492 -msgid "View agent" -msgstr "エージェント表示" - -#: ../../include/functions_menu.php:496 -msgid "Manage network map" -msgstr "ネットワークマップ管理" - -#: ../../include/functions_menu.php:498 -msgid "Builder visual console" -msgstr "ビジュアルコンソールビルダ" - -#: ../../include/functions_menu.php:500 -msgid "Administration events" -msgstr "イベント管理" - -#: ../../include/functions_menu.php:502 -msgid "View reporting" -msgstr "レポート表示" - -#: ../../include/functions_menu.php:503 -msgid "Graph viewer" -msgstr "グラフ表示" - -#: ../../include/functions_menu.php:505 -msgid "Manage custom graphs" -msgstr "カスタムグラフ管理" - -#: ../../include/functions_menu.php:506 -msgid "View graph containers" -msgstr "グラフコンテナ表示" - -#: ../../include/functions_menu.php:507 -msgid "Manage graph containers" -msgstr "グラフコンテナ管理" - -#: ../../include/functions_menu.php:508 -msgid "View graph templates" -msgstr "グラフテンプレート表示" - -#: ../../include/functions_menu.php:509 -msgid "Manage graph templates" -msgstr "グラフテンプレート管理" - -#: ../../include/functions_menu.php:510 -msgid "Graph template items" -msgstr "グラフテンプレートアイテム" - -#: ../../include/functions_menu.php:511 -msgid "Graph template wizard" -msgstr "グラフテンプレートウィザード" - -#: ../../include/functions_menu.php:514 -msgid "Copy dashboard" -msgstr "ダッシュボードのコピー" - -#: ../../include/functions_menu.php:517 -msgid "Manage GIS Maps" -msgstr "GIS マップ管理" - -#: ../../include/functions_menu.php:519 -msgid "Incidents statistics" -msgstr "インシデント統計" - -#: ../../include/functions_menu.php:520 -msgid "Manage messages" -msgstr "メッセージ管理" - -#: ../../include/functions_menu.php:522 -msgid "Manage groups" -msgstr "グループ管理" - -#: ../../include/functions_menu.php:523 -msgid "Manage module groups" -msgstr "モジュールグループ管理" - -#: ../../include/functions_menu.php:524 -msgid "Manage custom field" -msgstr "カスタムフィールド管理" - -#: ../../include/functions_menu.php:526 -msgid "Manage alert actions" -msgstr "アラートアクション管理" - -#: ../../include/functions_menu.php:527 -msgid "Manage commands" -msgstr "コマンド管理" - -#: ../../include/functions_menu.php:528 -msgid "Manage event alerts" -msgstr "イベントアラート管理" - -#: ../../include/functions_menu.php:530 -msgid "Manage export targets" -msgstr "エクスポートターゲット管理" - -#: ../../include/functions_menu.php:532 -msgid "Manage services" -msgstr "サービス管理" - -#: ../../include/functions_menu.php:534 ../../operation/menu.php:95 -msgid "SNMP filters" -msgstr "SNMP フィルタ" - -#: ../../include/functions_menu.php:535 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:22 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:23 -#: ../../enterprise/operation/menu.php:135 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:79 -msgid "SNMP trap editor" -msgstr "SNMP トラップエディタ" - -#: ../../include/functions_menu.php:536 ../../operation/menu.php:96 -msgid "SNMP trap generator" -msgstr "SNMPトラップジェネレータ" - -#: ../../include/functions_menu.php:538 ../../operation/menu.php:87 -msgid "SNMP console" -msgstr "SNMPコンソール" - -#: ../../include/functions_menu.php:540 -msgid "Manage incident" -msgstr "インシデント管理" - -#: ../../include/functions_menu.php:592 -msgid "Administration" -msgstr "システム管理" - -#: ../../include/functions_modules.php:1952 -#: ../../mobile/operation/modules.php:451 -#: ../../mobile/operation/modules.php:504 -#: ../../operation/agentes/status_monitor.php:1151 -#: ../../operation/search_modules.php:104 -#: ../../enterprise/operation/agentes/tag_view.php:795 -msgid "NOT INIT" -msgstr "未初期化" - -#: ../../include/functions_modules.php:1971 -#: ../../include/functions_modules.php:1975 -#: ../../include/functions_modules.php:1979 -#: ../../mobile/operation/modules.php:471 -#: ../../mobile/operation/modules.php:476 -#: ../../mobile/operation/modules.php:481 -#: ../../mobile/operation/modules.php:524 -#: ../../mobile/operation/modules.php:529 -#: ../../mobile/operation/modules.php:534 -#: ../../operation/agentes/pandora_networkmap.view.php:317 -#: ../../operation/agentes/pandora_networkmap.view.php:322 -#: ../../operation/agentes/pandora_networkmap.view.php:327 -#: ../../operation/agentes/status_monitor.php:1190 -#: ../../operation/agentes/status_monitor.php:1195 -#: ../../operation/agentes/status_monitor.php:1202 -#: ../../operation/agentes/status_monitor.php:1207 -#: ../../operation/agentes/status_monitor.php:1214 -#: ../../operation/agentes/status_monitor.php:1219 -#: ../../operation/search_modules.php:124 +#: ../../include/functions_modules.php:2441 +#: ../../include/functions_modules.php:2445 +#: ../../include/functions_modules.php:2449 +#: ../../mobile/operation/modules.php:544 +#: ../../mobile/operation/modules.php:552 +#: ../../mobile/operation/modules.php:560 +#: ../../mobile/operation/modules.php:607 +#: ../../mobile/operation/modules.php:615 +#: ../../mobile/operation/modules.php:623 +#: ../../operation/agentes/pandora_networkmap.view.php:341 +#: ../../operation/agentes/pandora_networkmap.view.php:346 +#: ../../operation/agentes/pandora_networkmap.view.php:351 +#: ../../operation/agentes/status_monitor.php:1434 +#: ../../operation/agentes/status_monitor.php:1440 +#: ../../operation/agentes/status_monitor.php:1450 +#: ../../operation/agentes/status_monitor.php:1456 +#: ../../operation/agentes/status_monitor.php:1466 +#: ../../operation/agentes/status_monitor.php:1472 +#: ../../operation/search_modules.php:123 #: ../../operation/search_modules.php:131 -#: ../../operation/search_modules.php:138 -#: ../../enterprise/include/functions_services.php:1703 -#: ../../enterprise/include/functions_services.php:1708 -#: ../../enterprise/include/functions_services.php:1712 -#: ../../enterprise/operation/agentes/policy_view.php:378 -#: ../../enterprise/operation/agentes/policy_view.php:382 -#: ../../enterprise/operation/agentes/policy_view.php:386 -#: ../../enterprise/operation/agentes/tag_view.php:834 -#: ../../enterprise/operation/agentes/tag_view.php:839 -#: ../../enterprise/operation/agentes/tag_view.php:846 -#: ../../enterprise/operation/agentes/tag_view.php:851 -#: ../../enterprise/operation/agentes/tag_view.php:858 -#: ../../enterprise/operation/agentes/tag_view.php:863 -#: ../../enterprise/operation/agentes/transactional_map.php:152 +#: ../../operation/search_modules.php:139 +#: ../../enterprise/include/functions_services.php:2703 +#: ../../enterprise/include/functions_services.php:2709 +#: ../../enterprise/include/functions_services.php:2714 +#: ../../enterprise/operation/agentes/policy_view.php:393 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/policy_view.php:403 +#: ../../enterprise/operation/agentes/tag_view.php:972 +#: ../../enterprise/operation/agentes/tag_view.php:978 +#: ../../enterprise/operation/agentes/tag_view.php:988 +#: ../../enterprise/operation/agentes/tag_view.php:994 +#: ../../enterprise/operation/agentes/tag_view.php:1004 +#: ../../enterprise/operation/agentes/tag_view.php:1010 +#: ../../enterprise/operation/agentes/transactional_map.php:184 msgid "Last status" msgstr "最新の状態" -#: ../../include/functions_netflow.php:362 +#: ../../include/functions_modules.php:3334 +msgid "Realtime SNMP graph" +msgstr "リアルタイム SNMP グラフ" + +#: ../../include/functions_modules.php:3397 +msgid "ALL" +msgstr "すべて" + +#: ../../include/functions_modules.php:3413 +msgid "NOT NORMAL" +msgstr "非正常" + +#: ../../include/functions_netflow.php:346 msgid "Total flows" msgstr "全フロー数" -#: ../../include/functions_netflow.php:367 +#: ../../include/functions_netflow.php:351 msgid "Total bytes" msgstr "全バイト数" -#: ../../include/functions_netflow.php:372 +#: ../../include/functions_netflow.php:356 msgid "Total packets" msgstr "全パケット数" -#: ../../include/functions_netflow.php:377 +#: ../../include/functions_netflow.php:361 msgid "Average bits per second" msgstr "平均ビット/秒" -#: ../../include/functions_netflow.php:382 +#: ../../include/functions_netflow.php:366 msgid "Average packets per second" msgstr "平均パケット/秒" -#: ../../include/functions_netflow.php:387 +#: ../../include/functions_netflow.php:371 msgid "Average bytes per packet" msgstr "平均バイト/パケット" -#: ../../include/functions_netflow.php:1031 +#: ../../include/functions_netflow.php:1033 msgid "Area graph" msgstr "塗り潰しグラフ" -#: ../../include/functions_netflow.php:1032 -msgid "Pie graph and Summary table" -msgstr "円グラフとサマリ表" - -#: ../../include/functions_netflow.php:1033 -msgid "Statistics table" -msgstr "状態表" - -#: ../../include/functions_netflow.php:1034 -#: ../../operation/agentes/exportdata.php:330 +#: ../../include/functions_netflow.php:1035 +#: ../../operation/agentes/exportdata.php:361 msgid "Data table" msgstr "データの表示" -#: ../../include/functions_netflow.php:1035 +#: ../../include/functions_netflow.php:1036 msgid "Circular mesh" msgstr "円形メッシュ" -#: ../../include/functions_netflow.php:1036 -#: ../../include/functions_netflow.php:1390 +#: ../../include/functions_netflow.php:1037 +#: ../../include/functions_netflow.php:1249 msgid "Host detailed traffic" msgstr "ホストの詳細トラフィック" -#: ../../include/functions_netflow.php:1049 -#: ../../include/functions_netflow.php:1082 -msgid "10 mins" -msgstr "10 分" - -#: ../../include/functions_netflow.php:1050 -#: ../../include/functions_netflow.php:1083 -msgid "15 mins" -msgstr "15 分" - -#: ../../include/functions_netflow.php:1051 -#: ../../include/functions_netflow.php:1084 -msgid "30 mins" -msgstr "30 分" - -#: ../../include/functions_netflow.php:1053 -#: ../../include/functions_netflow.php:1086 -#: ../../operation/gis_maps/render_view.php:143 -#: ../../enterprise/dashboard/widgets/top_n.php:62 -#: ../../enterprise/godmode/agentes/inventory_manager.php:177 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:191 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:182 -msgid "2 hours" -msgstr "2時間" - -#: ../../include/functions_netflow.php:1054 -#: ../../include/functions_netflow.php:1087 -#: ../../enterprise/dashboard/widgets/top_n.php:63 -msgid "5 hours" -msgstr "5時間" - -#: ../../include/functions_netflow.php:1058 -#: ../../include/functions_netflow.php:1091 -msgid "5 days" -msgstr "5日" - -#: ../../include/functions_netflow.php:1062 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 -msgid "2 months" -msgstr "2ヶ月" - -#: ../../include/functions_netflow.php:1065 -msgid "Last year" -msgstr "過去1年" - -#: ../../include/functions_netflow.php:1079 -msgid "1 min" -msgstr "1 分" - -#: ../../include/functions_netflow.php:1080 -msgid "2 mins" -msgstr "2 分" - -#: ../../include/functions_netflow.php:1081 -msgid "5 mins" -msgstr "5 分" - -#: ../../include/functions_netflow.php:1132 -#: ../../include/functions_netflow.php:1142 -#: ../../include/functions_netflow.php:1191 -#: ../../include/functions_netflow.php:1249 -#: ../../include/functions_netflow.php:1255 -#: ../../include/functions_netflow.php:1288 -msgid "Aggregate" -msgstr "集約" - -#: ../../include/functions_netflow.php:1361 +#: ../../include/functions_netflow.php:1236 +#: ../../enterprise/include/functions_reporting_csv.php:1937 msgid "Sent" msgstr "送信" -#: ../../include/functions_netflow.php:1368 +#: ../../include/functions_netflow.php:1244 +#: ../../enterprise/include/functions_reporting_csv.php:1945 msgid "Received" msgstr "受信" -#: ../../include/functions_netflow.php:1435 -msgid "Error generating report" -msgstr "レポート生成エラー" - -#: ../../include/functions_netflow.php:1632 -msgid "MB" -msgstr "MB" - -#: ../../include/functions_netflow.php:1634 -msgid "MB/s" -msgstr "MB/s" - -#: ../../include/functions_netflow.php:1636 -msgid "kB" -msgstr "kB" - -#: ../../include/functions_netflow.php:1638 -msgid "kB/s" -msgstr "kB/s" - -#: ../../include/functions_netflow.php:1642 -msgid "B/s" -msgstr "B/s" - -#: ../../include/functions_netflow.php:1656 +#: ../../include/functions_netflow.php:1377 msgid "Dst port" msgstr "宛先ポート" -#: ../../include/functions_netflow.php:1658 +#: ../../include/functions_netflow.php:1380 msgid "Dst IP" msgstr "宛先 IP" -#: ../../include/functions_netflow.php:1662 +#: ../../include/functions_netflow.php:1383 msgid "Src IP" msgstr "送信元 IP" -#: ../../include/functions_netflow.php:1664 +#: ../../include/functions_netflow.php:1386 msgid "Src port" msgstr "送信元ポート" -#: ../../include/functions_planned_downtimes.php:560 -msgid "Succesful stopped the Downtime" -msgstr "計画停止を中止しました" - -#: ../../include/functions_planned_downtimes.php:561 -msgid "Unsuccesful stopped the Downtime" -msgstr "計画停止の中止に失敗しました" - -#: ../../include/functions_planned_downtimes.php:660 +#: ../../include/functions_netflow.php:1573 #, php-format -msgid "Enabled %s elements from the downtime" -msgstr "計画停止から %s 件の要素が有効になりました" +msgid "nfdump binary (%s) not found!" +msgstr "nfdump バイナリ (%s) が見つかりません!" -#: ../../include/functions_planned_downtimes.php:785 -msgid "This planned downtime are executed now. Can't delete in this moment." -msgstr "この計画停止は実行中です。現在削除できません。" +#: ../../include/functions_netflow.php:1580 +msgid "Make sure nfdump version 1.6.8 or newer is installed!" +msgstr "nfdump のバージョン 1.6.8 以上がインストールされていることを確認してください!" -#: ../../include/functions_planned_downtimes.php:790 -msgid "Deleted this planned downtime successfully." -msgstr "計画停止を削除しました。" +#: ../../include/functions_netflow.php:1597 +msgid "High" +msgstr "高い" -#: ../../include/functions_planned_downtimes.php:792 -msgid "Problems for deleted this planned downtime." -msgstr "計画停止の削除に失敗しました。" +#: ../../include/functions_netflow.php:1598 +msgid "Ultra High" +msgstr "とても高い" -#: ../../include/functions_networkmap.php:1675 -#: ../../include/functions_networkmap.php:1761 -msgid "Radial dynamic" -msgstr "放射状で動的" +#: ../../include/functions_netflow.php:1599 +#: ../../enterprise/include/functions_cron.php:465 +msgid "Hourly" +msgstr "毎時" -#: ../../include/functions_networkmap.php:1731 -msgid "Create a new topology map" -msgstr "トポロジマップの新規作成" +#: ../../include/functions_netflow.php:1631 +#, php-format +msgid "Agregate by %s" +msgstr "%s 集計" -#: ../../include/functions_networkmap.php:1732 -msgid "Create a new group map" -msgstr "グループマップの新規作成" +#: ../../include/functions_netflow.php:1639 +#, php-format +msgid "Resolution %s" +msgstr "解像度 %s" -#: ../../include/functions_networkmap.php:1733 -msgid "Create a new dynamic map" -msgstr "新たな動的マップの作成" +#: ../../include/graphs/export_data.php:68 +#: ../../include/graphs/export_data.php:128 +msgid "An error occured exporting the data" +msgstr "データエクスポートエラー" -#: ../../include/functions_networkmap.php:1735 -msgid "Create a new radial dynamic map" -msgstr "放射状の動的マップを新規作成" +#: ../../include/graphs/export_data.php:74 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:125 +msgid "Selected" +msgstr "選択済" -#: ../../include/functions_snmp_browser.php:145 -msgid "Target IP cannot be blank." -msgstr "対象IPが指定されていません" +#: ../../include/graphs/functions_flot.php:360 +#: ../../include/graphs/functions_flot.php:391 +msgid "Cancel zoom" +msgstr "ズーム中止" -#: ../../include/functions_snmp_browser.php:449 -msgid "Numeric OID" -msgstr "数値 OID" +#: ../../include/graphs/functions_flot.php:362 +msgid "Warning and Critical thresholds" +msgstr "警告と障害の閾値" -#: ../../include/functions_snmp_browser.php:466 -msgid "Syntax" -msgstr "書式" +#: ../../include/graphs/functions_flot.php:367 +msgid "Overview graph" +msgstr "概要グラフ" -#: ../../include/functions_snmp_browser.php:471 -msgid "Display hint" -msgstr "ヒント表示" - -#: ../../include/functions_snmp_browser.php:476 -msgid "Max access" -msgstr "最大アクセス" - -#: ../../include/functions_snmp_browser.php:491 -msgid "OID Information" -msgstr "OID 情報" - -#: ../../include/functions_snmp_browser.php:556 -msgid "Starting OID" -msgstr "開始 OID" - -#: ../../include/functions_snmp_browser.php:585 -msgid "Server to execute" -msgstr "実行サーバ" - -#: ../../include/functions_snmp_browser.php:588 -msgid "Browse" -msgstr "参照" - -#: ../../include/functions_snmp_browser.php:625 -msgid "First match" -msgstr "最初のマッチ" - -#: ../../include/functions_snmp_browser.php:627 -msgid "Previous match" -msgstr "前のマッチ" - -#: ../../include/functions_snmp_browser.php:629 -msgid "Next match" -msgstr "次のマッチ" - -#: ../../include/functions_snmp_browser.php:631 -msgid "Last match" -msgstr "最後のマッチ" - -#: ../../include/functions_snmp_browser.php:636 -msgid "Expand the tree (can be slow)" -msgstr "ツリーを展開する (遅くなります)" - -#: ../../include/functions_snmp_browser.php:638 -msgid "Collapse the tree" -msgstr "ツリーを閉じる" - -#: ../../include/functions_snmp_browser.php:657 -msgid "SNMP v3 options" -msgstr "SNMP v3 オプション" - -#: ../../include/functions_snmp_browser.php:660 -msgid "Search options" -msgstr "検索オプション" - -#: ../../include/functions_reporting_html.php:93 +#: ../../include/functions_reporting_html.php:94 msgid "Label: " msgstr "ラベル: " -#: ../../include/functions_reporting_html.php:111 -#: ../../enterprise/include/functions_netflow_pdf.php:157 -#: ../../enterprise/include/functions_reporting_csv.php:1617 -#: ../../enterprise/include/functions_reporting_csv.php:1621 -#: ../../enterprise/include/functions_reporting_pdf.php:2244 +#: ../../include/functions_reporting_html.php:120 +#: ../../enterprise/include/functions_reporting_csv.php:1998 +#: ../../enterprise/include/functions_reporting_csv.php:2002 +#: ../../enterprise/include/functions_reporting_pdf.php:1507 msgid "Generated" msgstr "生成日" -#: ../../include/functions_reporting_html.php:114 -#: ../../enterprise/include/functions_reporting_pdf.php:2247 +#: ../../include/functions_reporting_html.php:123 +#: ../../enterprise/include/functions_reporting_pdf.php:1511 msgid "Report date" msgstr "レポート日" -#: ../../include/functions_reporting_html.php:119 -#: ../../operation/reporting/reporting_viewer.php:197 -#: ../../enterprise/include/functions_reporting_pdf.php:2252 +#: ../../include/functions_reporting_html.php:128 +#: ../../operation/reporting/reporting_viewer.php:215 +#: ../../enterprise/include/functions_reporting_pdf.php:1530 msgid "Items period before" msgstr "次の日時以前" -#: ../../include/functions_reporting_html.php:401 -#: ../../enterprise/include/functions_reporting.php:1649 -#: ../../enterprise/include/functions_reporting.php:2457 -#: ../../enterprise/include/functions_reporting.php:3234 -#: ../../enterprise/include/functions_reporting_pdf.php:1347 -#: ../../enterprise/include/functions_reporting_pdf.php:1690 +#: ../../include/functions_reporting_html.php:494 +#: ../../enterprise/include/functions_reporting.php:1677 +#: ../../enterprise/include/functions_reporting.php:2597 +#: ../../enterprise/include/functions_reporting.php:3589 msgid "Max/Min Values" msgstr "最大/最小値" -#: ../../include/functions_reporting_html.php:402 -#: ../../enterprise/include/functions_reporting.php:1650 -#: ../../enterprise/include/functions_reporting.php:2458 -#: ../../enterprise/include/functions_reporting.php:3235 -#: ../../enterprise/include/functions_reporting.php:4844 -#: ../../enterprise/include/functions_reporting.php:5145 -#: ../../enterprise/include/functions_reporting_csv.php:1043 -#: ../../enterprise/include/functions_reporting_csv.php:1090 -#: ../../enterprise/include/functions_reporting_csv.php:1162 -#: ../../enterprise/include/functions_reporting_csv.php:1278 -#: ../../enterprise/include/functions_reporting_csv.php:1490 -#: ../../enterprise/include/functions_reporting_pdf.php:1348 -#: ../../enterprise/include/functions_reporting_pdf.php:1691 -#: ../../enterprise/include/functions_reporting_pdf.php:2121 +#: ../../include/functions_reporting_html.php:495 +#: ../../enterprise/include/functions_reporting.php:1678 +#: ../../enterprise/include/functions_reporting.php:2598 +#: ../../enterprise/include/functions_reporting.php:3590 +#: ../../enterprise/include/functions_reporting.php:5705 +#: ../../enterprise/include/functions_reporting_csv.php:1299 +#: ../../enterprise/include/functions_reporting_csv.php:1345 +#: ../../enterprise/include/functions_reporting_csv.php:1418 +#: ../../enterprise/include/functions_reporting_csv.php:1537 +#: ../../enterprise/include/functions_reporting_csv.php:1805 msgid "SLA Limit" msgstr "SLA 制限" -#: ../../include/functions_reporting_html.php:403 -#: ../../enterprise/include/functions_reporting.php:1650 -#: ../../enterprise/include/functions_reporting.php:1782 -#: ../../enterprise/include/functions_reporting.php:2458 -#: ../../enterprise/include/functions_reporting.php:3235 -#: ../../enterprise/include/functions_reporting.php:4845 -#: ../../enterprise/include/functions_reporting.php:5146 -#: ../../enterprise/include/functions_reporting_pdf.php:1349 -#: ../../enterprise/include/functions_reporting_pdf.php:1691 -#: ../../enterprise/include/functions_reporting_pdf.php:1840 -#: ../../enterprise/include/functions_reporting_pdf.php:2122 +#: ../../include/functions_reporting_html.php:496 +#: ../../enterprise/include/functions_reporting.php:1679 +#: ../../enterprise/include/functions_reporting.php:1848 +#: ../../enterprise/include/functions_reporting.php:2599 +#: ../../enterprise/include/functions_reporting.php:3591 +#: ../../enterprise/include/functions_reporting.php:5706 msgid "SLA Compliance" msgstr "SLA準拠" -#: ../../include/functions_reporting_html.php:428 -#: ../../enterprise/include/functions_reporting_pdf.php:1356 +#: ../../include/functions_reporting_html.php:526 msgid "Global Time" msgstr "グローバル時間" -#: ../../include/functions_reporting_html.php:429 -#: ../../enterprise/include/functions_reporting_csv.php:1421 -#: ../../enterprise/include/functions_reporting_pdf.php:1357 +#: ../../include/functions_reporting_html.php:527 +#: ../../enterprise/include/functions_reporting_csv.php:1733 msgid "Time Total" msgstr "合計時間" -#: ../../include/functions_reporting_html.php:430 -#: ../../enterprise/include/functions_reporting_pdf.php:1358 -#: ../../enterprise/include/functions_reporting_pdf.php:1931 +#: ../../include/functions_reporting_html.php:528 msgid "Time Failed" msgstr "障害時間" -#: ../../include/functions_reporting_html.php:431 -#: ../../include/functions_reporting_html.php:2328 -#: ../../enterprise/include/functions_reporting_csv.php:1422 -#: ../../enterprise/include/functions_reporting_pdf.php:1359 -#: ../../enterprise/include/functions_reporting_pdf.php:1932 +#: ../../include/functions_reporting_html.php:529 +#: ../../include/functions_reporting_html.php:3053 +#: ../../enterprise/include/functions_reporting_csv.php:1734 msgid "Time OK" msgstr "正常時間" -#: ../../include/functions_reporting_html.php:432 -#: ../../enterprise/include/functions_reporting_csv.php:1424 -#: ../../enterprise/include/functions_reporting_pdf.php:1360 -#: ../../enterprise/include/functions_reporting_pdf.php:1933 +#: ../../include/functions_reporting_html.php:530 +#: ../../include/functions_reporting_html.php:3059 +#: ../../enterprise/include/functions_reporting_csv.php:1736 msgid "Time Unknown" msgstr "不明時間" -#: ../../include/functions_reporting_html.php:433 -#: ../../enterprise/include/functions_reporting_csv.php:1425 -#: ../../enterprise/include/functions_reporting_pdf.php:1361 +#: ../../include/functions_reporting_html.php:531 +#: ../../enterprise/include/functions_reporting_csv.php:1737 msgid "Time Not Init" msgstr "未初期化時間" -#: ../../include/functions_reporting_html.php:434 -#: ../../enterprise/include/functions_reporting_pdf.php:1362 +#: ../../include/functions_reporting_html.php:532 msgid "Downtime" msgstr "停止時間" -#: ../../include/functions_reporting_html.php:459 -#: ../../enterprise/include/functions_reporting_pdf.php:1368 +#: ../../include/functions_reporting_html.php:557 msgid "Checks Time" msgstr "確認数" -#: ../../include/functions_reporting_html.php:460 -#: ../../enterprise/include/functions_reporting_csv.php:1427 -#: ../../enterprise/include/functions_reporting_pdf.php:1369 +#: ../../include/functions_reporting_html.php:558 +#: ../../enterprise/include/functions_reporting_csv.php:1739 msgid "Checks Total" msgstr "合計確認数" -#: ../../include/functions_reporting_html.php:461 -#: ../../enterprise/include/functions_reporting_pdf.php:1370 -#: ../../enterprise/include/functions_reporting_pdf.php:1951 +#: ../../include/functions_reporting_html.php:559 +#: ../../enterprise/include/functions_reporting_csv.php:498 msgid "Checks Failed" msgstr "障害確認数" -#: ../../include/functions_reporting_html.php:462 -#: ../../include/functions_reporting_html.php:2371 -#: ../../enterprise/include/functions_reporting_csv.php:1428 -#: ../../enterprise/include/functions_reporting_pdf.php:1371 -#: ../../enterprise/include/functions_reporting_pdf.php:1952 +#: ../../include/functions_reporting_html.php:560 +#: ../../include/functions_reporting_html.php:3126 +#: ../../enterprise/include/functions_reporting_csv.php:1740 msgid "Checks OK" msgstr "正常確認数" -#: ../../include/functions_reporting_html.php:463 -#: ../../enterprise/include/functions_reporting_csv.php:1430 -#: ../../enterprise/include/functions_reporting_pdf.php:1372 -#: ../../enterprise/include/functions_reporting_pdf.php:1953 +#: ../../include/functions_reporting_html.php:561 +#: ../../enterprise/include/functions_reporting_csv.php:1742 msgid "Checks Unknown" msgstr "不明確認数" -#: ../../include/functions_reporting_html.php:688 -#: ../../include/functions_reporting_html.php:2607 -#: ../../enterprise/include/functions_reporting.php:2671 -#: ../../enterprise/include/functions_reporting.php:3440 -#: ../../enterprise/include/functions_reporting_pdf.php:1587 -#: ../../enterprise/include/functions_services.php:1360 +#: ../../include/functions_reporting_html.php:725 +#: ../../include/functions_reporting_html.php:3260 +#: ../../include/functions_reporting_html.php:3741 +#: ../../include/functions_reporting_html.php:3744 +#: ../../include/functions_reporting.php:1449 +#: ../../include/functions_reporting.php:2483 +#: ../../enterprise/dashboard/widgets/top_n.php:537 +msgid "There are no Agent/Modules defined" +msgstr "定義済のエージェント/モジュールがありません" + +#: ../../include/functions_reporting_html.php:780 +#: ../../include/functions_reporting_html.php:3536 +#: ../../enterprise/include/functions_services.php:2321 +#: ../../enterprise/include/functions_reporting.php:2907 +#: ../../enterprise/include/functions_reporting.php:3905 +#: ../../enterprise/include/functions_reporting.php:5771 msgid "Unknow" msgstr "不明" -#: ../../include/functions_reporting_html.php:693 -#: ../../include/functions_reporting_html.php:2612 -#: ../../operation/agentes/group_view.php:170 -#: ../../enterprise/include/functions_reporting.php:1680 -#: ../../enterprise/include/functions_reporting.php:2488 -#: ../../enterprise/include/functions_reporting.php:2676 -#: ../../enterprise/include/functions_reporting.php:3265 -#: ../../enterprise/include/functions_reporting.php:3445 -#: ../../enterprise/include/functions_reporting.php:4182 -#: ../../enterprise/include/functions_reporting_pdf.php:1589 -#: ../../enterprise/include/functions_reporting_pdf.php:1728 +#: ../../include/functions_reporting_html.php:785 +#: ../../include/functions_reporting_html.php:3541 +#: ../../enterprise/include/functions_reporting.php:1719 +#: ../../enterprise/include/functions_reporting.php:2653 +#: ../../enterprise/include/functions_reporting.php:2912 +#: ../../enterprise/include/functions_reporting.php:3646 +#: ../../enterprise/include/functions_reporting.php:3910 +#: ../../enterprise/include/functions_reporting.php:4827 +#: ../../enterprise/include/functions_reporting.php:5776 msgid "Not Init" msgstr "未初期化" -#: ../../include/functions_reporting_html.php:698 -#: ../../include/functions_reporting_html.php:2617 -#: ../../enterprise/include/functions_reporting.php:2681 -#: ../../enterprise/include/functions_reporting.php:3450 -#: ../../enterprise/include/functions_reporting_pdf.php:1591 +#: ../../include/functions_reporting_html.php:790 +#: ../../include/functions_reporting_html.php:3546 +#: ../../enterprise/include/functions_reporting.php:2917 +#: ../../enterprise/include/functions_reporting.php:3915 +#: ../../enterprise/include/functions_reporting.php:5781 msgid "Downtimes" msgstr "停止時間" -#: ../../include/functions_reporting_html.php:703 -#: ../../include/functions_reporting_html.php:2622 -#: ../../enterprise/include/functions_reporting.php:2686 -#: ../../enterprise/include/functions_reporting.php:3455 -#: ../../enterprise/include/functions_reporting_pdf.php:1593 -msgid "Ignore time" -msgstr "除外時間" - -#: ../../include/functions_reporting_html.php:775 -#: ../../include/functions_reporting_html.php:1532 -#: ../../include/functions_reporting_html.php:2521 -#: ../../include/functions_reporting_html.php:2787 -#: ../../enterprise/include/functions_reporting_pdf.php:850 -#: ../../enterprise/include/functions_reporting_pdf.php:977 -#: ../../enterprise/include/functions_reporting_pdf.php:1033 +#: ../../include/functions_reporting_html.php:911 +#: ../../include/functions_reporting_html.php:1838 +#: ../../include/functions_reporting_html.php:3297 +#: ../../include/functions_reporting_html.php:3768 msgid "Min Value" msgstr "最小値" -#: ../../include/functions_reporting_html.php:776 -#: ../../include/functions_reporting_html.php:1533 -#: ../../include/functions_reporting_html.php:2522 -#: ../../include/functions_reporting_html.php:2788 -#: ../../enterprise/include/functions_reporting_pdf.php:851 -#: ../../enterprise/include/functions_reporting_pdf.php:978 -#: ../../enterprise/include/functions_reporting_pdf.php:1034 -#: ../../enterprise/include/functions_reporting_pdf.php:2074 +#: ../../include/functions_reporting_html.php:912 +#: ../../include/functions_reporting_html.php:1839 +#: ../../include/functions_reporting_html.php:3298 +#: ../../include/functions_reporting_html.php:3769 msgid "Average Value" msgstr "平均値" -#: ../../include/functions_reporting_html.php:777 -#: ../../include/functions_reporting_html.php:1534 -#: ../../include/functions_reporting_html.php:2519 -#: ../../include/functions_reporting_html.php:2790 -#: ../../enterprise/include/functions_reporting_pdf.php:852 -#: ../../enterprise/include/functions_reporting_pdf.php:979 -#: ../../enterprise/include/functions_reporting_pdf.php:1035 -#: ../../enterprise/include/functions_reporting_pdf.php:2071 +#: ../../include/functions_reporting_html.php:913 +#: ../../include/functions_reporting_html.php:1840 +#: ../../include/functions_reporting_html.php:3295 +#: ../../include/functions_reporting_html.php:3771 msgid "Max Value" msgstr "最大値" -#: ../../include/functions_reporting_html.php:810 -#: ../../include/functions_reporting_html.php:1028 -#: ../../include/functions_reporting_html.php:1647 -#: ../../operation/snmpconsole/snmp_view.php:718 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:143 +#: ../../include/functions_reporting_html.php:962 +#: ../../include/functions_reporting_html.php:1186 +#: ../../include/functions_reporting_html.php:1959 +#: ../../operation/snmpconsole/snmp_view.php:810 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:155 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1317 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1009 msgid "Count" msgstr "回数" -#: ../../include/functions_reporting_html.php:815 -#: ../../include/functions_reporting_html.php:824 -#: ../../include/functions_reporting_html.php:1652 +#: ../../include/functions_reporting_html.php:967 +#: ../../include/functions_reporting_html.php:975 +#: ../../include/functions_reporting_html.php:1965 msgid "Val. by" msgstr "承諾ユーザ" -#: ../../include/functions_reporting_html.php:918 -#: ../../include/functions_reporting_html.php:1114 +#: ../../include/functions_reporting_html.php:1034 +#, php-format +msgid "%s System" +msgstr "%s システム" + +#: ../../include/functions_reporting_html.php:1082 +#: ../../include/functions_reporting_html.php:1282 msgid "Events by agent" msgstr "エージェントで分類したイベント" -#: ../../include/functions_reporting_html.php:937 -#: ../../include/functions_reporting_html.php:1133 +#: ../../include/functions_reporting_html.php:1099 +#: ../../include/functions_reporting_html.php:1299 msgid "Events by user validator" msgstr "承諾したユーザごとのイベント" -#: ../../include/functions_reporting_html.php:956 -#: ../../include/functions_reporting_html.php:1152 +#: ../../include/functions_reporting_html.php:1116 +#: ../../include/functions_reporting_html.php:1316 msgid "Events by Severity" msgstr "重要度ごとのイベント" -#: ../../include/functions_reporting_html.php:975 -#: ../../include/functions_reporting_html.php:1171 +#: ../../include/functions_reporting_html.php:1133 +#: ../../include/functions_reporting_html.php:1333 msgid "Events validated vs unvalidated" msgstr "承諾済と未承諾イベント" -#: ../../include/functions_reporting_html.php:1231 -#: ../../enterprise/include/functions_inventory.php:656 -#: ../../enterprise/include/functions_inventory.php:719 -#: ../../enterprise/include/functions_reporting_pdf.php:541 +#: ../../include/functions_reporting_html.php:1400 +#: ../../enterprise/include/functions_inventory.php:715 +#: ../../enterprise/include/functions_inventory.php:778 msgid "Added" msgstr "追加済み" -#: ../../include/functions_reporting_html.php:1382 -#: ../../enterprise/dashboard/widgets/agent_module.php:347 -#: ../../enterprise/include/functions_reporting_pdf.php:664 +#: ../../include/functions_reporting_html.php:1617 +#: ../../enterprise/dashboard/widgets/agent_module.php:421 +#: ../../enterprise/include/functions_reporting_pdf.php:841 #, php-format msgid "%s in %s : NORMAL" msgstr "%s (%s): 正常" -#: ../../include/functions_reporting_html.php:1391 -#: ../../enterprise/dashboard/widgets/agent_module.php:355 -#: ../../enterprise/include/functions_reporting_pdf.php:673 +#: ../../include/functions_reporting_html.php:1634 +#: ../../enterprise/dashboard/widgets/agent_module.php:437 +#: ../../enterprise/include/functions_reporting_pdf.php:858 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s (%s): 障害" -#: ../../include/functions_reporting_html.php:1400 -#: ../../enterprise/dashboard/widgets/agent_module.php:363 -#: ../../enterprise/include/functions_reporting_pdf.php:682 +#: ../../include/functions_reporting_html.php:1651 +#: ../../enterprise/dashboard/widgets/agent_module.php:453 +#: ../../enterprise/include/functions_reporting_pdf.php:875 #, php-format msgid "%s in %s : WARNING" msgstr "%s (%s): 警告" -#: ../../include/functions_reporting_html.php:1409 -#: ../../enterprise/dashboard/widgets/agent_module.php:371 -#: ../../enterprise/include/functions_reporting_pdf.php:691 +#: ../../include/functions_reporting_html.php:1668 +#: ../../enterprise/dashboard/widgets/agent_module.php:469 +#: ../../enterprise/include/functions_reporting_pdf.php:892 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s (%s): 不明" -#: ../../include/functions_reporting_html.php:1420 -#: ../../enterprise/dashboard/widgets/agent_module.php:388 -#: ../../enterprise/include/functions_reporting_pdf.php:709 +#: ../../include/functions_reporting_html.php:1687 +#: ../../enterprise/dashboard/widgets/agent_module.php:502 +#: ../../enterprise/include/functions_reporting_pdf.php:926 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s (%s): アラート発生" -#: ../../include/functions_reporting_html.php:1429 -#: ../../enterprise/dashboard/widgets/agent_module.php:379 -#: ../../enterprise/include/functions_reporting_pdf.php:700 +#: ../../include/functions_reporting_html.php:1704 +#: ../../enterprise/dashboard/widgets/agent_module.php:485 +#: ../../enterprise/include/functions_reporting_pdf.php:909 #, php-format msgid "%s in %s : Not initialize" msgstr "%s (%s): 未初期化" -#: ../../include/functions_reporting_html.php:1453 +#: ../../include/functions_reporting_html.php:1734 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "青色のセルは、不明状態を示します。" -#: ../../include/functions_reporting_html.php:1559 -#: ../../include/functions_reporting_html.php:1574 -#: ../../operation/agentes/gis_view.php:214 -#: ../../operation/agentes/group_view.php:165 ../../operation/tree.php:295 -#: ../../enterprise/dashboard/widgets/tree_view.php:207 -#: ../../enterprise/include/functions_inventory.php:324 -#: ../../enterprise/include/functions_inventory.php:456 -#: ../../enterprise/include/functions_reporting_pdf.php:737 -#: ../../enterprise/include/functions_reporting_pdf.php:752 -#: ../../enterprise/meta/monitoring/group_view.php:145 -#: ../../enterprise/operation/agentes/agent_inventory.php:230 -msgid "Total" -msgstr "合計" - -#: ../../include/functions_reporting_html.php:1588 -#: ../../include/functions_reporting_html.php:3385 +#: ../../include/functions_reporting_html.php:1904 +#: ../../include/functions_reporting_html.php:4338 msgid "Monitors" msgstr "モニタ項目" -#: ../../include/functions_reporting_html.php:1607 -#: ../../include/functions_reporting_html.php:1962 -#: ../../include/functions_reporting_html.php:1963 -#: ../../mobile/operation/alerts.php:38 -#: ../../operation/agentes/alerts_status.functions.php:74 -#: ../../operation/snmpconsole/snmp_view.php:194 -#: ../../operation/snmpconsole/snmp_view.php:1035 -#: ../../enterprise/include/functions_reporting_pdf.php:780 +#: ../../include/functions_reporting_html.php:1915 +#: ../../include/functions_reporting_html.php:2407 +#: ../../include/functions_reporting_html.php:2408 +#: ../../mobile/operation/alerts.php:48 +#: ../../operation/agentes/alerts_status.functions.php:79 +#: ../../operation/snmpconsole/snmp_view.php:208 +#: ../../operation/snmpconsole/snmp_view.php:1173 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2626 msgid "Fired" msgstr "通知済" -#: ../../include/functions_reporting_html.php:1620 -#: ../../enterprise/include/functions_reporting_pdf.php:795 +#: ../../include/functions_reporting_html.php:1924 #, php-format msgid "Last %s" msgstr "最新日時 %s" -#: ../../include/functions_reporting_html.php:1740 +#: ../../include/functions_reporting_html.php:2064 msgid "Events validated by user" msgstr "ユーザで分類したイベント" -#: ../../include/functions_reporting_html.php:1759 -#: ../../include/functions_reporting_html.php:3674 +#: ../../include/functions_reporting_html.php:2081 +#: ../../include/functions_reporting_html.php:4613 msgid "Events by severity" msgstr "重要度ごとのイベント" -#: ../../include/functions_reporting_html.php:1778 -#: ../../operation/events/event_statistics.php:61 +#: ../../include/functions_reporting_html.php:2098 +#: ../../operation/events/event_statistics.php:75 msgid "Amount events validated" msgstr "承諾済みイベントの割合" -#: ../../include/functions_reporting_html.php:1908 +#: ../../include/functions_reporting_html.php:2325 #, php-format msgid "Interface '%s' throughput graph" msgstr "インタフェース '%s' スループットグラフ" -#: ../../include/functions_reporting_html.php:1911 +#: ../../include/functions_reporting_html.php:2329 msgid "Mac" msgstr "Mac" -#: ../../include/functions_reporting_html.php:1912 +#: ../../include/functions_reporting_html.php:2330 msgid "Actual status" msgstr "現在の状態" -#: ../../include/functions_reporting_html.php:2108 +#: ../../include/functions_reporting_html.php:2652 +#: ../../include/functions_reporting_html.php:2654 msgid "Empty modules" msgstr "モジュールなし" -#: ../../include/functions_reporting_html.php:2115 +#: ../../include/functions_reporting_html.php:2661 msgid "Warning
    Critical" msgstr "警告
    障害" -#: ../../include/functions_reporting_html.php:2236 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_pdf.php:361 +#: ../../include/functions_reporting_html.php:2766 +#: ../../include/functions_reporting_html.php:2794 +#: ../../include/functions_reporting_html.php:2822 +#: ../../include/functions_reporting_html.php:2843 +#: ../../include/functions_reporting_html.php:2846 +#: ../../include/functions_reporting_html.php:2851 +#: ../../include/functions_reporting.php:4955 +#: ../../include/functions_reporting.php:4978 +#: ../../include/functions_reporting.php:4982 +#: ../../include/functions_reporting.php:4986 +#: ../../include/functions_reporting.php:4990 +#: ../../enterprise/include/functions_reporting_csv.php:1083 +#: ../../enterprise/include/functions_reporting_pdf.php:467 +#: ../../enterprise/include/functions_reporting_pdf.php:499 +#: ../../enterprise/include/functions_reporting_pdf.php:525 +#: ../../enterprise/include/functions_reporting_pdf.php:550 +#: ../../enterprise/include/functions_reporting_pdf.php:553 +#: ../../enterprise/include/functions_reporting_pdf.php:560 +msgid "Maximun" +msgstr "最大" + +#: ../../include/functions_reporting_html.php:2774 +#: ../../include/functions_reporting_html.php:2829 +#: ../../enterprise/include/functions_reporting_pdf.php:475 +#: ../../enterprise/include/functions_reporting_pdf.php:532 +msgid "Minimun" +msgstr "最低" + +#: ../../include/functions_reporting_html.php:2782 +#: ../../include/functions_reporting_html.php:2836 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:61 +#: ../../enterprise/include/functions_reporting_pdf.php:483 +#: ../../enterprise/include/functions_reporting_pdf.php:539 +msgid "Average" +msgstr "平均" + +#: ../../include/functions_reporting_html.php:2821 +#: ../../include/functions_reporting_html.php:2828 +#: ../../include/functions_reporting_html.php:2835 +#: ../../include/functions_reporting_html.php:2845 +#: ../../include/functions_reporting_html.php:2850 +#: ../../include/functions_reporting.php:4973 +#: ../../enterprise/include/functions_reporting_csv.php:1028 +#: ../../enterprise/include/functions_reporting_csv.php:1083 +#: ../../enterprise/include/functions_reporting_csv.php:1187 +#: ../../enterprise/include/functions_reporting_pdf.php:524 +#: ../../enterprise/include/functions_reporting_pdf.php:531 +#: ../../enterprise/include/functions_reporting_pdf.php:538 +#: ../../enterprise/include/functions_reporting_pdf.php:552 +#: ../../enterprise/include/functions_reporting_pdf.php:557 +msgid "Lapse" +msgstr "経過" + +#: ../../include/functions_reporting_html.php:2916 +#: ../../enterprise/include/functions_reporting_csv.php:1118 msgid "From data" -msgstr "" +msgstr "開始データ" -#: ../../include/functions_reporting_html.php:2237 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_pdf.php:362 +#: ../../include/functions_reporting_html.php:2917 +#: ../../enterprise/include/functions_reporting_csv.php:1118 msgid "To data" -msgstr "" +msgstr "終了データ" -#: ../../include/functions_reporting_html.php:2265 -#: ../../enterprise/include/functions_reporting_csv.php:869 -#: ../../enterprise/include/functions_reporting_csv.php:887 -#: ../../enterprise/include/functions_reporting_pdf.php:374 +#: ../../include/functions_reporting_html.php:2945 +#: ../../enterprise/include/functions_reporting_csv.php:1124 +#: ../../enterprise/include/functions_reporting_csv.php:1135 msgid "Negative increase: " msgstr "マイナス増加: " -#: ../../include/functions_reporting_html.php:2268 -#: ../../enterprise/include/functions_reporting_csv.php:872 -#: ../../enterprise/include/functions_reporting_csv.php:890 -#: ../../enterprise/include/functions_reporting_pdf.php:377 +#: ../../include/functions_reporting_html.php:2947 +#: ../../enterprise/include/functions_reporting_csv.php:1126 +#: ../../enterprise/include/functions_reporting_csv.php:1137 msgid "Positive increase: " msgstr "プラス増加: " -#: ../../include/functions_reporting_html.php:2271 -#: ../../enterprise/include/functions_reporting_csv.php:875 -#: ../../enterprise/include/functions_reporting_csv.php:893 -#: ../../enterprise/include/functions_reporting_pdf.php:380 +#: ../../include/functions_reporting_html.php:2949 +#: ../../enterprise/include/functions_reporting_csv.php:1128 +#: ../../enterprise/include/functions_reporting_csv.php:1139 msgid "Neutral increase: " msgstr "中立的な増加: " -#: ../../include/functions_reporting_html.php:2326 -msgid "Total time" -msgstr "合計時間" - -#: ../../include/functions_reporting_html.php:2327 -msgid "Time failed" -msgstr "障害時間" - -#: ../../include/functions_reporting_html.php:2329 -msgid "Time Uknown" -msgstr "不明時間" - -#: ../../include/functions_reporting_html.php:2330 +#: ../../include/functions_reporting_html.php:3065 msgid "Time Not Init Module" msgstr "未初期化モジュール時間" -#: ../../include/functions_reporting_html.php:2331 -#: ../../enterprise/include/functions_reporting_csv.php:1426 +#: ../../include/functions_reporting_html.php:3071 +#: ../../enterprise/include/functions_reporting_csv.php:1738 msgid "Time Downtime" msgstr "計画停止時間" -#: ../../include/functions_reporting_html.php:2332 -#: ../../enterprise/include/functions_reporting_pdf.php:1936 +#: ../../include/functions_reporting_html.php:3076 msgid "% Ok" msgstr "正常%" -#: ../../include/functions_reporting_html.php:2369 -msgid "Total checks" -msgstr "全確認数" - -#: ../../include/functions_reporting_html.php:2370 -msgid "Checks failed" -msgstr "障害確認数" - -#: ../../include/functions_reporting_html.php:2372 +#: ../../include/functions_reporting_html.php:3132 msgid "Checks Uknown" msgstr "不明確認数" -#: ../../include/functions_reporting_html.php:2518 -#: ../../enterprise/include/functions_reporting_pdf.php:2070 -msgid "Agent max value" -msgstr "エージェント最大値" - -#: ../../include/functions_reporting_html.php:2520 +#: ../../include/functions_reporting_html.php:3296 +#: ../../enterprise/include/functions_reporting_csv.php:619 msgid "Agent min value" msgstr "エージェント最小値" -#: ../../include/functions_reporting_html.php:2708 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 -#: ../../enterprise/include/functions_reporting_csv.php:531 -#: ../../enterprise/include/functions_reporting_pdf.php:913 +#: ../../include/functions_reporting_html.php:3481 +msgid "Primary" +msgstr "プライマリ" + +#: ../../include/functions_reporting_html.php:3676 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:249 +#: ../../enterprise/include/functions_reporting_csv.php:881 msgid "Sum" msgstr "合計" -#: ../../include/functions_reporting_html.php:2799 -#: ../../include/functions_reporting_html.php:2902 -#: ../../enterprise/dashboard/widgets/tactical.php:44 -msgid "Summary" -msgstr "サマリ" +#: ../../include/functions_reporting_html.php:3883 +#: ../../include/functions_reporting.php:8898 +#: ../../include/functions_reporting.php:8919 +msgid "Alert level" +msgstr "アラートレベル" -#: ../../include/functions_reporting_html.php:2865 -#: ../../operation/tree.php:178 -msgid "Module status" -msgstr "モジュールの状態" - -#: ../../include/functions_reporting_html.php:2994 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1224 +#: ../../include/functions_reporting_html.php:4019 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1378 msgid "Alert description" msgstr "アラートの説明" -#: ../../include/functions_reporting_html.php:3044 -msgid "Alerts not fired" -msgstr "未通知アラート" - -#: ../../include/functions_reporting_html.php:3053 -msgid "Total alerts monitored" -msgstr "モニタ中の全アラート" - -#: ../../include/functions_reporting_html.php:3104 -msgid "Total monitors" -msgstr "全モニタ" - -#: ../../include/functions_reporting_html.php:3105 -msgid "Monitors down on period" -msgstr "現時点で停止中のモニタ" - -#: ../../include/functions_reporting_html.php:3121 -msgid "Monitors OK" -msgstr "正常" - -#: ../../include/functions_reporting_html.php:3122 -msgid "Monitors BAD" -msgstr "障害" - -#: ../../include/functions_reporting_html.php:3148 -#: ../../include/functions_reporting_html.php:3288 -#: ../../mobile/include/functions_web.php:23 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 +#: ../../include/functions_reporting_html.php:4059 +#: ../../include/functions_reporting_html.php:4213 +#: ../../mobile/include/functions_web.php:22 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 msgid "Monitor" msgstr "モニタ項目" -#: ../../include/functions_reporting_html.php:3196 +#: ../../include/functions_reporting_html.php:4112 #, php-format msgid "Agents in group: %s" msgstr "グループに含まれるエージェント: %s" -#: ../../include/functions_reporting_html.php:3289 +#: ../../include/functions_reporting_html.php:4214 msgid "Last failure" msgstr "最新の障害" -#: ../../include/functions_reporting_html.php:3353 +#: ../../include/functions_reporting_html.php:4304 msgid "N/A(*)" msgstr "N/A(*)" -#: ../../include/functions_reporting_html.php:3527 -#: ../../mobile/operation/groups.php:133 -msgid "Agents critical" -msgstr "障害状態エージェント" - -#: ../../include/functions_reporting_html.php:3530 -msgid "Agents warning" -msgstr "警告状態エージェント" - -#: ../../include/functions_reporting_html.php:3536 -msgid "Agents ok" -msgstr "正常状態エージェント" - -#: ../../include/functions_reporting_html.php:3545 -#: ../../mobile/operation/groups.php:129 -msgid "Agents not init" -msgstr "未初期化エージェント" - -#: ../../include/functions_reporting_html.php:3556 -#: ../../include/functions_reporting_html.php:3565 +#: ../../include/functions_reporting_html.php:4517 +#: ../../include/functions_reporting_html.php:4522 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:501 msgid "Agents by status" msgstr "状態ごとのエージェント" -#: ../../include/functions_reporting_html.php:3602 -#: ../../operation/agentes/pandora_networkmap.php:565 -#: ../../enterprise/godmode/reporting/cluster_list.php:171 +#: ../../include/functions_reporting_html.php:4541 +#: ../../include/functions_reporting.php:9119 +#: ../../enterprise/dashboard/widgets/tactical.php:32 +msgid "Monitor checks" +msgstr "モニタ項目" + +#: ../../include/functions_reporting_html.php:4545 +#: ../../include/functions_reporting.php:9138 +msgid "Total agents and monitors" +msgstr "全エージェントと監視項目" + +#: ../../include/functions_reporting_html.php:4558 +#: ../../operation/agentes/pandora_networkmap.php:695 +#: ../../enterprise/godmode/reporting/cluster_list.php:191 msgid "Nodes" msgstr "ノード" -#: ../../include/functions_reporting_html.php:3609 -#: ../../include/functions_reporting_html.php:3618 +#: ../../include/functions_reporting_html.php:4564 +#: ../../include/functions_reporting_html.php:4569 msgid "Node overview" msgstr "ノードの概要" -#: ../../include/functions_reporting_html.php:3636 -#: ../../include/functions_reporting_html.php:3653 +#: ../../include/functions_reporting_html.php:4589 +#: ../../include/functions_reporting_html.php:4601 msgid "Critical events" msgstr "障害イベント" -#: ../../include/functions_reporting_html.php:3640 -#: ../../include/functions_reporting_html.php:3657 +#: ../../include/functions_reporting_html.php:4592 +#: ../../include/functions_reporting_html.php:4603 msgid "Warning events" msgstr "警告イベント" -#: ../../include/functions_reporting_html.php:3644 -#: ../../include/functions_reporting_html.php:3661 +#: ../../include/functions_reporting_html.php:4595 +#: ../../include/functions_reporting_html.php:4605 msgid "OK events" msgstr "正常イベント" -#: ../../include/functions_reporting_html.php:3648 -#: ../../include/functions_reporting_html.php:3665 +#: ../../include/functions_reporting_html.php:4598 +#: ../../include/functions_reporting_html.php:4607 msgid "Unknown events" msgstr "不明イベント" -#: ../../include/functions_reporting_html.php:3688 +#: ../../include/functions_reporting_html.php:4623 msgid "Important Events by Criticity" msgstr "重要度ごとのイベント" -#: ../../include/functions_reporting_html.php:3714 -msgid "Last activity in Pandora FMS console" -msgstr "Pandora FMS コンソールの最新の操作" +#: ../../include/functions_reporting_html.php:4649 +#, php-format +msgid "Last activity in %s console" +msgstr "%s コンソールの最新の操作" -#: ../../include/functions_reporting_html.php:3790 -#: ../../include/functions_reporting_html.php:3930 +#: ../../include/functions_reporting_html.php:4740 +#: ../../include/functions_reporting_html.php:4881 msgid "Events info (1hr.)" msgstr "イベント情報 (1時間)" -#: ../../include/functions_reporting_html.php:4096 -#: ../../enterprise/include/functions_reporting.php:4974 -#: ../../enterprise/include/functions_reporting_pdf.php:2499 +#: ../../include/functions_reporting_html.php:5070 +msgid "Kilobytes" +msgstr "キロバイト" + +#: ../../include/functions_reporting_html.php:5071 +#: ../../enterprise/include/functions_reporting_csv.php:1938 +#: ../../enterprise/include/functions_reporting_csv.php:1946 +msgid "Packages" +msgstr "パッケージ" + +#: ../../include/functions_reporting_html.php:5075 +msgid "No network traffic sent data" +msgstr "送信ネットワークトラフィック無し" + +#: ../../include/functions_reporting_html.php:5085 +msgid "Network traffic sent" +msgstr "送信ネットワークトラフィック" + +#: ../../include/functions_reporting_html.php:5092 +msgid "No network traffic received data" +msgstr "受信ネットワークトラフィック無し" + +#: ../../include/functions_reporting_html.php:5102 +msgid "Network traffic received" +msgstr "受信ネットワークトラフィック" + +#: ../../include/functions_reporting_html.php:5123 msgid "This SLA has been affected by the following planned downtimes" msgstr "この SLA は、次の計画停止によって影響を受けます" -#: ../../include/functions_reporting_html.php:4101 -#: ../../enterprise/include/functions_reporting.php:4979 -#: ../../enterprise/include/functions_reporting_pdf.php:2504 +#: ../../include/functions_reporting_html.php:5124 +msgid "" +"If the duration of the planned downtime is less than 5 minutes it will not " +"be represented in the graph" +msgstr "5分未満の計画停止期間はグラフに表現されません。" + +#: ../../include/functions_reporting_html.php:5131 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:431 msgid "Dates" msgstr "日付" -#: ../../include/functions_reporting_html.php:4142 -#: ../../enterprise/include/functions_reporting.php:5073 -#: ../../enterprise/include/functions_reporting_pdf.php:2543 +#: ../../include/functions_reporting_html.php:5162 msgid "This item is affected by a malformed planned downtime" msgstr "この要素は不正な計画停止の影響を受けます" -#: ../../include/functions_reporting_html.php:4143 -#: ../../enterprise/include/functions_reporting.php:5074 -#: ../../enterprise/include/functions_reporting_pdf.php:2544 +#: ../../include/functions_reporting_html.php:5162 msgid "Go to the planned downtimes section to solve this" msgstr "これを解決するために計画停止画面へ行く" -#: ../../include/functions_reports.php:511 -msgid "SQL vertical bar graph" -msgstr "SQL 縦棒グラフ" +#: ../../include/functions_planned_downtimes.php:577 +msgid "Succesful stopped the Downtime" +msgstr "計画停止を中止しました" -#: ../../include/functions_reports.php:513 -msgid "SQL pie graph" -msgstr "SQL 円グラフ" +#: ../../include/functions_planned_downtimes.php:578 +msgid "Unsuccesful stopped the Downtime" +msgstr "計画停止の中止に失敗しました" -#: ../../include/functions_reports.php:515 -msgid "SQL horizonal bar graph" -msgstr "SQL 横棒グラフ" +#: ../../include/functions_planned_downtimes.php:718 +#, php-format +msgid "Enabled %s elements from the downtime" +msgstr "計画停止から %s 件の要素が有効になりました" -#: ../../include/functions_reports.php:519 -msgid "Automatic combined Graph" -msgstr "自動合成グラフ" +#: ../../include/functions_planned_downtimes.php:777 +msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" +msgstr "計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかです。" -#: ../../include/functions_reports.php:523 -msgid "Availability graph" -msgstr "可用性グラフ" +#: ../../include/functions_planned_downtimes.php:782 +msgid "The execution must be once or periodically" +msgstr "実行は、一回のみか定期的のいずれかです。" -#: ../../include/functions_reports.php:526 -msgid "Module Histogram graph" -msgstr "モジュールヒストグラムグラフ" +#: ../../include/functions_planned_downtimes.php:787 +msgid "The periodicity must be weekly or monthly" +msgstr "定期実行は週次または月次です。" -#: ../../include/functions_reports.php:528 -#: ../../include/functions_reports.php:530 -#: ../../include/functions_reports.php:532 -#: ../../include/functions_reports.php:534 -msgid "ITIL" -msgstr "ITIL" +#: ../../include/functions_planned_downtimes.php:792 +msgid "There is no user with such id" +msgstr "そのような ID のユーザがありません。" -#: ../../include/functions_reports.php:539 -#: ../../include/functions_reports.php:542 -#: ../../include/functions_reports.php:544 -#: ../../include/functions_reports.php:546 -#: ../../include/functions_reports.php:550 -#: ../../enterprise/include/functions_reporting_csv.php:1432 -#: ../../enterprise/operation/services/services.list.php:343 -#: ../../enterprise/operation/services/services.service.php:141 -msgid "SLA" -msgstr "SLA" +#: ../../include/functions_planned_downtimes.php:797 +msgid "There is no group with such id" +msgstr "そのような ID のグループがありません。" -#: ../../include/functions_reports.php:543 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:113 -#: ../../enterprise/include/functions_reporting.php:2015 -msgid "Monthly S.L.A." -msgstr "月次 S.L.A." +#: ../../include/functions_planned_downtimes.php:802 +msgid "Date is wrong formatted" +msgstr "日付のフォーマットが不正です" -#: ../../include/functions_reports.php:545 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:114 -#: ../../enterprise/include/functions_reporting.php:2740 -msgid "Weekly S.L.A." -msgstr "週次 S.L.A." +#: ../../include/functions_planned_downtimes.php:909 +msgid "This planned downtime are executed now. Can't delete in this moment." +msgstr "この計画停止は実行中です。現在削除できません。" -#: ../../include/functions_reports.php:547 -#: ../../enterprise/include/functions_reporting.php:3522 -msgid "Hourly S.L.A." -msgstr "1時間ごとの S.L.A." +#: ../../include/functions_planned_downtimes.php:916 +msgid "Deleted this planned downtime successfully." +msgstr "計画停止を削除しました。" -#: ../../include/functions_reports.php:551 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:119 -#: ../../enterprise/include/functions_reporting.php:4434 -#: ../../enterprise/include/functions_reporting.php:4898 -msgid "Services S.L.A." -msgstr "サービス SLA" +#: ../../include/functions_planned_downtimes.php:918 +msgid "Problems for deleted this planned downtime." +msgstr "計画停止の削除に失敗しました。" -#: ../../include/functions_reports.php:556 -#: ../../include/functions_reports.php:558 -msgid "Forecasting" -msgstr "予測" - -#: ../../include/functions_reports.php:557 -#: ../../enterprise/include/functions_reporting_csv.php:327 -msgid "Prediction date" -msgstr "予測日" - -#: ../../include/functions_reports.php:559 -msgid "Projection graph" -msgstr "予想グラフ" - -#: ../../include/functions_reports.php:570 -msgid "Monitor report" -msgstr "モニタ項目レポート" - -#: ../../include/functions_reports.php:572 -msgid "Serialize data" -msgstr "データの並び" - -#: ../../include/functions_reports.php:576 -msgid "Historical Data" -msgstr "保存データ" - -#: ../../include/functions_reports.php:581 -#: ../../include/functions_reports.php:583 -#: ../../include/functions_reports.php:585 -#: ../../include/functions_reports.php:588 -#: ../../include/functions_reports.php:592 -#: ../../include/functions_reports.php:595 -#: ../../include/functions_reports.php:597 -#: ../../include/functions_reports.php:599 -msgid "Grouped" -msgstr "グループ化" - -#: ../../include/functions_reports.php:584 -#: ../../enterprise/include/functions_reporting_csv.php:482 -msgid "Group report" -msgstr "グループレポート" - -#: ../../include/functions_reports.php:596 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:45 -msgid "Top n" -msgstr "トップ n" - -#: ../../include/functions_reports.php:598 -msgid "Network interfaces" -msgstr "ネットワークインタフェース" - -#: ../../include/functions_reports.php:603 -#: ../../include/functions_reports.php:605 -msgid "Text/HTML " -msgstr "テキスト/HTML " - -#: ../../include/functions_reports.php:606 -msgid "Import text from URL" -msgstr "URL からテキストをインポート" - -#: ../../include/functions_reports.php:611 -msgid "Alert report module" -msgstr "アラートレポートモジュール" - -#: ../../include/functions_reports.php:613 -msgid "Alert report agent" -msgstr "アラートレポートエージェント" - -#: ../../include/functions_reports.php:616 -msgid "Alert report group" -msgstr "アラートレポートグループ" - -#: ../../include/functions_reports.php:622 -msgid "Event report agent" -msgstr "イベントレポートエージェント" - -#: ../../include/functions_reports.php:624 -msgid "Event report module" -msgstr "イベントレポートモジュール" - -#: ../../include/functions_reports.php:626 -msgid "Event report group" -msgstr "イベントレポートグループ" - -#: ../../include/functions_reports.php:633 -msgid "Inventory changes" -msgstr "インベントリ変更" - -#: ../../include/functions_reports.php:643 -msgid "Netflow area chart" -msgstr "Netflow 塗り潰しグラフ" - -#: ../../include/functions_reports.php:645 -msgid "Netflow pie chart" -msgstr "Netflow 円グラフ" - -#: ../../include/functions_reports.php:647 -msgid "Netflow data table" -msgstr "Netflow データ表" - -#: ../../include/functions_reports.php:649 -msgid "Netflow statistics table" -msgstr "Netflow 統計表" - -#: ../../include/functions_reports.php:651 -msgid "Netflow summary table" -msgstr "Netflow サマリ表" - -#: ../../include/functions_reports.php:655 -#: ../../enterprise/include/functions_reporting.php:1831 -msgid "Log" -msgstr "ログ" - -#: ../../include/functions_reports.php:656 -#: ../../enterprise/include/functions_reporting.php:1822 -msgid "Log report" -msgstr "ログレポート" - -#: ../../include/functions_servers.php:364 -msgid "Data server" -msgstr "データサーバ" - -#: ../../include/functions_servers.php:369 -msgid "Network server" -msgstr "ネットワークサーバ" - -#: ../../include/functions_servers.php:374 -msgid "SNMP Trap server" -msgstr "SNMPトラップサーバ" - -#: ../../include/functions_servers.php:384 -msgid "Plugin server" -msgstr "プラグインサーバ" - -#: ../../include/functions_servers.php:389 -msgid "Prediction server" -msgstr "予測サーバ" - -#: ../../include/functions_servers.php:394 -msgid "WMI server" -msgstr "WMI サーバ" - -#: ../../include/functions_servers.php:399 -#: ../../enterprise/godmode/servers/manage_export_form.php:71 -msgid "Export server" -msgstr "エクスポートサーバ" - -#: ../../include/functions_servers.php:404 -msgid "Inventory server" -msgstr "インベントリサーバ" - -#: ../../include/functions_servers.php:409 -msgid "Web server" -msgstr "ウェブサーバ" - -#: ../../include/functions_servers.php:414 -msgid "Event server" -msgstr "イベントサーバ" - -#: ../../include/functions_servers.php:419 -msgid "Enterprise ICMP server" -msgstr "エンタープライズ ICMP サーバ" - -#: ../../include/functions_servers.php:424 -msgid "Enterprise SNMP server" -msgstr "エンタープライズSNMPサーバ" - -#: ../../include/functions_servers.php:429 -msgid "Enterprise Satellite server" -msgstr "Enterprise サテライトサーバ" - -#: ../../include/functions_servers.php:434 -msgid "Enterprise Transactional server" -msgstr "Enterprise トランザクションサーバ" - -#: ../../include/functions_servers.php:439 -msgid "Mainframe server" -msgstr "メインフレームサーバ" - -#: ../../include/functions_servers.php:444 -msgid "Sync server" -msgstr "同期サーバ" - -#: ../../include/functions_servers.php:449 -msgid "Wux server" -msgstr "Wux サーバ" - -#: ../../include/functions_servers.php:454 -msgid "Syslog server" -msgstr "Syslog サーバ" - -#: ../../include/functions_snmp.php:67 -msgid "Load Average (Last minute)" -msgstr "ロードアベレージ (1分)" - -#: ../../include/functions_snmp.php:71 -msgid "Load Average (Last 5 minutes)" -msgstr "ロードアベレージ (5分)" - -#: ../../include/functions_snmp.php:75 -msgid "Load Average (Last 15 minutes)" -msgstr "ロードアベレージ (15分)" - -#: ../../include/functions_snmp.php:79 -msgid "Total Swap Size configured for the host" -msgstr "ホストに設定されているスワップ容量" - -#: ../../include/functions_snmp.php:83 -msgid "Available Swap Space on the host" -msgstr "ホストのスワップ領域の空き容量" - -#: ../../include/functions_snmp.php:87 -msgid "Total Real/Physical Memory Size on the host" -msgstr "ホストの物理メモリ量" - -#: ../../include/functions_snmp.php:91 -msgid "Available Real/Physical Memory Space on the host" -msgstr "ホストの実メモリの空き容量" - -#: ../../include/functions_snmp.php:95 -msgid "Total Available Memory on the host" -msgstr "ホストの全体の空きメモリ" - -#: ../../include/functions_snmp.php:99 -msgid "Total Cached Memory" -msgstr "キャッシュメモリ量" - -#: ../../include/functions_snmp.php:103 -msgid "Total Buffered Memory" -msgstr "バッファメモリ量" - -#: ../../include/functions_snmp.php:107 -msgid "Amount of memory swapped in from disk (kB/s)" -msgstr "ディスクからスワップしているメモリ量 (kB/s)" - -#: ../../include/functions_snmp.php:111 -msgid "Amount of memory swapped to disk (kB/s)" -msgstr "ディスクへスワップしているメモリ量 (kB/s)" - -#: ../../include/functions_snmp.php:115 -msgid "Number of blocks sent to a block device" -msgstr "ブロックデバイスへ送っているブロック数" - -#: ../../include/functions_snmp.php:119 -msgid "Number of blocks received from a block device" -msgstr "ブロックデバイスから受け取っているブロック数" - -#: ../../include/functions_snmp.php:123 -msgid "Number of interrupts processed" -msgstr "割り込み処理数" - -#: ../../include/functions_snmp.php:127 -msgid "Number of context switches" -msgstr "コンテキストスイッチ数" - -#: ../../include/functions_snmp.php:131 -msgid "user CPU time" -msgstr "user CPU時間" - -#: ../../include/functions_snmp.php:135 -msgid "system CPU time" -msgstr "system CPU時間" - -#: ../../include/functions_snmp.php:139 -msgid "idle CPU time" -msgstr "idle CPU時間" - -#: ../../include/functions_snmp.php:143 -msgid "system Up time" -msgstr "システムアップタイム" - -#: ../../include/functions_snmp.php:312 -msgid "Pagination" -msgstr "ページ" - -#: ../../include/functions_snmp.php:333 ../../include/functions_snmp.php:339 -msgid "Group by Enterprise String / IP" -msgstr "Enterprise 文字列/IP でのグループ" - -#: ../../include/functions_snmp.php:384 -#: ../../enterprise/include/functions_events.php:212 -msgid "Active filter" -msgstr "有効なフィルタ" - -#: ../../include/functions_snmp.php:385 -#: ../../enterprise/include/functions_events.php:213 -msgid "Active filters" -msgstr "有効なフィルタ" - -#: ../../include/graphs/export_data.php:71 -#: ../../include/graphs/export_data.php:126 -msgid "An error occured exporting the data" -msgstr "データエクスポートエラー" - -#: ../../include/graphs/export_data.php:76 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -msgid "Selected" -msgstr "選択済" - -#: ../../include/graphs/functions_flot.php:257 -#: ../../include/graphs/functions_flot.php:287 -msgid "Cancel zoom" -msgstr "ズーム中止" - -#: ../../include/graphs/functions_flot.php:259 -msgid "Warning and Critical thresholds" -msgstr "警告と障害の閾値" - -#: ../../include/graphs/functions_flot.php:262 -msgid "Overview graph" -msgstr "概要グラフ" - -#: ../../include/graphs/functions_pchart.php:200 -#: ../../include/graphs/functions_pchart.php:1466 -msgid "Actual" -msgstr "実績" - -#: ../../include/help/clippy/agent_out_of_limits.php:39 +#: ../../include/help/clippy/agent_out_of_limits.php:35 msgid "Agent contact date passed it's ETA!." msgstr "エージェント接続日時が予想時間を過ぎました。" -#: ../../include/help/clippy/agent_out_of_limits.php:44 +#: ../../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 " @@ -26037,11 +30668,11 @@ msgstr "" "エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)しているときにこれが起こります。エージェントとサーバの間の通信も確認してくだ" "さい。" -#: ../../include/help/clippy/data_configuration_module.php:39 +#: ../../include/help/clippy/data_configuration_module.php:35 msgid "Data Configuration Module." msgstr "データ設定モジュール" -#: ../../include/help/clippy/data_configuration_module.php:44 +#: ../../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 " @@ -26054,7 +30685,7 @@ msgstr "" "データとの間で影響があるということに注意してください。エージェントから送られてくるデータや設定のうち、データおよび説明以外、たとえば障害や警告の閾値、モジ" "ュールグループ、最小・最大の値、タグなどは、コンソールに設定されているものが優先されます。" -#: ../../include/help/clippy/data_configuration_module.php:50 +#: ../../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 " @@ -26064,64 +30695,64 @@ msgstr "" "で送られてくるデータはすべて取り込まれコンソールで参照することができますが、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無視します" "。" -#: ../../include/help/clippy/extension_cron_send_email.php:39 +#: ../../include/help/clippy/extension_cron_send_email.php:35 msgid "" "The configuration of email for the task email is in the enterprise setup:" msgstr "タスクメールの設定は、Enterprise 設定にあります:" -#: ../../include/help/clippy/extension_cron_send_email.php:40 +#: ../../include/help/clippy/extension_cron_send_email.php:35 msgid "Please check if the email configuration is correct." msgstr "メール設定が正しいか確認してください。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:35 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34 msgid "Now you must go to Modules. Don't worry I'll lead you." msgstr "ここでモジュールへ行きます。誘導しますので心配はいりません。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:40 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:39 msgid "Click in this tab.." msgstr "このタブをクリックします。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:56 +#: ../../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:60 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:57 msgid "Choose the network server module." msgstr "ネットワークサーバモジュールを選択します。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:64 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:61 msgid "And click the button." msgstr "そしてボタンをクリックします。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:80 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75 msgid "Now you must create the module. Don't worry, i'll teach you ." msgstr "ここでモジュールを作成する必要があります。心配はいりません。お教えします。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:84 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79 msgid "Now we are going to fill the form." msgstr "ここでフォームに入力します。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:88 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:83 msgid "Please choose Network Management." msgstr "ネットワーク管理を選択してください。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:92 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:87 msgid "Choose the component named \"Host alive\"." msgstr "コンポーネント名 \"Host alive\" を選択してください。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:96 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:91 msgid "You can change the name if you want." msgstr "必要であれば名前を変更できます。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:100 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:95 msgid "Check if the IP showed is the IP of your machine." msgstr "表示された IP があなたのマシンの IP かどうか確認します。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:104 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:99 msgid "And only to finish it is clicking this button." msgstr "そしてこのボタンをクリックするだけで終了です。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:121 +#: ../../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 " @@ -26132,168 +30763,165 @@ msgstr "" "この色は、モジュールの初回実行が完了していないことを意味しています。問題がなければ数秒のうちに状態の色がまたはに変わります" "。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:126 -#: ../../include/help/clippy/operation_agentes_ver_agente.php:42 -#: ../../operation/servers/recon_view.php:140 -msgid "Done" -msgstr "完了" - -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:137 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 msgid "Click on alerts tab and then fill the form to add an alert." msgstr "アラートを追加するために、アラートタブをクリックしフォームに入力します。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:152 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:143 msgid "Select the critical module." msgstr "障害モジュールを選択します。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:147 msgid "In template select \"Critical Condition\"." msgstr "テンプレートで \"Critical Condition\" を選択します。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:160 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:151 msgid "Now, select the action created before." msgstr "ここで事前に作成したアクションを選択します。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:165 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:156 msgid "Click on Add Alert button to create the alert." msgstr "アラートを作成するために、アラートの追加ボタンをクリックします。" -#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:181 +#: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 msgid "" "To test the alert you've just created go to the main view by clicking on the " "eye tab." msgstr "作成したアラートのテストをするには、メイン画面へ行き目のタブをクリックします。" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:35 +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34 msgid "I'm going to show you how to monitor a server." msgstr "サーバの監視の仕方をお見せします。" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:39 +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:38 msgid "Please, type an agent to save the modules for monitoring a server." msgstr "サーバ監視のモジュールを保存するためにエージェントを入力してください。" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:44 +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:43 msgid "If you have typed the name correctly you will see the agent." msgstr "正しく名前を入力したら、エージェントが表示されます。" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:60 +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:57 msgid "Now, please choose the agent you searched." msgstr "検索したエージェントを選択してください。" -#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:65 +#: ../../include/help/clippy/godmode_agentes_modificar_agente.php:62 msgid "Choose the agent and click on the name." msgstr "エージェントを選択し名前をクリックします。" -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:36 +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:35 msgid "" "Let me show you how to create an email action: Click on Create button and " "fill the form showed in the following screen." msgstr "email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示されるフォームに入力します。" -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:51 +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:49 msgid "" "Now, you have to go to the monitors list and look for a critical module to " "apply the alert." msgstr "ここで、監視一覧へ行き、アラートを適用する障害モジュールを探します。" -#: ../../include/help/clippy/godmode_alerts_alert_actions.php:56 +#: ../../include/help/clippy/godmode_alerts_alert_actions.php:54 msgid "" "Click on the arrow to drop down the Monitoring submenu and select Monitor " "Detail." msgstr "モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細を選択します。" -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:35 +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34 msgid "Fill the name of your action." msgstr "アクション名を入力します。" -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:39 +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:38 msgid "" "Select the group in the drop-down list and filter for ACL (the user in this " "group can use your action to create an alert)." msgstr "" "ドロップダウンリストのグループとACLフィルタ(アラート作成のためにこのグループのユーザがあなたのアクションを利用できます)を選択してください。" -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:43 +#: ../../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:47 +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:46 msgid "" "In the threshold field enter the seconds. The help icon show more " "information." msgstr "閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示します。" -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:53 +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51 msgid "" "In the first field enter the email address/addresses where you want to " "receive the email alerts separated with comas ( , ) or white spaces." msgstr "" "最初のフィールドにメールでアラートを受け取りたい email アドレスを入力してください。カンマ(,)またはスペース区切りで複数指定できます。" -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:58 +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:56 msgid "" "In the \"Subject\" field you can use the macros _agent_ or _module_ for " "each name." msgstr "\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロが利用できます。" -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:63 +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61 msgid "" "In the text field, you can also use macros. Get more information about the " "macros by clicking on the help icon." msgstr "テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイコンをクリックしてください。" -#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:69 +#: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66 msgid "Click on Create button to create the action." msgstr "アクションを作成するには、作成ボタンをクリックします。" -#: ../../include/help/clippy/homepage.php:59 +#: ../../include/help/clippy/homepage.php:75 msgid "Hi, can I help you?" msgstr "こんにちは、お手伝いしましょうか?" -#: ../../include/help/clippy/homepage.php:60 +#: ../../include/help/clippy/homepage.php:75 +#, php-format 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 %s. You " +"can follow my steps to do basic tasks in %s or you can close me and never " +"see me again." msgstr "" -"自己紹介をさせてください。私は Pandora FMS のおせっかいなアシスタント Pandorin です。Pandora FMS " -"の基本的な操作をお教えします。私を閉じて再表示しないようにもできます。" +"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私の手順に従って %s " +"で基本的なタスクを実行するか、私を閉じて次からは私に会わないようにすることができます。" -#: ../../include/help/clippy/homepage.php:67 +#: ../../include/help/clippy/homepage.php:75 msgid "Close this wizard and don't open it again." msgstr "このウィザードを閉じて、再度開かないでください。" -#: ../../include/help/clippy/homepage.php:81 +#: ../../include/help/clippy/homepage.php:79 msgid "Which task would you like to do first?" msgstr "どのタスクを最初に実行したいですか。" -#: ../../include/help/clippy/homepage.php:85 -msgid "Ping to a Linux or Windows server with a Pandora FMS agent" -msgstr "Pandora FMS エージェントで Linux または Windows サーバに ping を実行します" +#: ../../include/help/clippy/homepage.php:79 +#, php-format +msgid "Ping a Linux or Windows server using a %s agent." +msgstr "%s エージェントで Linux または Windows サーバへの ping を実行します。" -#: ../../include/help/clippy/homepage.php:90 +#: ../../include/help/clippy/homepage.php:79 msgid "Create a alert by email in a critical module." msgstr "障害モジュールで email によるアラートを作成します。" -#: ../../include/help/clippy/homepage.php:209 +#: ../../include/help/clippy/homepage.php:190 +#, php-format msgid "" -"The first thing you have to do is to setup the config email in the Pandora " -"FMS Server." -msgstr "最初にやるべきことは、Pandora FMS サーバでの email の設定です。" +"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:213 +#: ../../include/help/clippy/homepage.php:190 msgid "If you have it already configured you can go to the next step." msgstr "すでに設定済であれば、次のステップへ行きます。" -#: ../../include/help/clippy/homepage.php:218 +#: ../../include/help/clippy/homepage.php:195 msgid "Now, pull down the Manage alerts menu and click on Actions. " msgstr "ここで、アラート管理メニューからアクションをクリックします。 " -#: ../../include/help/clippy/interval_agent_min.php:39 +#: ../../include/help/clippy/interval_agent_min.php:35 msgid "Interval Agent." msgstr "エージェントの間隔" -#: ../../include/help/clippy/interval_agent_min.php:44 +#: ../../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 " @@ -26307,11 +30935,11 @@ msgstr "" "200エージェントがある場合は、5分間隔で " "1000エージェントがあるのと同じです。おそらく短時間の応答が必要になるため、不明モジュールが多くなりサーバへのインパクトは大きくなるでしょう。" -#: ../../include/help/clippy/module_unknow.php:39 +#: ../../include/help/clippy/module_unknow.php:35 msgid "You have unknown modules in this agent." msgstr "このエージェントには不明モジュールがあります。" -#: ../../include/help/clippy/module_unknow.php:44 +#: ../../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 " @@ -26320,11 +30948,11 @@ msgstr "" "不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデータを受信していないモジュールです。なぜ不明モジュールがあるのか原因を特定する" "には、トラブルシュートのためのヘルプページを確認してください。" -#: ../../include/help/clippy/modules_not_init.php:39 +#: ../../include/help/clippy/modules_not_init.php:35 msgid "You have non initialized modules" msgstr "未初期化モジュールがあります。" -#: ../../include/help/clippy/modules_not_init.php:44 +#: ../../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 " @@ -26338,13 +30966,13 @@ msgstr "" "題がある等で)未初期化モジュールが放置された場合は、システムにより自動的に削除されます。未初期化モジュールは、メインがメインに表示されません。エージェント" "管理のモジュール管理画面でのみ参照や編集ができます。" -#: ../../include/help/clippy/modules_not_learning_mode.php:40 +#: ../../include/help/clippy/modules_not_learning_mode.php:46 msgid "" "Please note that you have your agent setup to do not add new modules coming " "from the data XML." msgstr "エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになっていることに注意してください。" -#: ../../include/help/clippy/modules_not_learning_mode.php:41 +#: ../../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 " @@ -26354,19 +30982,19 @@ msgstr "" "ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加した場合は、インタフェースで手動作成するまでエージェントに反映されないというこ" "とを意味します(正しい名前とタイプは XML で送られます)。" -#: ../../include/help/clippy/modules_not_learning_mode.php:42 +#: ../../include/help/clippy/modules_not_learning_mode.php:46 msgid "" "You should use the \"normal\" mode (non learn) only when you don't intend to " "add more modules to the agent." msgstr "エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使います。" -#: ../../include/help/clippy/operation_agentes_status_monitor.php:35 +#: ../../include/help/clippy/operation_agentes_status_monitor.php:34 msgid "" "Now, you have to go to the monitors list and look for a \"critical\" module " "to apply the alert." msgstr "ここでアラートを適用するには、監視一覧へ行き \"障害\" 状態のモジュールを探します。" -#: ../../include/help/clippy/operation_agentes_status_monitor.php:39 +#: ../../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 " @@ -26375,16 +31003,16 @@ msgstr "" "障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧を短くするためにこのフィールドにそれを入力します。名前全体もしくは一部分の入" "力ができます。" -#: ../../include/help/clippy/operation_agentes_status_monitor.php:44 +#: ../../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:60 +#: ../../include/help/clippy/operation_agentes_status_monitor.php:58 msgid "" "Now, to edit the module, click on the wrench that appears in the type column." msgstr "ここでモジュールを編集するには、タイプカラムにあるスパナアイコンをクリックします。" -#: ../../include/help/clippy/operation_agentes_ver_agente.php:36 +#: ../../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 " @@ -26392,16 +31020,16 @@ msgid "" msgstr "" "最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイコンをクリックします。数分のうちにアラートをメールで受信するでしょう。" -#: ../../include/help/clippy/operation_agentes_ver_agente.php:37 +#: ../../include/help/clippy/operation_agentes_ver_agente.php:35 msgid "" "And restart your pandora server to read again general configuration tokens." msgstr "そして、設定ファイルを再読み込みするために pandora サーバを再起動します。" -#: ../../include/help/clippy/server_queued_modules.php:39 +#: ../../include/help/clippy/server_queued_modules.php:35 msgid "Excesive Queued." msgstr "実行キュー" -#: ../../include/help/clippy/server_queued_modules.php:44 +#: ../../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 " @@ -26411,11 +31039,11 @@ msgstr "" "キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎているか、またはサーバが正しく設定されていません。これは一時的なものかもしれませんが" "、ボトルネックになります。一つの解決策としてはサーバのスレッド数を増やすことです。しかし、これについては支援を得ることを考慮した方がよいでしょう。" -#: ../../include/help/clippy/servers_down.php:39 +#: ../../include/help/clippy/servers_down.php:35 msgid "All servers down" msgstr "全てのサーバが停止しています。" -#: ../../include/help/clippy/servers_down.php:44 +#: ../../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 " @@ -26424,11 +31052,11 @@ msgstr "" "サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/pandora_server restart\" " "を実行します。root のパスワードが必要です。" -#: ../../include/help/clippy/topology_group.php:39 +#: ../../include/help/clippy/topology_group.php:35 msgid "Topology Group" msgstr "トポロジグループ" -#: ../../include/help/clippy/topology_group.php:44 +#: ../../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 " @@ -26436,525 +31064,1060 @@ msgid "" msgstr "" "グループトポロジマップはノード間の親子関係を表示しないことに注意してください。グループの親子関係とその中にあるエージェントのみを表示します。 " +#: ../../include/functions_profile.php:188 +#: ../../operation/users/user_edit.php:727 +#: ../../operation/users/user_edit.php:736 +msgid "Profiles/Groups assigned to this user" +msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ" + +#: ../../include/functions_profile.php:214 +#: ../../enterprise/godmode/setup/setup_auth.php:170 +#: ../../enterprise/godmode/setup/setup_auth.php:227 +msgid "No hierarchy" +msgstr "階層なし" + +#: ../../include/functions_reporting.php:361 +msgid " agents" +msgstr " エージェント" + +#: ../../include/functions_reporting.php:371 +msgid " modules" +msgstr " モジュール" + +#: ../../include/functions_reporting.php:917 +#: ../../include/functions_reporting.php:6540 +#: ../../enterprise/include/functions_reporting.php:2195 +#: ../../enterprise/include/functions_reporting.php:3144 +#: ../../enterprise/include/functions_reporting.php:4117 +msgid "There are no SLAs defined" +msgstr "SLA が定義されていません。" + +#: ../../include/functions_reporting.php:980 +#: ../../include/functions_reporting.php:6818 +#: ../../enterprise/include/functions_reporting.php:2248 +#: ../../enterprise/include/functions_reporting.php:3197 +#: ../../enterprise/include/functions_reporting.php:4170 +msgid "Inverse" +msgstr "反転" + +#: ../../include/functions_reporting.php:1377 +msgid "Top N" +msgstr "トップ N" + +#: ../../include/functions_reporting.php:1401 +#: ../../operation/snmpconsole/snmp_statistics.php:131 +#: ../../operation/snmpconsole/snmp_statistics.php:199 +#: ../../enterprise/include/functions_reporting_csv.php:787 +#, php-format +msgid "Top %d" +msgstr "トップ %d" + +#: ../../include/functions_reporting.php:1505 +#: ../../enterprise/dashboard/widgets/top_n.php:615 +msgid "Insuficient data" +msgstr "不十分なデータ" + +#: ../../include/functions_reporting.php:1749 +msgid "Event Report Group" +msgstr "イベントレポートグループ" + +#: ../../include/functions_reporting.php:2010 +msgid "Event Report Module" +msgstr "イベントレポートモジュール" + +#: ../../include/functions_reporting.php:2144 +#: ../../enterprise/include/functions_reporting_csv.php:647 +msgid "Inventory Changes" +msgstr "インベントリ変更" + +#: ../../include/functions_reporting.php:2191 +#: ../../enterprise/extensions/ipam/ipam_action.php:303 +msgid "No changes found." +msgstr "変更が見つかりません。" + +#: ../../include/functions_reporting.php:2291 +msgid "Agent/Modules" +msgstr "エージェント/モジュール" + +#: ../../include/functions_reporting.php:2390 +msgid "Exception - Everything" +msgstr "例外 - 全て" + +#: ../../include/functions_reporting.php:2396 +#, php-format +msgid "Exception - Modules over or equal to %s" +msgstr "例外 - モジュールが %s 以上" + +#: ../../include/functions_reporting.php:2399 +#, php-format +msgid "Modules over or equal to %s" +msgstr "%s 以上のモジュール" + +#: ../../include/functions_reporting.php:2404 +#, php-format +msgid "Exception - Modules under or equal to %s" +msgstr "例外 - モジュールが %s 以下" + +#: ../../include/functions_reporting.php:2407 +#, php-format +msgid "Modules under or equal to %s" +msgstr "%s 以下のモジュール" + +#: ../../include/functions_reporting.php:2412 +#, php-format +msgid "Exception - Modules under %s" +msgstr "例外 - モジュールが %s 未満" + +#: ../../include/functions_reporting.php:2415 +#, php-format +msgid "Modules under %s" +msgstr "%s 未満のモジュール" + +#: ../../include/functions_reporting.php:2420 +#, php-format +msgid "Exception - Modules over %s" +msgstr "例外 - モジュールが %s より大きい" + +#: ../../include/functions_reporting.php:2423 +#, php-format +msgid "Modules over %s" +msgstr "%s を超えるモジュール" + +#: ../../include/functions_reporting.php:2428 +#, php-format +msgid "Exception - Equal to %s" +msgstr "例外 - %s と同じ" + +#: ../../include/functions_reporting.php:2431 +#, php-format +msgid "Equal to %s" +msgstr "%s と同じ" + +#: ../../include/functions_reporting.php:2436 +#, php-format +msgid "Exception - Not equal to %s" +msgstr "例外 - %s と異なる" + +#: ../../include/functions_reporting.php:2439 +#, php-format +msgid "Not equal to %s" +msgstr "%s と異なる" + +#: ../../include/functions_reporting.php:2443 +msgid "Exception - Modules at normal status" +msgstr "例外 - モジュールが正常状態" + +#: ../../include/functions_reporting.php:2444 +msgid "Modules at normal status" +msgstr "正常状態のモジュール" + +#: ../../include/functions_reporting.php:2448 +msgid "Exception - Modules at critical or warning status" +msgstr "例外 - モジュールが障害または警告状態" + +#: ../../include/functions_reporting.php:2449 +msgid "Modules at critical or warning status" +msgstr "障害または警告状態のモジュール" + +#: ../../include/functions_reporting.php:2667 +msgid "There are no Modules under those conditions." +msgstr "これらの条件のモジュールはありません。" + +#: ../../include/functions_reporting.php:2671 +#, php-format +msgid "There are no Modules over or equal to %s." +msgstr "%s 以上のモジュールがありません。" + +#: ../../include/functions_reporting.php:2675 +#, php-format +msgid "There are no Modules less or equal to %s." +msgstr "%s 以下のモジュールがありません。" + +#: ../../include/functions_reporting.php:2679 +#, php-format +msgid "There are no Modules less %s." +msgstr "%s 未満のモジュールがありません。" + +#: ../../include/functions_reporting.php:2683 +#, php-format +msgid "There are no Modules over %s." +msgstr "%s を超えるモジュールがありません。" + +#: ../../include/functions_reporting.php:2687 +#, php-format +msgid "There are no Modules equal to %s" +msgstr "%s と同じモジュールがありません。" + +#: ../../include/functions_reporting.php:2691 +#, php-format +msgid "There are no Modules not equal to %s" +msgstr "%s と異なるモジュールがありません。" + +#: ../../include/functions_reporting.php:2695 +msgid "There are no Modules normal status" +msgstr "正常状態のモジュールがありません" + +#: ../../include/functions_reporting.php:2699 +msgid "There are no Modules at critial or warning status" +msgstr "障害または警告状態のモジュールはありません" + +#: ../../include/functions_reporting.php:2858 +#: ../../enterprise/include/functions_reporting_csv.php:824 +msgid "Group Report" +msgstr "グループレポート" + +#: ../../include/functions_reporting.php:2929 +msgid "Event Report Agent" +msgstr "イベントレポートエージェント" + +#: ../../include/functions_reporting.php:3269 +msgid "Database Serialized" +msgstr "データベースの並び" + +#: ../../include/functions_reporting.php:3511 +msgid "Network interfaces report" +msgstr "ネットワークインタフェースレポート" + +#: ../../include/functions_reporting.php:3591 +msgid "" +"The group has no agents or none of the agents has any network interface" +msgstr "グループにエージェントが無いか、ネットワークインタフェースのあるエージェントがありません" + +#: ../../include/functions_reporting.php:3611 +msgid "bytes/s" +msgstr "バイト/秒" + +#: ../../include/functions_reporting.php:3723 +#: ../../enterprise/include/functions_reporting_csv.php:2194 +msgid "Alert Report Group" +msgstr "アラートレポートグループ" + +#: ../../include/functions_reporting.php:3896 +#: ../../enterprise/include/functions_reporting_csv.php:2192 +msgid "Alert Report Agent" +msgstr "アラートレポートエージェント" + +#: ../../include/functions_reporting.php:4054 +#: ../../enterprise/include/functions_reporting_csv.php:2190 +msgid "Alert Report Module" +msgstr "アラートレポートモジュール" + +#: ../../include/functions_reporting.php:4231 +msgid "SQL Graph Vertical Bars" +msgstr "SQL縦棒グラフ" + +#: ../../include/functions_reporting.php:4235 +msgid "SQL Graph Horizontal Bars" +msgstr "SQL横棒グラフ" + +#: ../../include/functions_reporting.php:4239 +msgid "SQL Graph Pie" +msgstr "SQL円グラフ" + +#: ../../include/functions_reporting.php:4315 +#: ../../enterprise/include/functions_reporting_csv.php:1208 +#: ../../enterprise/include/functions_reporting_csv.php:1226 +#: ../../enterprise/include/functions_reporting_csv.php:1228 +msgid "Monitor Report" +msgstr "モニタレポート" + +#: ../../include/functions_reporting.php:4445 +#: ../../enterprise/include/functions_reporting_csv.php:2252 +msgid "Netflow Area" +msgstr "Netflow塗りつぶしグラフ" + +#: ../../include/functions_reporting.php:4449 +#: ../../enterprise/include/functions_reporting_csv.php:2256 +msgid "Netflow Summary" +msgstr "Netflow 概要" + +#: ../../include/functions_reporting.php:4453 +#: ../../enterprise/include/functions_reporting_csv.php:2254 +msgid "Netflow Data" +msgstr "Netflowデータ" + +#: ../../include/functions_reporting.php:4457 +msgid "Unknown report" +msgstr "不明レポート" + +#: ../../include/functions_reporting.php:4534 +msgid "Prediction Date" +msgstr "予測日時" + +#: ../../include/functions_reporting.php:4593 +#: ../../enterprise/include/functions_reporting_csv.php:695 +msgid "Projection Graph" +msgstr "予想グラフ" + +#: ../../include/functions_reporting.php:4827 +#: ../../enterprise/include/functions_reporting_csv.php:1153 +#: ../../enterprise/include/functions_reporting_csv.php:1172 +#: ../../enterprise/include/functions_reporting_csv.php:1174 +#: ../../enterprise/include/functions_reporting_csv.php:1180 +#: ../../enterprise/include/functions_reporting_csv.php:1182 +msgid "AVG. Value" +msgstr "平均値" + +#: ../../include/functions_reporting.php:5103 +#: ../../enterprise/godmode/reporting/mysql_builder.php:165 +#: ../../enterprise/include/functions_reporting_csv.php:899 +msgid "SQL" +msgstr "SQL" + +#: ../../include/functions_reporting.php:5181 +msgid "" +"Illegal query: Due security restrictions, there are some tokens or words you " +"cannot use: *, delete, drop, alter, modify, password, pass, insert or update." +msgstr "" +"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, password, pass, insert, " +"update といったいくつかのトークンや単語は利用できません。" + +#: ../../include/functions_reporting.php:6348 +msgid "No Address" +msgstr "アドレスがありません" + +#: ../../include/functions_reporting.php:7170 +msgid "" +"The monitor have no data in this range of dates or monitor type is not " +"numeric" +msgstr "この日付範囲にデータが無いか、数値ではないタイプの監視項目です。" + +#: ../../include/functions_reporting.php:7188 +msgid "The monitor type is not numeric" +msgstr "監視タイプは数値ではありません。" + +#: ../../include/functions_reporting.php:7486 +#: ../../enterprise/include/functions_reporting_csv.php:1028 +msgid "Minimum" +msgstr "最小" + +#: ../../include/functions_reporting.php:7490 +msgid "Maximum" +msgstr "最大" + +#: ../../include/functions_reporting.php:7495 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:387 +msgid "Rate" +msgstr "率" + +#: ../../include/functions_reporting.php:7570 +msgid "Automatic combined graph" +msgstr "自動結合グラフ" + +#: ../../include/functions_reporting.php:8303 +msgid "Maximum of events shown" +msgstr "最大表示イベント" + +#: ../../include/functions_reporting.php:8883 +#: ../../include/functions_reporting.php:8907 +msgid "Server health" +msgstr "サーバの正常性" + +#: ../../include/functions_reporting.php:8883 +#, php-format +msgid "%d Downed servers" +msgstr "停止サーバ数 %d" + +#: ../../include/functions_reporting.php:8888 +#: ../../include/functions_reporting.php:8911 +msgid "Monitor health" +msgstr "モニタ項目の正常性" + +#: ../../include/functions_reporting.php:8888 +#, php-format +msgid "%d Not Normal monitors" +msgstr "非正常数 %d" + +#: ../../include/functions_reporting.php:8888 +#: ../../include/functions_reporting.php:8912 +msgid "of monitors up" +msgstr "のモニタ項目が正常です。" + +#: ../../include/functions_reporting.php:8893 +#: ../../include/functions_reporting.php:8915 +msgid "Module sanity" +msgstr "モジュール" + +#: ../../include/functions_reporting.php:8893 +#, php-format +msgid "%d Not inited monitors" +msgstr "未初期化数 %d" + +#: ../../include/functions_reporting.php:8893 +#: ../../include/functions_reporting.php:8916 +msgid "of total modules inited" +msgstr "のモジュールが初期化済みです。" + +#: ../../include/functions_reporting.php:8898 +#: ../../include/functions_reporting.php:9974 +#: ../../include/functions_reporting.php:9984 +#, php-format +msgid "%d Fired alerts" +msgstr "アラート発報数 %d" + +#: ../../include/functions_reporting.php:8898 +#: ../../include/functions_reporting.php:8920 +msgid "of defined alerts not fired" +msgstr "の定義済みアラートが未発生です。" + +#: ../../include/functions_reporting.php:8959 +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Defined alerts" +msgstr "定義済みアラート" + +#: ../../include/functions_reporting.php:8981 +msgid "Defined and fired alerts" +msgstr "定義済・発報アラート" + +#: ../../include/functions_reporting.php:9024 +#: ../../operation/events/sound_events.php:75 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:442 +msgid "Monitor critical" +msgstr "障害状態" + +#: ../../include/functions_reporting.php:9028 +#: ../../operation/events/sound_events.php:75 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:453 +msgid "Monitor warning" +msgstr "警告状態" + +#: ../../include/functions_reporting.php:9035 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:464 +msgid "Monitor normal" +msgstr "正常状態" + +#: ../../include/functions_reporting.php:9039 +#: ../../operation/events/sound_events.php:75 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:475 +msgid "Monitor unknown" +msgstr "不明状態" + +#: ../../include/functions_reporting.php:9046 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:486 +msgid "Monitor not init" +msgstr "未初期化状態" + +#: ../../include/functions_reporting.php:9066 +#: ../../include/functions_reporting.php:9072 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:509 +msgid "Monitors by status" +msgstr "状態ごとの監視項目" + +#: ../../include/functions_reporting.php:9160 +msgid "Defined users" +msgstr "定義済ユーザ" + +#: ../../include/functions_reporting.php:9831 +msgid "Agent without data" +msgstr "データの無いエージェント" + +#: ../../include/functions_reporting.php:9960 +#: ../../include/functions_reporting.php:9969 +#: ../../enterprise/operation/agentes/tag_view.php:1058 +#, php-format +msgid "%d Total modules" +msgstr "全モジュール数 %d" + +#: ../../include/functions_reporting.php:9961 +#: ../../enterprise/operation/agentes/tag_view.php:1059 +#, php-format +msgid "%d Modules in normal status" +msgstr "%d モジュールが正常状態" + +#: ../../include/functions_reporting.php:9962 +#: ../../enterprise/operation/agentes/tag_view.php:1060 +#, php-format +msgid "%d Modules in critical status" +msgstr "%d モジュールが障害状態" + +#: ../../include/functions_reporting.php:9963 +#: ../../enterprise/operation/agentes/tag_view.php:1061 +#, php-format +msgid "%d Modules in warning status" +msgstr "%d モジュールが警告状態" + +#: ../../include/functions_reporting.php:9964 +#: ../../enterprise/operation/agentes/tag_view.php:1062 +#, php-format +msgid "%d Modules in unknown status" +msgstr "%d モジュールが不明状態" + +#: ../../include/functions_reporting.php:9965 +#: ../../enterprise/operation/agentes/tag_view.php:1063 +#, php-format +msgid "%d Modules in not init status" +msgstr "%d モジュールが未初期化状態" + +#: ../../include/functions_reporting.php:9970 +#, php-format +msgid "%d Normal modules" +msgstr "正常モジュール数 %d" + +#: ../../include/functions_reporting.php:9971 +#, php-format +msgid "%d Critical modules" +msgstr "障害モジュール数 %d" + +#: ../../include/functions_reporting.php:9972 +#, php-format +msgid "%d Warning modules" +msgstr "警告モジュール数 %d" + +#: ../../include/functions_reporting.php:9973 +#, php-format +msgid "%d Unknown modules" +msgstr "不明モジュール数 %d" + +#: ../../include/functions_reporting.php:9978 +#, php-format +msgid "%d Total agents" +msgstr "全エージェント数 %d" + +#: ../../include/functions_reporting.php:9979 +#, php-format +msgid "%d Normal agents" +msgstr "正常エージェント数 %d" + +#: ../../include/functions_reporting.php:9980 +#, php-format +msgid "%d Critical agents" +msgstr "障害エージェント数 %d" + +#: ../../include/functions_reporting.php:9981 +#, php-format +msgid "%d Warning agents" +msgstr "警告エージェント数 %d" + +#: ../../include/functions_reporting.php:9982 +#, php-format +msgid "%d Unknown agents" +msgstr "不明エージェント数 %d" + +#: ../../include/functions_reporting.php:9983 +#, php-format +msgid "%d not init agents" +msgstr "%d 未初期化エージェント" + +#: ../../include/functions_reporting.php:11413 +msgid "Total running modules" +msgstr "全実行中モジュール数" + +#: ../../include/functions_reporting.php:11416 +#: ../../include/functions_reporting.php:11431 +#: ../../include/functions_reporting.php:11443 +#: ../../include/functions_reporting.php:11461 +#: ../../include/functions_reporting.php:11473 +#: ../../include/functions_reporting.php:11485 +#: ../../include/functions_reporting.php:11497 +msgid "Ratio" +msgstr "比率" + +#: ../../include/functions_reporting.php:11416 +#: ../../include/functions_reporting.php:11431 +#: ../../include/functions_reporting.php:11443 +#: ../../include/functions_reporting.php:11461 +#: ../../include/functions_reporting.php:11473 +#: ../../include/functions_reporting.php:11485 +#: ../../include/functions_reporting.php:11497 +msgid "Modules by second" +msgstr "秒ごとのモジュール" + +#: ../../include/functions_reporting.php:11428 +msgid "Local modules" +msgstr "ローカルモジュール数" + +#: ../../include/functions_reporting.php:11438 +msgid "Network modules" +msgstr "ネットワークモジュール" + +#: ../../include/functions_reporting.php:11457 +msgid "Plugin modules" +msgstr "プラグインモジュール" + +#: ../../include/functions_reporting.php:11469 +msgid "Prediction modules" +msgstr "予測モジュール" + +#: ../../include/functions_reporting.php:11481 +msgid "WMI modules" +msgstr "WMIモジュール" + +#: ../../include/functions_reporting.php:11493 +msgid "Web modules" +msgstr "Webモジュール" + +#: ../../include/functions_reporting.php:11536 +#: ../../enterprise/dashboard/widgets/tactical.php:42 +msgid "Server performance" +msgstr "サーバパフォーマンス" + +#: ../../include/functions_reporting.php:11655 +msgid "Weekly:" +msgstr "週次:" + +#: ../../include/functions_reporting.php:11697 +msgid "Monthly:" +msgstr "月次:" + +#: ../../include/functions_reporting.php:11698 +msgid "From day" +msgstr "開始日" + +#: ../../include/functions_reporting.php:11699 +msgid "To day" +msgstr "終了日" + #: ../../mobile/include/functions_web.php:81 -#: ../../mobile/include/ui.class.php:257 #, php-format msgid "Pandora FMS %s - Build %s" msgstr "Pandora FMS %s - ビルド %s" #: ../../mobile/include/functions_web.php:82 -#: ../../mobile/include/ui.class.php:258 -#: ../../enterprise/extensions/cron/functions.php:493 -#: ../../enterprise/extensions/cron/functions.php:599 +#: ../../mobile/include/ui.class.php:306 +#: ../../enterprise/include/functions_cron.php:1168 +#: ../../enterprise/include/functions_cron.php:1336 msgid "Generated at" msgstr "更新日時:" -#: ../../mobile/include/ui.class.php:87 ../../mobile/include/ui.class.php:168 -msgid "Pandora FMS mobile" -msgstr "Pandora FMS モバイル" +#: ../../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." +msgstr "このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な場合は、システム管理者に連絡してください。" -#: ../../mobile/include/ui.class.php:185 ../../mobile/operation/home.php:161 +#: ../../mobile/include/system.class.php:156 +#, php-format +msgid "" +"Please remember that any attempts to access this page will be recorded on " +"the %s System Database." +msgstr "このページへのアクセスは、%s システムデータベースに記録されます。" + +#: ../../mobile/include/ui.class.php:105 +#, php-format +msgid "%s mobile" +msgstr "%s モバイル" + +#: ../../mobile/include/ui.class.php:202 +#, php-format +msgid "%s : Mobile" +msgstr "%s : モバイル" + +#: ../../mobile/include/ui.class.php:223 ../../mobile/operation/home.php:162 msgid "Home" msgstr "ホーム" -#: ../../mobile/include/ui.class.php:630 +#: ../../mobile/include/ui.class.php:306 +#, php-format +msgid "%s %s - Build %s" +msgstr "%s %s - ビルド %s" + +#: ../../mobile/include/ui.class.php:752 msgid "Not found header." msgstr "ヘッダーがありません" -#: ../../mobile/include/ui.class.php:633 +#: ../../mobile/include/ui.class.php:754 msgid "Not found content." msgstr "コンテンツがありません" -#: ../../mobile/include/ui.class.php:636 +#: ../../mobile/include/ui.class.php:756 msgid "Not found footer." msgstr "フッターがありません" -#: ../../mobile/include/ui.class.php:639 +#: ../../mobile/include/ui.class.php:758 msgid "Incorrect form." msgstr "フォームが不正です" -#: ../../mobile/include/ui.class.php:642 +#: ../../mobile/include/ui.class.php:760 msgid "Incorrect grid." msgstr "グリッドが不正です" -#: ../../mobile/include/ui.class.php:645 +#: ../../mobile/include/ui.class.php:762 msgid "Incorrect collapsible." msgstr "折り返しが不正です" -#: ../../mobile/include/user.class.php:152 -#: ../../mobile/include/user.class.php:170 -#: ../../mobile/include/user.class.php:177 +#: ../../mobile/include/user.class.php:173 +#: ../../mobile/include/user.class.php:188 +#: ../../mobile/include/user.class.php:195 msgid "Double authentication failed" msgstr "二段階認証に失敗しました" -#: ../../mobile/include/user.class.php:153 +#: ../../mobile/include/user.class.php:174 msgid "Secret code not found" msgstr "シークレットコードがありません" -#: ../../mobile/include/user.class.php:154 +#: ../../mobile/include/user.class.php:174 msgid "Please contact the administrator to reset your double authentication" msgstr "二段階認証をリセットするには管理者へ連絡してください。" -#: ../../mobile/include/user.class.php:178 +#: ../../mobile/include/user.class.php:196 msgid "There was an error checking the code" msgstr "コードの確認でエラーが発生しました" -#: ../../mobile/include/user.class.php:211 +#: ../../mobile/include/user.class.php:232 msgid "Login Failed" msgstr "ログイン失敗" -#: ../../mobile/include/user.class.php:212 +#: ../../mobile/include/user.class.php:233 msgid "User not found in database or incorrect password." msgstr "ユーザが存在しないかパスワードが異なります。" -#: ../../mobile/include/user.class.php:220 +#: ../../mobile/include/user.class.php:240 msgid "Login out" msgstr "ログアウト" -#: ../../mobile/include/user.class.php:244 +#: ../../mobile/include/user.class.php:271 msgid "user" msgstr "ユーザ" -#: ../../mobile/include/user.class.php:251 +#: ../../mobile/include/user.class.php:278 msgid "password" msgstr "パスワード" -#: ../../mobile/include/user.class.php:301 -#: ../../mobile/include/user.class.php:302 +#: ../../mobile/include/user.class.php:344 +#: ../../mobile/include/user.class.php:345 msgid "Authenticator code" msgstr "認証コード" -#: ../../mobile/index.php:233 ../../mobile/operation/agent.php:88 -#: ../../mobile/operation/agents.php:167 ../../mobile/operation/alerts.php:142 -#: ../../mobile/operation/events.php:431 ../../mobile/operation/groups.php:54 -#: ../../mobile/operation/module_graph.php:271 -#: ../../mobile/operation/modules.php:174 -#: ../../mobile/operation/networkmap.php:79 -#: ../../mobile/operation/networkmaps.php:100 -#: ../../mobile/operation/tactical.php:72 -#: ../../mobile/operation/visualmap.php:66 -#: ../../mobile/operation/visualmaps.php:84 -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" -msgstr "" -"このページへのアクセスは認証されたユーザのみに制限されています。必要であればシステム管理者へ連絡してください。

    このページへのアクセスは、P" -"andoraシステムデータベースのセキュリティログに記録されますので注意してください。" - -#: ../../mobile/operation/agent.php:135 ../../mobile/operation/agents.php:183 -#: ../../mobile/operation/alerts.php:158 ../../mobile/operation/events.php:568 -#: ../../mobile/operation/groups.php:69 -#: ../../mobile/operation/module_graph.php:368 -#: ../../mobile/operation/module_graph.php:377 -#: ../../mobile/operation/modules.php:190 -#: ../../mobile/operation/networkmap.php:98 -#: ../../mobile/operation/networkmaps.php:116 -#: ../../mobile/operation/tactical.php:88 -#: ../../mobile/operation/visualmap.php:103 -#: ../../mobile/operation/visualmaps.php:100 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:261 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:350 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:422 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:530 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:614 -#: ../../enterprise/mobile/operation/dashboard.php:91 -#: ../../enterprise/mobile/operation/dashboard.php:225 +#: ../../mobile/operation/agent.php:154 ../../mobile/operation/agents.php:195 +#: ../../mobile/operation/alerts.php:181 ../../mobile/operation/events.php:614 +#: ../../mobile/operation/groups.php:82 +#: ../../mobile/operation/module_graph.php:367 +#: ../../mobile/operation/module_graph.php:379 +#: ../../mobile/operation/modules.php:217 +#: ../../mobile/operation/tactical.php:104 +#: ../../mobile/operation/visualmap.php:125 +#: ../../mobile/operation/visualmaps.php:114 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:274 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:440 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:550 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:632 +#: ../../enterprise/mobile/operation/dashboard.php:103 +#: ../../enterprise/mobile/operation/dashboard.php:252 msgid "Back" msgstr "戻る" -#: ../../mobile/operation/agent.php:139 -msgid "PandoraFMS: Agents" -msgstr "PandoraFMS: エージェント" - -#: ../../mobile/operation/agent.php:145 +#: ../../mobile/operation/agent.php:167 msgid "No agent found" msgstr "エージェントがありません" -#: ../../mobile/operation/agent.php:231 +#: ../../mobile/operation/agent.php:260 msgid "Modules by status" msgstr "状態ごとのモジュール" -#: ../../mobile/operation/agent.php:302 +#: ../../mobile/operation/agent.php:348 #, php-format msgid "Last %s Events" msgstr "最新の %s イベント" -#: ../../mobile/operation/agents.php:187 +#: ../../mobile/operation/agents.php:203 #, php-format msgid "Filter Agents by %s" msgstr "%s によるエージェントフィルタ" -#: ../../mobile/operation/agents.php:222 ../../mobile/operation/alerts.php:213 -#: ../../mobile/operation/events.php:659 -#: ../../mobile/operation/modules.php:261 -#: ../../mobile/operation/networkmaps.php:150 +#: ../../mobile/operation/agents.php:245 ../../mobile/operation/alerts.php:247 +#: ../../mobile/operation/events.php:717 ../../mobile/operation/modules.php:300 msgid "Apply Filter" msgstr "フィルタの適用" -#: ../../mobile/operation/agents.php:393 +#: ../../mobile/operation/agents.php:444 msgid "No agents" msgstr "エージェントがありません" -#: ../../mobile/operation/agents.php:483 ../../mobile/operation/alerts.php:306 -#: ../../mobile/operation/events.php:1070 -#: ../../mobile/operation/modules.php:786 -#: ../../mobile/operation/networkmaps.php:216 +#: ../../mobile/operation/agents.php:539 ../../mobile/operation/alerts.php:360 +#: ../../mobile/operation/events.php:1148 +#: ../../mobile/operation/modules.php:855 msgid "(Default)" msgstr "(デフォルト)" -#: ../../mobile/operation/agents.php:489 ../../mobile/operation/alerts.php:316 -#: ../../mobile/operation/events.php:1096 -#: ../../mobile/operation/modules.php:793 -#: ../../mobile/operation/networkmaps.php:222 +#: ../../mobile/operation/agents.php:545 ../../mobile/operation/alerts.php:373 +#: ../../mobile/operation/events.php:1181 +#: ../../mobile/operation/modules.php:861 #, php-format msgid "Group: %s" msgstr "グループ: %s" -#: ../../mobile/operation/agents.php:493 ../../mobile/operation/alerts.php:320 -#: ../../mobile/operation/events.php:1112 -#: ../../mobile/operation/modules.php:805 +#: ../../mobile/operation/agents.php:552 ../../mobile/operation/alerts.php:380 +#: ../../mobile/operation/events.php:1201 +#: ../../mobile/operation/modules.php:883 #, php-format msgid "Status: %s" msgstr "状態: %s" -#: ../../mobile/operation/agents.php:497 ../../mobile/operation/alerts.php:324 -#: ../../mobile/operation/modules.php:809 +#: ../../mobile/operation/agents.php:559 ../../mobile/operation/alerts.php:387 +#: ../../mobile/operation/modules.php:890 #, php-format msgid "Free Search: %s" msgstr "検索: %s" -#: ../../mobile/operation/alerts.php:36 -#: ../../operation/agentes/alerts_status.functions.php:72 +#: ../../mobile/operation/alerts.php:46 +#: ../../operation/agentes/alerts_status.functions.php:77 msgid "All (Enabled)" msgstr "全て(有効状態のもの)" -#: ../../mobile/operation/alerts.php:39 -#: ../../operation/agentes/alerts_status.functions.php:75 -#: ../../operation/snmpconsole/snmp_view.php:194 -#: ../../operation/snmpconsole/snmp_view.php:1038 +#: ../../mobile/operation/alerts.php:49 +#: ../../operation/agentes/alerts_status.functions.php:80 +#: ../../operation/snmpconsole/snmp_view.php:207 +#: ../../operation/snmpconsole/snmp_view.php:1182 msgid "Not fired" msgstr "未通知" -#: ../../mobile/operation/alerts.php:162 +#: ../../mobile/operation/alerts.php:189 #, php-format msgid "Filter Alerts by %s" msgstr "%sによる発報アラート" -#: ../../mobile/operation/alerts.php:272 +#: ../../mobile/operation/alerts.php:327 msgid "Last Fired" msgstr "直近の発報" -#: ../../mobile/operation/alerts.php:282 +#: ../../mobile/operation/alerts.php:338 msgid "No alerts" msgstr "アラートなし" -#: ../../mobile/operation/alerts.php:312 +#: ../../mobile/operation/alerts.php:366 #, php-format msgid "Standby: %s" msgstr "スタンバイ: %s" -#: ../../mobile/operation/events.php:382 ../../mobile/operation/events.php:383 -#: ../../mobile/operation/events.php:590 ../../mobile/operation/events.php:591 +#: ../../mobile/operation/events.php:405 ../../mobile/operation/events.php:414 +#: ../../mobile/operation/events.php:642 ../../mobile/operation/events.php:643 msgid "Preset Filters" msgstr "定義済フィルタ" -#: ../../mobile/operation/events.php:443 +#: ../../mobile/operation/events.php:485 msgid "ERROR: Event detail" msgstr "エラー: イベント詳細" -#: ../../mobile/operation/events.php:445 -msgid "Error connecting to DB pandora." -msgstr "pandora DB への接続エラー" +#: ../../mobile/operation/events.php:486 +msgid "Error connecting to DB." +msgstr "DB 接続エラー。" -#: ../../mobile/operation/events.php:458 +#: ../../mobile/operation/events.php:501 msgid "Event detail" msgstr "イベント詳細" -#: ../../mobile/operation/events.php:541 +#: ../../mobile/operation/events.php:584 msgid "Sucessful validate" msgstr "承諾しました" -#: ../../mobile/operation/events.php:543 +#: ../../mobile/operation/events.php:586 msgid "Fail validate" msgstr "承諾に失敗しました" -#: ../../mobile/operation/events.php:575 +#: ../../mobile/operation/events.php:624 #, php-format msgid "Filter Events by %s" msgstr "%s によるイベントのフィルタ" -#: ../../mobile/operation/events.php:1076 +#: ../../mobile/operation/events.php:1153 #, php-format msgid "Filter: %s" msgstr "フィルタ: %s" -#: ../../mobile/operation/events.php:1089 +#: ../../mobile/operation/events.php:1165 #, php-format msgid "Severity: %s" msgstr "重要度: %s" -#: ../../mobile/operation/events.php:1108 -#: ../../mobile/operation/networkmaps.php:229 +#: ../../mobile/operation/events.php:1194 #, php-format msgid "Type: %s" msgstr "タイプ: %s" -#: ../../mobile/operation/events.php:1116 +#: ../../mobile/operation/events.php:1208 #, php-format msgid "Free search: %s" msgstr "検索: %s" -#: ../../mobile/operation/events.php:1120 +#: ../../mobile/operation/events.php:1215 #, php-format msgid "Hours: %s" msgstr "時間: %s" -#: ../../mobile/operation/groups.php:141 ../../operation/tree.php:314 -#: ../../enterprise/dashboard/widgets/tree_view.php:226 -#: ../../enterprise/include/functions_reporting_csv.php:475 -msgid "Unknown modules" -msgstr "不明モジュール" +#: ../../mobile/operation/groups.php:164 +#: ../../operation/agentes/ver_agente.php:945 +#: ../../enterprise/dashboard/widgets/system_group_status.php:147 +#: ../../enterprise/operation/agentes/ver_agente.php:161 +msgid "Alerts fired" +msgstr "発生中アラート" -#: ../../mobile/operation/groups.php:145 ../../operation/tree.php:319 -#: ../../enterprise/dashboard/widgets/tree_view.php:231 -#: ../../enterprise/include/functions_reporting_csv.php:476 -msgid "Not init modules" -msgstr "未初期化モジュール" - -#: ../../mobile/operation/groups.php:149 ../../operation/tree.php:324 -#: ../../enterprise/dashboard/widgets/tree_view.php:236 -#: ../../enterprise/include/functions_reporting_csv.php:472 -msgid "Normal modules" -msgstr "正常モジュール" - -#: ../../mobile/operation/groups.php:153 ../../operation/tree.php:309 -#: ../../enterprise/dashboard/widgets/tree_view.php:221 -#: ../../enterprise/include/functions_reporting_csv.php:474 -msgid "Warning modules" -msgstr "警告モジュール" - -#: ../../mobile/operation/groups.php:157 ../../operation/tree.php:304 -#: ../../enterprise/dashboard/widgets/tree_view.php:216 -#: ../../enterprise/include/functions_reporting_csv.php:473 -msgid "Critical modules" -msgstr "障害モジュール" - -#: ../../mobile/operation/home.php:78 -#: ../../mobile/operation/networkmaps.php:112 -msgid "Networkmaps" -msgstr "ネットワークマップ" - -#: ../../mobile/operation/home.php:84 ../../mobile/operation/visualmaps.php:96 +#: ../../mobile/operation/home.php:84 ../../mobile/operation/visualmaps.php:109 msgid "Visual consoles" msgstr "ビジュアルコンソール" #: ../../mobile/operation/home.php:104 -#: ../../operation/agentes/pandora_networkmap.editor.php:174 -#: ../../operation/agentes/pandora_networkmap.php:526 -#: ../../operation/agentes/pandora_networkmap.view.php:744 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:76 -msgid "Networkmap" -msgstr "ネットワークマップ" - -#: ../../mobile/operation/home.php:110 msgid "Visualmap" msgstr "ビジュアルマップ" -#: ../../mobile/operation/home.php:168 ../../operation/search_results.php:64 +#: ../../mobile/operation/home.php:169 ../../operation/search_results.php:66 msgid "Global search" msgstr "グローバル検索" -#: ../../mobile/operation/module_graph.php:364 -#: ../../mobile/operation/module_graph.php:373 +#: ../../mobile/operation/module_graph.php:362 +#: ../../mobile/operation/module_graph.php:374 #, php-format -msgid "PandoraFMS: %s" -msgstr "PandoraFMS: %s" +msgid "%s: %s" +msgstr "%s: %s" -#: ../../mobile/operation/module_graph.php:387 +#: ../../mobile/operation/module_graph.php:406 #, php-format msgid "Options for %s : %s" msgstr "%s : %s のオプション" -#: ../../mobile/operation/module_graph.php:394 +#: ../../mobile/operation/module_graph.php:413 msgid "Show Alerts" msgstr "アラート表示" -#: ../../mobile/operation/module_graph.php:402 +#: ../../mobile/operation/module_graph.php:421 msgid "Show Events" msgstr "イベント表示" -#: ../../mobile/operation/module_graph.php:410 -#: ../../operation/agentes/stat_win.php:414 +#: ../../mobile/operation/module_graph.php:429 +#: ../../operation/agentes/stat_win.php:353 msgid "Time compare (Separated)" msgstr "時間比較 (分割)" -#: ../../mobile/operation/module_graph.php:426 -#: ../../operation/agentes/stat_win.php:420 +#: ../../mobile/operation/module_graph.php:445 +#: ../../operation/agentes/stat_win.php:359 msgid "Show unknown graph" msgstr "不明グラフ表示" -#: ../../mobile/operation/module_graph.php:434 -msgid "Avg Only" -msgstr "平均のみ" - -#: ../../mobile/operation/module_graph.php:439 +#: ../../mobile/operation/module_graph.php:450 msgid "Time range (hours)" msgstr "時間範囲 (時間)" -#: ../../mobile/operation/module_graph.php:452 -#: ../../operation/agentes/exportdata.php:310 -#: ../../operation/agentes/graphs.php:162 -#: ../../operation/agentes/interface_traffic_graph_win.php:249 -#: ../../operation/agentes/stat_win.php:339 +#: ../../mobile/operation/module_graph.php:462 +#: ../../operation/agentes/exportdata.php:317 +#: ../../operation/agentes/graphs.php:207 +#: ../../operation/agentes/interface_traffic_graph_win.php:197 +#: ../../operation/agentes/stat_win.php:257 msgid "Begin date" msgstr "開始日時" -#: ../../mobile/operation/module_graph.php:459 +#: ../../mobile/operation/module_graph.php:469 msgid "Update graph" msgstr "グラフ更新" -#: ../../mobile/operation/module_graph.php:468 +#: ../../mobile/operation/module_graph.php:479 msgid "Error get the graph" msgstr "グラフ生成エラー" -#: ../../mobile/operation/modules.php:194 +#: ../../mobile/operation/modules.php:225 #, php-format msgid "Filter Modules by %s" msgstr "%s によるモジュールのフィルタ" -#: ../../mobile/operation/modules.php:543 +#: ../../mobile/operation/modules.php:632 msgid "Interval." msgstr "間隔" -#: ../../mobile/operation/modules.php:549 +#: ../../mobile/operation/modules.php:634 msgid "Last update." msgstr "最新の更新" -#: ../../mobile/operation/modules.php:801 +#: ../../mobile/operation/modules.php:876 #, php-format msgid "Module group: %s" msgstr "モジュールグループ: %s" -#: ../../mobile/operation/modules.php:814 +#: ../../mobile/operation/modules.php:898 #, php-format msgid "Tag: %s" msgstr "タグ: %s" -#: ../../mobile/operation/networkmap.php:164 -#: ../../mobile/operation/networkmaps.php:202 -msgid "No networkmaps" -msgstr "ネットワークマップがありません" - -#: ../../mobile/operation/networkmap.php:222 -#: ../../mobile/operation/networkmap.php:234 -#: ../../enterprise/extensions/vmware/vmware_view.php:1439 -#: ../../enterprise/godmode/reporting/cluster_view.php:485 -#: ../../enterprise/operation/policies/networkmap.policies.php:70 -#: ../../enterprise/operation/policies/networkmap.policies.php:119 -#: ../../enterprise/operation/policies/networkmap.policies.php:133 -msgid "Map could not be generated" -msgstr "マップを生成できません。" - -#: ../../mobile/operation/networkmaps.php:120 -#, php-format -msgid "Filter Networkmaps by %s" -msgstr "ネットワークマップフィルタ: %s" - -#: ../../mobile/operation/tactical.php:193 +#: ../../mobile/operation/tactical.php:216 msgid "Last activity" msgstr "最近の操作" -#: ../../mobile/operation/visualmaps.php:146 +#: ../../mobile/operation/visualmaps.php:169 msgid "No maps defined" msgstr "定義済マップがありません" -#: ../../operation/agentes/agent_fields.php:38 -#: ../../operation/agentes/status_monitor.php:548 -#: ../../enterprise/operation/agentes/tag_view.php:318 +#: ../../operation/agentes/agent_fields.php:37 +#: ../../operation/agentes/status_monitor.php:724 +#: ../../enterprise/operation/agentes/tag_view.php:421 msgid "Agent custom fields" msgstr "エージェントカスタムフィールド" -#: ../../operation/agentes/agent_fields.php:48 -#: ../../operation/agentes/custom_fields.php:87 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1183 +#: ../../operation/agentes/agent_fields.php:47 +#: ../../operation/agentes/custom_fields.php:90 msgid "empty" msgstr "空" -#: ../../operation/agentes/alerts_status.functions.php:32 -#: ../../enterprise/godmode/alerts/alert_events_list.php:343 +#: ../../operation/agentes/alerts_status.functions.php:34 +#: ../../enterprise/godmode/alerts/alert_events_list.php:394 msgid "Alert(s) validated" msgstr "アラートを承諾しました。" -#: ../../operation/agentes/alerts_status.functions.php:33 +#: ../../operation/agentes/alerts_status.functions.php:35 msgid "Error processing alert(s)" msgstr "アラート処理エラー" -#: ../../operation/agentes/alerts_status.functions.php:86 -#: ../../operation/agentes/status_monitor.php:339 -#: ../../operation/agentes/status_monitor.php:342 -#: ../../enterprise/operation/agentes/tag_view.php:144 -#: ../../enterprise/operation/agentes/tag_view.php:147 +#: ../../operation/agentes/alerts_status.functions.php:91 +#: ../../operation/agentes/status_monitor.php:447 +#: ../../enterprise/operation/agentes/tag_view.php:197 +#: ../../enterprise/operation/agentes/tag_view.php:199 msgid "Only it is show tags in use." msgstr "利用中のタグのみ表示します。" -#: ../../operation/agentes/alerts_status.functions.php:91 -#: ../../operation/agentes/status_monitor.php:347 -#: ../../enterprise/operation/agentes/tag_view.php:150 +#: ../../operation/agentes/alerts_status.functions.php:96 +#: ../../operation/agentes/status_monitor.php:452 +#: ../../enterprise/operation/agentes/tag_view.php:203 msgid "No tags" msgstr "タグ無し" -#: ../../operation/agentes/alerts_status.functions.php:97 -#: ../../operation/agentes/datos_agente.php:202 +#: ../../operation/agentes/alerts_status.functions.php:101 +#: ../../operation/agentes/datos_agente.php:211 msgid "Free text for search" msgstr "検索文字列" -#: ../../operation/agentes/alerts_status.functions.php:99 +#: ../../operation/agentes/alerts_status.functions.php:102 msgid "Filter by agent name, module name, template name or action name" msgstr "エージェント名、モジュール名、テンプレート名および、アクション名でのフィルタ" -#: ../../operation/agentes/alerts_status.functions.php:109 +#: ../../operation/agentes/alerts_status.functions.php:113 msgid "No actions" msgstr "アクションがありません" -#: ../../operation/agentes/alerts_status.php:141 -msgid "Full list of alerts" -msgstr "アラートのフィルタ一覧" - -#: ../../operation/agentes/alerts_status.php:168 -#: ../../enterprise/meta/general/main_header.php:103 +#: ../../operation/agentes/alerts_status.php:179 +#: ../../enterprise/meta/general/main_header.php:115 msgid "Alerts view" msgstr "アラート表示" -#: ../../operation/agentes/alerts_status.php:177 +#: ../../operation/agentes/alerts_status.php:187 msgid "Insufficient permissions to validate alerts" msgstr "アラートを承諾するのに必要な権限がありません。" -#: ../../operation/agentes/alerts_status.php:632 +#: ../../operation/agentes/alerts_status.php:688 msgid "No alerts found" msgstr "該当するアラートがありません。" -#: ../../operation/agentes/custom_fields.php:52 +#: ../../operation/agentes/alerts_status.php:698 +msgid "Full list of alerts" +msgstr "アラートのフィルタ一覧" + +#: ../../operation/agentes/custom_fields.php:59 msgid "No fields defined" msgstr "フィールドが定義されていません。" -#: ../../operation/agentes/datos_agente.php:165 +#: ../../operation/agentes/datos_agente.php:173 msgid "Received data from" msgstr "収集データ:" -#: ../../operation/agentes/datos_agente.php:172 +#: ../../operation/agentes/datos_agente.php:180 msgid "Main database" msgstr "メインデータベース" -#: ../../operation/agentes/datos_agente.php:172 -#: ../../enterprise/godmode/menu.php:102 -#: ../../enterprise/include/functions_setup.php:33 -#: ../../enterprise/include/functions_setup.php:63 +#: ../../operation/agentes/datos_agente.php:180 +#: ../../enterprise/godmode/menu.php:127 +#: ../../enterprise/include/functions_setup.php:48 +#: ../../enterprise/include/functions_setup.php:89 msgid "History database" msgstr "ヒストリデータベース" -#: ../../operation/agentes/datos_agente.php:173 +#: ../../operation/agentes/datos_agente.php:181 msgid "" "Switch between the main database and the history database to retrieve module " "data" @@ -26968,1666 +32131,1946 @@ msgstr "エージェントIDがありません" msgid "Missing ehorus agent id" msgstr "ehorus エージェントIDがありません" -#: ../../operation/agentes/ehorus.php:89 -#: ../../operation/agentes/ehorus.php:126 +#: ../../operation/agentes/ehorus.php:97 ../../operation/agentes/ehorus.php:134 msgid "There was an error retrieving an authorization token" msgstr "認証トークン取得中にエラーが発生しました" -#: ../../operation/agentes/ehorus.php:102 -#: ../../operation/agentes/ehorus.php:139 -#: ../../operation/agentes/ehorus.php:175 +#: ../../operation/agentes/ehorus.php:109 +#: ../../operation/agentes/ehorus.php:146 +#: ../../operation/agentes/ehorus.php:182 msgid "There was an error processing the response" msgstr "応答処理エラーが発生しました" -#: ../../operation/agentes/ehorus.php:162 +#: ../../operation/agentes/ehorus.php:170 msgid "There was an error retrieving the agent data" msgstr "エージェントデータ取得エラーが発生しました" -#: ../../operation/agentes/ehorus.php:180 +#: ../../operation/agentes/ehorus.php:187 msgid "Remote management of this agent with eHorus" msgstr "このエージェントの eHorus でのリモート管理" -#: ../../operation/agentes/ehorus.php:182 +#: ../../operation/agentes/ehorus.php:189 msgid "Launch" msgstr "起動" -#: ../../operation/agentes/ehorus.php:188 +#: ../../operation/agentes/ehorus.php:195 msgid "The connection was lost and the authorization token was expired" msgstr "接続が切れました、認証トークンが期限切れです" -#: ../../operation/agentes/ehorus.php:190 +#: ../../operation/agentes/ehorus.php:195 msgid "Reload the page to request a new authorization token" msgstr "新たな認証トークンの取得にはページを再読み込みしてください" -#: ../../operation/agentes/estado_agente.php:184 +#: ../../operation/agentes/estado_agente.php:199 msgid "Sucessfully deleted agent" msgstr "エージェントを削除しました" -#: ../../operation/agentes/estado_agente.php:186 +#: ../../operation/agentes/estado_agente.php:201 msgid "There was an error message deleting the agent" msgstr "エージェント削除においてエラーが発生しました" -#: ../../operation/agentes/estado_agente.php:226 +#: ../../operation/agentes/estado_agente.php:242 msgid "Search in custom fields" msgstr "カスタムフィールド検索" -#: ../../operation/agentes/estado_agente.php:656 -#: ../../enterprise/operation/agentes/tag_view.php:505 +#: ../../operation/agentes/estado_agente.php:817 +#: ../../enterprise/operation/agentes/tag_view.php:619 msgid "Remote config" msgstr "リモート設定" -#: ../../operation/agentes/estado_generalagente.php:42 +#: ../../operation/agentes/estado_generalagente.php:58 msgid "The agent has not assigned server. Maybe agent does not run fine." msgstr "エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可能性があります。" -#: ../../operation/agentes/estado_generalagente.php:148 -msgid "" -"Agent statuses are re-calculated by the server, they are not shown in real " -"time." -msgstr "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されません。" +#: ../../operation/agentes/estado_generalagente.php:238 +msgid "Remote configuration enabled" +msgstr "リモート設定有効" -#: ../../operation/agentes/estado_generalagente.php:225 +#: ../../operation/agentes/estado_generalagente.php:280 msgid "Agent contact" msgstr "エージェント接続" -#: ../../operation/agentes/estado_generalagente.php:247 -msgid "Next contact" -msgstr "次回接続" - -#: ../../operation/agentes/estado_generalagente.php:270 -msgid "Agent info" -msgstr "エージェント情報" - -#: ../../operation/agentes/estado_generalagente.php:342 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1128 -msgid "There is no GIS data." -msgstr "GIS データがありません。" - -#: ../../operation/agentes/estado_generalagente.php:417 -msgid "Active incident on this agent" -msgstr "このエージェントにおけるアクティブインシデント" - -#: ../../operation/agentes/estado_generalagente.php:426 -#: ../../enterprise/dashboard/widget.php:63 -#: ../../enterprise/include/functions_reporting_csv.php:1145 -#: ../../enterprise/include/functions_reporting_csv.php:1258 -#: ../../enterprise/include/functions_reporting_csv.php:1405 -#: ../../enterprise/include/functions_reporting_csv.php:1470 -msgid "Title" -msgstr "タイトル" - -#: ../../operation/agentes/estado_generalagente.php:568 -msgid "Events info (24hr.)" -msgstr "イベント情報 (24時間)" - -#: ../../operation/agentes/estado_generalagente.php:582 -#: ../../operation/agentes/pandora_networkmap.view.php:389 -msgid "Last contact: " -msgstr "最新の接続: " - -#: ../../operation/agentes/estado_generalagente.php:650 +#: ../../operation/agentes/estado_generalagente.php:283 msgid "Refresh data" msgstr "最新情報に更新" -#: ../../operation/agentes/estado_generalagente.php:652 +#: ../../operation/agentes/estado_generalagente.php:285 msgid "Force remote checks" msgstr "リモートチェックを強制する" -#: ../../operation/agentes/estado_monitores.php:35 +#: ../../operation/agentes/estado_generalagente.php:312 +msgid "Next contact" +msgstr "次回接続" + +#: ../../operation/agentes/estado_generalagente.php:392 +msgid "Agent info" +msgstr "エージェント情報" + +#: ../../operation/agentes/estado_generalagente.php:405 +msgid "There is no GIS data." +msgstr "GIS データがありません。" + +#: ../../operation/agentes/estado_generalagente.php:561 +msgid "Active incident on this agent" +msgstr "このエージェントにおけるアクティブインシデント" + +#: ../../operation/agentes/estado_generalagente.php:717 +msgid "Events info (24hr.)" +msgstr "イベント情報 (24時間)" + +#: ../../operation/agentes/estado_generalagente.php:731 +#: ../../operation/agentes/pandora_networkmap.view.php:418 +msgid "Last contact: " +msgstr "最新の接続: " + +#: ../../operation/agentes/estado_generalagente.php:857 +msgid "Interface information (SNMP)" +msgstr "インタフェース情報 (SNMP)" + +#: ../../operation/agentes/estado_monitores.php:51 msgid "Tag's information" msgstr "タグ情報" -#: ../../operation/agentes/estado_monitores.php:81 +#: ../../operation/agentes/estado_monitores.php:102 msgid "Relationship information" msgstr "関係情報" -#: ../../operation/agentes/estado_monitores.php:128 +#: ../../operation/agentes/estado_monitores.php:172 +msgid "List of modules" +msgstr "モジュールの一覧" + +#: ../../operation/agentes/estado_monitores.php:173 msgid "" "To see the list of modules paginated, enable this option in the Styles " "Configuration." msgstr "モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化します。" -#: ../../operation/agentes/estado_monitores.php:129 -msgid "Full list of monitors" -msgstr "モニタ項目一覧" - -#: ../../operation/agentes/estado_monitores.php:154 -msgid "List of modules" -msgstr "モジュールの一覧" - -#: ../../operation/agentes/estado_monitores.php:380 -#: ../../operation/agentes/status_monitor.php:1550 -#: ../../operation/tree.php:379 -#: ../../enterprise/dashboard/widgets/tree_view.php:293 -#: ../../enterprise/godmode/reporting/cluster_view.php:661 +#: ../../operation/agentes/estado_monitores.php:412 +#: ../../operation/agentes/status_monitor.php:1808 ../../operation/tree.php:441 +#: ../../enterprise/dashboard/widgets/tree_view.php:329 +#: ../../enterprise/godmode/reporting/cluster_view.php:639 msgid "Module: " msgstr "モジュール: " -#: ../../operation/agentes/estado_monitores.php:458 +#: ../../operation/agentes/estado_monitores.php:509 msgid "Status:" msgstr "状態:" -#: ../../operation/agentes/estado_monitores.php:464 +#: ../../operation/agentes/estado_monitores.php:515 msgid "Not Normal" msgstr "非正常" -#: ../../operation/agentes/estado_monitores.php:472 +#: ../../operation/agentes/estado_monitores.php:530 msgid "Free text for search (*):" msgstr "検索文字列 (*):" -#: ../../operation/agentes/estado_monitores.php:473 +#: ../../operation/agentes/estado_monitores.php:531 msgid "Search by module name, list matches." msgstr "モジュール名による検索にマッチした一覧を表示" -#: ../../operation/agentes/estado_monitores.php:488 +#: ../../operation/agentes/estado_monitores.php:593 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1584 msgid "Reset" msgstr "リセット" -#: ../../operation/agentes/exportdata.csv.php:68 -#: ../../operation/agentes/exportdata.excel.php:67 -#: ../../operation/agentes/exportdata.php:82 +#: ../../operation/agentes/exportdata.csv.php:66 +#: ../../operation/agentes/exportdata.excel.php:66 +#: ../../operation/agentes/exportdata.php:71 msgid "Invalid time specified" msgstr "時間が正しくありません。" -#: ../../operation/agentes/exportdata.csv.php:182 -#: ../../operation/agentes/exportdata.excel.php:165 -#: ../../operation/agentes/exportdata.php:218 +#: ../../operation/agentes/exportdata.csv.php:178 +#: ../../operation/agentes/exportdata.excel.php:161 +#: ../../operation/agentes/exportdata.php:209 msgid "No modules specified" msgstr "モジュールが指定されていません。" -#: ../../operation/agentes/exportdata.php:36 ../../operation/menu.php:436 +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:514 msgid "Export data" msgstr "データのエクスポート" -#: ../../operation/agentes/exportdata.php:244 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:154 +#: ../../operation/agentes/exportdata.php:247 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:145 msgid "Source agent" msgstr "対象エージェント" -#: ../../operation/agentes/exportdata.php:276 +#: ../../operation/agentes/exportdata.php:282 msgid "No modules of type string. You can not calculate their average" msgstr "文字列タイプのモジュールは対象外です。また、平均の計算はできません。" -#: ../../operation/agentes/exportdata.php:319 -#: ../../enterprise/include/functions_netflow_pdf.php:163 -#: ../../enterprise/operation/log/log_viewer.php:239 +#: ../../operation/agentes/exportdata.php:338 +#: ../../operation/netflow/nf_live_view.php:287 +#: ../../operation/network/network_report.php:126 +#: ../../operation/network/network_usage_map.php:99 +#: ../../enterprise/operation/log/log_viewer.php:524 msgid "End date" msgstr "終了日時" -#: ../../operation/agentes/exportdata.php:327 +#: ../../operation/agentes/exportdata.php:358 msgid "Export type" msgstr "エクスポート形式" -#: ../../operation/agentes/exportdata.php:332 +#: ../../operation/agentes/exportdata.php:363 msgid "MS Excel" msgstr "MS Excelファイル" -#: ../../operation/agentes/exportdata.php:333 +#: ../../operation/agentes/exportdata.php:364 msgid "Average per hour/day" msgstr "平均の表示" -#: ../../operation/agentes/gis_view.php:91 -msgid "Last position in " -msgstr "最新の更新日時と位置: " - -#: ../../operation/agentes/gis_view.php:98 +#: ../../operation/agentes/gis_view.php:93 msgid "Period to show data as path" msgstr "データ表示更新間隔" -#: ../../operation/agentes/gis_view.php:102 +#: ../../operation/agentes/gis_view.php:97 msgid "Refresh path" msgstr "更新" -#: ../../operation/agentes/gis_view.php:105 -msgid "Positional data from the last" -msgstr "位置データ参照期間:" - -#: ../../operation/agentes/gis_view.php:156 +#: ../../operation/agentes/gis_view.php:155 msgid "This agent doesn't have any GIS data." msgstr "このエージェントには、GIS データがありません。" -#: ../../operation/agentes/gis_view.php:192 +#: ../../operation/agentes/gis_view.php:167 +msgid "Positional data from the last" +msgstr "位置データ参照期間:" + +#: ../../operation/agentes/gis_view.php:206 #, php-format msgid "%s Km" msgstr "%s Km" -#: ../../operation/agentes/gis_view.php:204 +#: ../../operation/agentes/gis_view.php:220 msgid "Distance" msgstr "距離" -#: ../../operation/agentes/gis_view.php:205 +#: ../../operation/agentes/gis_view.php:221 msgid "# of Packages" msgstr "パッケージ数" -#: ../../operation/agentes/gis_view.php:206 -#: ../../operation/gis_maps/ajax.php:222 +#: ../../operation/agentes/gis_view.php:222 +#: ../../operation/gis_maps/ajax.php:242 msgid "Manual placement" msgstr "手動位置設定" -#: ../../operation/agentes/gis_view.php:209 -msgid "positional data" -msgstr "位置データ" - -#: ../../operation/agentes/graphs.php:112 +#: ../../operation/agentes/graphs.php:143 msgid "Other modules" msgstr "他のモジュール" -#: ../../operation/agentes/graphs.php:117 +#: ../../operation/agentes/graphs.php:150 msgid "Modules network no proc" msgstr "proc以外のネットワークモジュール" -#: ../../operation/agentes/graphs.php:122 +#: ../../operation/agentes/graphs.php:157 msgid "Modules boolean" msgstr "ブーリアン(二値)モジュール" -#: ../../operation/agentes/graphs.php:166 -#: ../../operation/agentes/interface_traffic_graph_win.php:262 -#: ../../operation/agentes/stat_win.php:363 -#: ../../operation/reporting/graph_viewer.php:219 +#: ../../operation/agentes/graphs.php:211 +#: ../../operation/agentes/interface_traffic_graph_win.php:210 +#: ../../operation/agentes/stat_win.php:284 +#: ../../operation/reporting/graph_viewer.php:252 msgid "Time range" msgstr "時間範囲" -#: ../../operation/agentes/graphs.php:170 -#: ../../operation/agentes/stat_win.php:370 +#: ../../operation/agentes/graphs.php:215 +#: ../../operation/agentes/stat_win.php:298 msgid "Show events" msgstr "イベント表示" -#: ../../operation/agentes/graphs.php:172 -#: ../../operation/agentes/stat_win.php:387 +#: ../../operation/agentes/graphs.php:217 +#: ../../operation/agentes/stat_win.php:324 msgid "Show alerts" msgstr "アラート表示" -#: ../../operation/agentes/graphs.php:173 +#: ../../operation/agentes/graphs.php:217 msgid "the combined graph does not show the alerts into this graph" msgstr "組み合わせグラフは、グラフ内にアラートを表示しません" -#: ../../operation/agentes/graphs.php:175 +#: ../../operation/agentes/graphs.php:219 msgid "Show as one combined graph" msgstr "一つの組み合わせグラフとして表示" -#: ../../operation/agentes/graphs.php:176 +#: ../../operation/agentes/graphs.php:221 msgid "several graphs for each module" msgstr "モジュールごとの複数のグラフ" -#: ../../operation/agentes/graphs.php:176 +#: ../../operation/agentes/graphs.php:222 msgid "One combined graph" -msgstr "" +msgstr "一つの組み合わせグラフ" -#: ../../operation/agentes/graphs.php:181 -#: ../../operation/agentes/graphs.php:337 +#: ../../operation/agentes/graphs.php:230 +#: ../../operation/agentes/graphs.php:406 msgid "Area stack" msgstr "塗りつぶし積み重ね" -#: ../../operation/agentes/graphs.php:181 -#: ../../operation/agentes/graphs.php:345 +#: ../../operation/agentes/graphs.php:232 +#: ../../operation/agentes/graphs.php:414 msgid "Line stack" msgstr "線の積み重ね" -#: ../../operation/agentes/graphs.php:192 +#: ../../operation/agentes/graphs.php:249 msgid "Save as custom graph" msgstr "カスタムグラフとして保存" -#: ../../operation/agentes/graphs.php:198 +#: ../../operation/agentes/graphs.php:262 msgid "Filter graphs" msgstr "グラフフィルタ" -#: ../../operation/agentes/graphs.php:245 +#: ../../operation/agentes/graphs.php:289 msgid "There was an error loading the graph" msgstr "グラフロード中にエラーが発生しました" -#: ../../operation/agentes/graphs.php:253 -#: ../../operation/agentes/graphs.php:256 +#: ../../operation/agentes/graphs.php:297 +#: ../../operation/agentes/graphs.php:301 msgid "Name custom graph" msgstr "カスタムグラフ名" -#: ../../operation/agentes/graphs.php:278 +#: ../../operation/agentes/graphs.php:347 msgid "Save custom graph" msgstr "カスタムグラフの保存" -#: ../../operation/agentes/graphs.php:299 +#: ../../operation/agentes/graphs.php:368 msgid "Custom graph create from the tab graphs in the agent." msgstr "エージェントのグラフタブからカスタムグラフを作成" -#: ../../operation/agentes/group_view.php:117 +#: ../../operation/agentes/group_view.php:151 msgid "Summary of the status groups" msgstr "グループの状態概要" -#: ../../operation/agentes/interface_traffic_graph_win.php:48 -#: ../../operation/agentes/stat_win.php:44 -msgid "There was a problem connecting with the node" -msgstr "ノード接続で問題が発生しました" +#: ../../operation/agentes/group_view.php:276 +#: ../../enterprise/meta/monitoring/group_view.php:305 +#, php-format +msgid "" +"This %s installation are using the secondary groups feature. For this " +"reason, an agent can be counted several times." +msgstr "この %s インストールはセカンダリグループ機能を使用しています。 このため、エージェントは数回カウントされる可能性があります。" -#: ../../operation/agentes/interface_traffic_graph_win.php:66 +#: ../../operation/agentes/interface_traffic_graph_win.php:60 msgid "In" msgstr "入力" -#: ../../operation/agentes/interface_traffic_graph_win.php:67 +#: ../../operation/agentes/interface_traffic_graph_win.php:61 msgid "Out" msgstr "出力" -#: ../../operation/agentes/interface_traffic_graph_win.php:224 -#: ../../operation/agentes/stat_win.php:293 -msgid "Pandora FMS Graph configuration menu" -msgstr "Pandora FMS グラフ設定メニュー" +#: ../../operation/agentes/interface_traffic_graph_win.php:77 +#, php-format +msgid "%s Interface Graph" +msgstr "%s インタフェースグラフ" -#: ../../operation/agentes/interface_traffic_graph_win.php:226 -#: ../../operation/agentes/stat_win.php:295 -msgid "Please, make your changes and apply with the Reload button" -msgstr "変更後、再読み込みボタンを押してください。" - -#: ../../operation/agentes/interface_traffic_graph_win.php:243 -#: ../../operation/agentes/stat_win.php:322 +#: ../../operation/agentes/interface_traffic_graph_win.php:191 +#: ../../operation/agentes/stat_win.php:243 msgid "Refresh time" msgstr "更新時間" -#: ../../operation/agentes/interface_traffic_graph_win.php:256 -#: ../../operation/agentes/stat_win.php:345 +#: ../../operation/agentes/interface_traffic_graph_win.php:204 +#: ../../operation/agentes/stat_win.php:263 msgid "Begin time" msgstr "開始時間" -#: ../../operation/agentes/interface_traffic_graph_win.php:268 -#: ../../operation/agentes/stat_win.php:402 +#: ../../operation/agentes/interface_traffic_graph_win.php:216 +#: ../../operation/agentes/stat_win.php:341 msgid "Show percentil" msgstr "パーセント表示" -#: ../../operation/agentes/interface_traffic_graph_win.php:286 -#: ../../operation/agentes/stat_win.php:351 +#: ../../operation/agentes/interface_traffic_graph_win.php:233 msgid "Zoom factor" msgstr "ズーム倍率" -#: ../../operation/agentes/interface_traffic_graph_win.php:313 -#: ../../operation/agentes/stat_win.php:453 +#: ../../operation/agentes/interface_traffic_graph_win.php:240 +msgid "Full" +msgstr "" + +#: ../../operation/agentes/interface_traffic_graph_win.php:247 +#: ../../operation/agentes/stat_win.php:380 msgid "Reload" msgstr "再読み込み" -#: ../../operation/agentes/networkmap.dinamic.php:93 -#: ../../operation/agentes/pandora_networkmap.view.php:774 -#: ../../operation/snmpconsole/snmp_browser.php:108 -#: ../../operation/snmpconsole/snmp_statistics.php:45 -#: ../../operation/snmpconsole/snmp_view.php:86 +#: ../../operation/agentes/interface_traffic_graph_win.php:266 +#: ../../operation/agentes/stat_win.php:404 +msgid "Graph configuration menu" +msgstr "グラフ設定メニュー" + +#: ../../operation/agentes/networkmap.dinamic.php:102 +#: ../../operation/agentes/pandora_networkmap.view.php:827 +#: ../../operation/snmpconsole/snmp_browser.php:177 +#: ../../operation/snmpconsole/snmp_statistics.php:41 +#: ../../operation/snmpconsole/snmp_view.php:85 msgid "Normal screen" msgstr "通常画面" -#: ../../operation/agentes/networkmap.dinamic.php:109 -#: ../../operation/agentes/pandora_networkmap.view.php:790 +#: ../../operation/agentes/networkmap.dinamic.php:120 +#: ../../operation/agentes/pandora_networkmap.view.php:845 msgid "List of networkmap" msgstr "ネットワークマップ一覧" -#: ../../operation/agentes/pandora_networkmap.editor.php:203 -#: ../../operation/agentes/pandora_networkmap.view.php:746 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:80 +#: ../../operation/agentes/pandora_networkmap.editor.php:201 +#: ../../operation/agentes/pandora_networkmap.php:649 +#: ../../operation/agentes/pandora_networkmap.view.php:792 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:77 +msgid "Networkmap" +msgstr "ネットワークマップ" + +#: ../../operation/agentes/pandora_networkmap.editor.php:241 +#: ../../operation/agentes/pandora_networkmap.view.php:798 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:85 msgid "Not found networkmap." msgstr "ネットワークマップがありません。" -#: ../../operation/agentes/pandora_networkmap.editor.php:228 -#: ../../enterprise/extensions/vmware/vmware_view.php:1424 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:105 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:75 +#: ../../operation/agentes/pandora_networkmap.editor.php:281 +#: ../../enterprise/extensions/vmware/vmware_view.php:1666 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:124 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:74 msgid "Node radius" msgstr "ノード半径" -#: ../../operation/agentes/pandora_networkmap.editor.php:235 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:94 +#: ../../operation/agentes/pandora_networkmap.editor.php:294 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:95 msgid "Position X" msgstr "X 位置" -#: ../../operation/agentes/pandora_networkmap.editor.php:237 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:96 +#: ../../operation/agentes/pandora_networkmap.editor.php:296 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:97 msgid "Position Y" msgstr "Y 位置" -#: ../../operation/agentes/pandora_networkmap.editor.php:240 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:99 +#: ../../operation/agentes/pandora_networkmap.editor.php:299 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:100 msgid "Zoom scale" msgstr "拡大スケール" -#: ../../operation/agentes/pandora_networkmap.editor.php:244 -#: ../../enterprise/dashboard/widgets/network_map.php:57 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:101 +#: ../../operation/agentes/pandora_networkmap.editor.php:304 +#: ../../enterprise/dashboard/widgets/network_map.php:71 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:102 msgid "" "Introduce zoom level. 1 = Highest resolution. Figures may include decimals" msgstr "拡大率を設定します。1=高解像度。数字には小数点を含めることができます。" -#: ../../operation/agentes/pandora_networkmap.editor.php:250 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:107 +#: ../../operation/agentes/pandora_networkmap.editor.php:307 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:105 msgid "CIDR IP mask" msgstr "CIDR IPマスク" -#: ../../operation/agentes/pandora_networkmap.editor.php:252 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:131 +#: ../../operation/agentes/pandora_networkmap.editor.php:309 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:132 msgid "Source from recon task" msgstr "自動検出タスクからのソース" -#: ../../operation/agentes/pandora_networkmap.editor.php:254 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:133 +#: ../../operation/agentes/pandora_networkmap.editor.php:311 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:134 msgid "" "It is setted any recon task, the nodes get from the recontask IP mask " "instead from the group." msgstr "自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マスクから取得します。" -#: ../../operation/agentes/pandora_networkmap.editor.php:258 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/agentes/pandora_networkmap.editor.php:328 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:150 msgid "Show only the task with the recon script \"SNMP L2 Recon\"." msgstr "自動検出スクリプト \"SNMP L2 Recon\" のタスクのみ表示。" -#: ../../operation/agentes/pandora_networkmap.editor.php:260 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:139 +#: ../../operation/agentes/pandora_networkmap.editor.php:332 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:154 msgid "Source from CIDR IP mask" msgstr "CIDR IPマスクからのソース" -#: ../../operation/agentes/pandora_networkmap.editor.php:264 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:143 +#: ../../operation/agentes/pandora_networkmap.editor.php:335 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:134 +msgid "Source group" +msgstr "複製元グループ" + +#: ../../operation/agentes/pandora_networkmap.editor.php:352 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:357 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:166 msgid "Don't show subgroups:" msgstr "サブグループを表示しない:" -#: ../../operation/agentes/pandora_networkmap.editor.php:277 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:173 +#: ../../operation/agentes/pandora_networkmap.editor.php:375 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:200 msgid "Method generation networkmap" msgstr "ネットワークマップ生成手法" -#: ../../operation/agentes/pandora_networkmap.editor.php:286 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:178 +#: ../../operation/agentes/pandora_networkmap.editor.php:395 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:215 msgid "Node separation" msgstr "ノード分離" -#: ../../operation/agentes/pandora_networkmap.editor.php:287 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:179 +#: ../../operation/agentes/pandora_networkmap.editor.php:396 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:216 msgid "Separation between nodes. By default 0.25" msgstr "ノード間の分離。デフォルトは 0.25 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:289 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:181 +#: ../../operation/agentes/pandora_networkmap.editor.php:398 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:218 msgid "Rank separation" msgstr "ランク分け" -#: ../../operation/agentes/pandora_networkmap.editor.php:290 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:182 +#: ../../operation/agentes/pandora_networkmap.editor.php:399 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:219 msgid "" "Only flat and radial. Separation between arrows. By default 0.5 in flat and " "1.0 in radial" msgstr "フラットおよびラジアルのみ。 矢印の間の分離です。 デフォルトでは、フラットが 0.5、ラジアルが 1.0 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:292 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:184 +#: ../../operation/agentes/pandora_networkmap.editor.php:401 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:221 msgid "Min nodes dist" msgstr "最小ノード間隔" -#: ../../operation/agentes/pandora_networkmap.editor.php:293 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:185 +#: ../../operation/agentes/pandora_networkmap.editor.php:402 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:222 msgid "Only circular. Minimum separation between all nodes. By default 1.0" msgstr "円のみ。ノード間の最小距離です。デフォルトは 1.0 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:295 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:187 +#: ../../operation/agentes/pandora_networkmap.editor.php:404 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:224 msgid "Default ideal node separation" -msgstr "" +msgstr "デフォルトノード間距離" -#: ../../operation/agentes/pandora_networkmap.editor.php:296 -#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:188 +#: ../../operation/agentes/pandora_networkmap.editor.php:405 +#: ../../enterprise/operation/agentes/pandora_networkmap.view.php:225 msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" -msgstr "" +msgstr "fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:305 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:119 +#: ../../operation/agentes/pandora_networkmap.editor.php:415 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:145 msgid "Save networkmap" msgstr "ネットワークマップの保存" -#: ../../operation/agentes/pandora_networkmap.editor.php:311 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:125 +#: ../../operation/agentes/pandora_networkmap.editor.php:426 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:156 msgid "Update networkmap" msgstr "ネットワークマップの更新" -#: ../../operation/agentes/pandora_networkmap.php:112 -#: ../../operation/agentes/pandora_networkmap.php:305 +#: ../../operation/agentes/pandora_networkmap.editor.php:571 +msgid "Source id group changed. All elements in Networkmap will be lost" +msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" + +#: ../../operation/agentes/pandora_networkmap.php:125 +#: ../../operation/agentes/pandora_networkmap.php:366 msgid "Succesfully created" msgstr "作成しました" -#: ../../operation/agentes/pandora_networkmap.php:166 -#: ../../operation/agentes/pandora_networkmap.php:401 +#: ../../operation/agentes/pandora_networkmap.php:201 +#: ../../operation/agentes/pandora_networkmap.php:499 msgid "Succesfully updated" msgstr "更新しました" -#: ../../operation/agentes/pandora_networkmap.php:418 +#: ../../operation/agentes/pandora_networkmap.php:524 msgid "Succesfully duplicate" msgstr "複製しました" -#: ../../operation/agentes/pandora_networkmap.php:418 -#: ../../enterprise/godmode/policies/policy_modules.php:1204 +#: ../../operation/agentes/pandora_networkmap.php:525 +#: ../../enterprise/godmode/policies/policy_modules.php:1432 msgid "Could not be duplicated" -msgstr "複製できませんでした" +msgstr "複製できません" -#: ../../operation/agentes/pandora_networkmap.php:427 +#: ../../operation/agentes/pandora_networkmap.php:538 msgid "Succesfully deleted" msgstr "削除しました" -#: ../../operation/agentes/pandora_networkmap.php:635 +#: ../../operation/agentes/pandora_networkmap.php:774 msgid "Empty map" msgstr "空マップ" -#: ../../operation/agentes/pandora_networkmap.php:638 +#: ../../operation/agentes/pandora_networkmap.php:778 msgid "Pending to generate" msgstr "生成の保留" -#: ../../operation/agentes/pandora_networkmap.php:660 -#: ../../enterprise/operation/services/services.list.php:458 +#: ../../operation/agentes/pandora_networkmap.php:795 +#: ../../enterprise/operation/services/services.list.php:527 msgid "Config" msgstr "設定" -#: ../../operation/agentes/pandora_networkmap.php:676 +#: ../../operation/agentes/pandora_networkmap.php:806 msgid "There are no maps defined." msgstr "定義済マップがありません。" -#: ../../operation/agentes/pandora_networkmap.php:683 -msgid "Create networkmap" -msgstr "ネットワークマップの作成" +#: ../../operation/agentes/pandora_networkmap.php:813 +msgid "Create network map" +msgstr "ネットワークマップ作成" -#: ../../operation/agentes/pandora_networkmap.php:691 -msgid "Create empty networkmap" -msgstr "空ネットワークマップ作成" +#: ../../operation/agentes/pandora_networkmap.php:821 +msgid "Create empty network map" +msgstr "空のネットワークマップ作成" -#: ../../operation/agentes/pandora_networkmap.view.php:127 +#: ../../operation/agentes/pandora_networkmap.view.php:172 msgid "Success be updated." msgstr "更新しました。" -#: ../../operation/agentes/pandora_networkmap.view.php:130 -#: ../../enterprise/extensions/ipam/ipam_action.php:190 +#: ../../operation/agentes/pandora_networkmap.view.php:174 +#: ../../enterprise/extensions/ipam/ipam_action.php:292 msgid "Could not be updated." msgstr "更新できませんでした。" -#: ../../operation/agentes/pandora_networkmap.view.php:243 +#: ../../operation/agentes/pandora_networkmap.view.php:269 msgid "Name: " msgstr "名前: " -#: ../../operation/agentes/pandora_networkmap.view.php:274 -#: ../../operation/agentes/status_monitor.php:1043 +#: ../../operation/agentes/pandora_networkmap.view.php:304 +#: ../../operation/agentes/status_monitor.php:1234 msgid "(Adopt) " msgstr "(適用) " -#: ../../operation/agentes/pandora_networkmap.view.php:284 -#: ../../operation/agentes/status_monitor.php:1053 +#: ../../operation/agentes/pandora_networkmap.view.php:312 +#: ../../operation/agentes/status_monitor.php:1242 msgid "(Unlinked) (Adopt) " msgstr "(未リンク) (適用) " -#: ../../operation/agentes/pandora_networkmap.view.php:288 -#: ../../operation/agentes/status_monitor.php:1057 +#: ../../operation/agentes/pandora_networkmap.view.php:315 +#: ../../operation/agentes/status_monitor.php:1245 msgid "(Unlinked) " msgstr "(未リンク) " -#: ../../operation/agentes/pandora_networkmap.view.php:293 +#: ../../operation/agentes/pandora_networkmap.view.php:319 msgid "Policy: " msgstr "ポリシー: " -#: ../../operation/agentes/pandora_networkmap.view.php:342 -#: ../../enterprise/extensions/vmware/vmware_manager.php:202 +#: ../../operation/agentes/pandora_networkmap.view.php:366 +#: ../../enterprise/extensions/vmware/vmware_manager.php:269 msgid "Status: " msgstr "状態: " -#: ../../operation/agentes/pandora_networkmap.view.php:386 +#: ../../operation/agentes/pandora_networkmap.view.php:416 msgid "Data: " msgstr "データ: " -#: ../../operation/agentes/snapshot_view.php:76 -msgid "Current data at" -msgstr "次の日時のデータ:" +#: ../../operation/agentes/realtime_win.php:64 +#, php-format +msgid "%s Realtime Module Graph" +msgstr "%s リアルタイムモジュールグラフ" -#: ../../operation/agentes/stat_win.php:123 +#: ../../operation/agentes/realtime_win.php:87 +msgid "Realtime extension is not enabled." +msgstr "リアルタイム実行が無効です。" + +#: ../../operation/agentes/snapshot_view.php:42 +msgid "Cannot connect with node to display the module data." +msgstr "モジュールデータ表示のためのノード接続ができません。" + +#: ../../operation/agentes/snapshot_view.php:85 +#, php-format +msgid "%s Snapshot data view for module (%s)" +msgstr "%s スナップショットデータ表示 (モジュール %s)" + +#: ../../operation/agentes/snapshot_view.php:91 +#, php-format +msgid "Current data at %s" +msgstr "%s 時点のデータ" + +#: ../../operation/agentes/stat_win.php:71 +#, php-format +msgid "%s Graph" +msgstr "%s グラフ" + +#: ../../operation/agentes/stat_win.php:96 +msgid "CSV Export Information" +msgstr "CSV エクスポート情報" + +#: ../../operation/agentes/stat_win.php:97 +msgid "The CSV export has been successful." +msgstr "CSV エクスポートをしました。" + +#: ../../operation/agentes/stat_win.php:105 msgid "There was a problem locating the source of the graph" msgstr "グラフの場所に問題があります。" -#: ../../operation/agentes/stat_win.php:330 -msgid "Avg. Only" -msgstr "平均のみ" +#: ../../operation/agentes/stat_win.php:270 +msgid "Zoom" +msgstr "ズーム" -#: ../../operation/agentes/stat_win.php:381 +#: ../../operation/agentes/stat_win.php:315 +#, php-format msgid "" -"Show events is disabled because this Pandora node is set the event " -"replication." -msgstr "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効です。" +"'Show events' is disabled because this %s node is set to event replication." +msgstr "この %s ノードはイベントを複製するように設定されているため、’イベント表示' は無効です。" -#: ../../operation/agentes/stat_win.php:393 -msgid "Show event graph" -msgstr "イベントグラフ表示" - -#: ../../operation/agentes/status_events.php:31 -#: ../../operation/agentes/status_events.php:32 +#: ../../operation/agentes/status_events.php:26 +#: ../../operation/agentes/status_events.php:27 msgid "Latest events for this agent" msgstr "このエージェントにおける最新イベント" -#: ../../operation/agentes/status_monitor.php:40 ../../operation/menu.php:60 +#: ../../operation/agentes/status_monitor.php:65 ../../operation/menu.php:56 msgid "Monitor detail" msgstr "モニタ項目詳細" -#: ../../operation/agentes/status_monitor.php:45 +#: ../../operation/agentes/status_monitor.php:72 msgid "Monitor view" msgstr "モニタ表示" -#: ../../operation/agentes/status_monitor.php:304 -#: ../../enterprise/operation/agentes/tag_view.php:89 +#: ../../operation/agentes/status_monitor.php:388 +#: ../../enterprise/operation/agentes/tag_view.php:113 msgid "Monitor status" msgstr "モニタ項目の状態" -#: ../../operation/agentes/status_monitor.php:325 -#: ../../operation/incidents/incident.php:238 -#: ../../enterprise/extensions/vmware/vmware_view.php:1354 -#: ../../enterprise/operation/agentes/tag_view.php:112 -msgid "Show" -msgstr "表示" - -#: ../../operation/agentes/status_monitor.php:391 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:38 -#: ../../enterprise/operation/agentes/tag_view.php:194 +#: ../../operation/agentes/status_monitor.php:529 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:37 +#: ../../enterprise/operation/agentes/tag_view.php:270 msgid "Web server module" msgstr "ウェブサーバモジュール" -#: ../../operation/agentes/status_monitor.php:393 +#: ../../operation/agentes/status_monitor.php:531 msgid "Wux server module" msgstr "Wux サーバモジュール" -#: ../../operation/agentes/status_monitor.php:398 -#: ../../operation/agentes/status_monitor.php:970 -#: ../../enterprise/operation/agentes/tag_view.php:197 -#: ../../enterprise/operation/agentes/tag_view.php:533 -msgid "Server type" -msgstr "サーバの種類" - -#: ../../operation/agentes/status_monitor.php:404 -#: ../../enterprise/operation/agentes/tag_view.php:203 +#: ../../operation/agentes/status_monitor.php:546 +#: ../../enterprise/operation/agentes/tag_view.php:283 msgid "Show monitors..." msgstr "監視の有効・無効" -#: ../../operation/agentes/status_monitor.php:414 -#: ../../enterprise/operation/agentes/tag_view.php:213 -#: ../../enterprise/operation/agentes/tag_view.php:532 -msgid "Data type" -msgstr "データのタイプ" - -#: ../../operation/agentes/status_monitor.php:538 +#: ../../operation/agentes/status_monitor.php:706 msgid "Advanced Options" msgstr "高度なオプション" -#: ../../operation/agentes/status_monitor.php:960 +#: ../../operation/agentes/status_monitor.php:1117 msgid "Data Type" msgstr "データのタイプ" -#: ../../operation/agentes/status_monitor.php:1463 +#: ../../operation/agentes/status_monitor.php:1717 msgid "This group doesn't have any monitor" msgstr "該当するモニタ項目がありません。" -#: ../../operation/agentes/tactical.php:135 +#: ../../operation/agentes/status_monitor.php:1719 +msgid "Sorry no search parameters" +msgstr "検索パラメータがありません" + +#: ../../operation/agentes/tactical.php:170 msgid "Report of State" msgstr "状態レポート" -#: ../../operation/agentes/ver_agente.php:761 -#: ../../enterprise/extensions/vmware/ajax.php:87 -#: ../../enterprise/extensions/vmware/ajax.php:90 -#: ../../enterprise/operation/agentes/ver_agente.php:70 +#: ../../operation/agentes/ver_agente.php:847 +#: ../../enterprise/operation/agentes/ver_agente.php:69 msgid "Main IP" msgstr "代表 IP" -#: ../../operation/agentes/ver_agente.php:812 -#: ../../enterprise/operation/agentes/ver_agente.php:113 +#: ../../operation/agentes/ver_agente.php:904 +#: ../../enterprise/operation/agentes/ver_agente.php:119 msgid "Monitors down" msgstr "停止中のモニタ項目" -#: ../../operation/agentes/ver_agente.php:897 -#: ../../enterprise/extensions/ipam/ipam_ajax.php:152 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:41 -#: ../../enterprise/extensions/ipam/ipam_excel.php:120 -#: ../../enterprise/extensions/ipam/ipam_network.php:535 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:84 -msgid "Address" -msgstr "アドレス" - -#: ../../operation/agentes/ver_agente.php:938 +#: ../../operation/agentes/ver_agente.php:1036 msgid "Sons" msgstr "子" -#: ../../operation/agentes/ver_agente.php:1022 -#: ../../operation/search_agents.php:127 -#: ../../operation/servers/recon_view.php:49 +#: ../../operation/agentes/ver_agente.php:1149 +#: ../../operation/search_agents.php:112 +#: ../../operation/servers/recon_view.php:47 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:297 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 msgid "Manage" msgstr "設定" -#: ../../operation/agentes/ver_agente.php:1170 +#: ../../operation/agentes/ver_agente.php:1281 msgid "Log Viewer" msgstr "ログビューア" -#: ../../operation/agentes/ver_agente.php:1190 +#: ../../operation/agentes/ver_agente.php:1306 msgid "Terminal" msgstr "端末" -#: ../../operation/agentes/ver_agente.php:1210 -#: ../../enterprise/godmode/agentes/collections.agents.php:53 -#: ../../enterprise/godmode/agentes/collections.data.php:104 -#: ../../enterprise/godmode/agentes/collections.data.php:216 -#: ../../enterprise/godmode/agentes/collections.data.php:256 -#: ../../enterprise/godmode/agentes/collections.editor.php:45 -#: ../../enterprise/godmode/agentes/collections.editor.php:344 -#: ../../enterprise/godmode/agentes/collections.editor.php:369 -#: ../../enterprise/include/functions_collection.php:129 +#: ../../operation/agentes/ver_agente.php:1322 +#: ../../enterprise/godmode/agentes/collections.agents.php:52 +#: ../../enterprise/godmode/agentes/collections.data.php:110 +#: ../../enterprise/godmode/agentes/collections.data.php:242 +#: ../../enterprise/godmode/agentes/collections.data.php:289 +#: ../../enterprise/godmode/agentes/collections.editor.php:54 +#: ../../enterprise/godmode/agentes/collections.editor.php:366 +#: ../../enterprise/godmode/agentes/collections.editor.php:389 +#: ../../enterprise/include/functions_collection.php:136 +#: ../../enterprise/meta/advanced/collections.data.php:164 +#: ../../enterprise/meta/advanced/collections.data.php:232 +#: ../../enterprise/meta/advanced/collections.data.php:256 +#: ../../enterprise/meta/advanced/collections.editor.php:36 +#: ../../enterprise/meta/advanced/collections.editor.php:332 +#: ../../enterprise/meta/advanced/collections.editor.php:350 msgid "Files" msgstr "ファイル" -#: ../../operation/events/event_statistics.php:32 -#: ../../operation/incidents/incident_statistics.php:30 -#: ../../operation/menu.php:315 ../../operation/menu.php:402 -#: ../../operation/snmpconsole/snmp_statistics.php:61 +#: ../../operation/agentes/ver_agente.php:1334 +#: ../../operation/agentes/ver_agente.php:1524 +#: ../../enterprise/operation/menu.php:61 +msgid "SAP view" +msgstr "SAP 表示" + +#: ../../operation/agentes/ver_agente.php:1549 ../../operation/menu.php:29 +#: ../../operation/menu.php:162 +#: ../../enterprise/extensions/ipam/ipam_editor.php:141 +#: ../../enterprise/godmode/reporting/cluster_list.php:26 +#: ../../enterprise/meta/general/logon_ok.php:75 +#: ../../enterprise/meta/general/main_header.php:91 +#: ../../enterprise/operation/services/services.list.php:59 +#: ../../enterprise/operation/services/services.list.php:62 +#: ../../enterprise/operation/services/services.table_services.php:59 +#: ../../enterprise/operation/services/services.table_services.php:65 +#: ../../enterprise/operation/services/services.treeview_services.php:60 +#: ../../enterprise/operation/services/services.treeview_services.php:66 +msgid "Monitoring" +msgstr "モニタリング" + +#: ../../operation/events/event_statistics.php:46 +#: ../../operation/incidents/incident_statistics.php:27 +#: ../../operation/menu.php:369 ../../operation/menu.php:483 +#: ../../operation/snmpconsole/snmp_statistics.php:53 #: ../../operation/snmpconsole/snmp_view.php:80 -#: ../../enterprise/extensions/ipam/ipam_network.php:171 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1381 msgid "Statistics" msgstr "統計" -#: ../../operation/events/event_statistics.php:41 +#: ../../operation/events/event_statistics.php:55 msgid "Event graph by user" msgstr "ユーザで分類したイベントグラフ" -#: ../../operation/events/events.build_table.php:37 +#: ../../operation/events/events.build_table.php:81 msgid "More detail" msgstr "詳細" -#: ../../operation/events/events.build_table.php:85 -#: ../../operation/events/events.build_table.php:89 +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 msgid "The Agent: " msgstr "エージェント: " -#: ../../operation/events/events.build_table.php:86 -#: ../../operation/events/events.build_table.php:90 +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 msgid " has " msgstr " は " -#: ../../operation/events/events.build_table.php:87 -#: ../../operation/events/events.build_table.php:91 +#: ../../operation/events/events.build_table.php:105 +#: ../../operation/events/events.build_table.php:107 msgid " events." msgstr " イベントあります。" -#: ../../operation/events/events.build_table.php:754 -msgid "Validate selected" -msgstr "選択したものを承諾" +#: ../../operation/events/events.build_table.php:852 +#: ../../operation/events/events.php:1888 +msgid "Change to in progress status" +msgstr "進捗状況へ変更" -#: ../../operation/events/events.php:71 -#: ../../operation/events/sound_events.php:91 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 -msgid "Event" -msgstr "イベント" +#: ../../operation/events/events.build_table.php:990 +#: ../../operation/events/events.php:1531 +msgid "Execute event response" +msgstr "イベント応答の実行" -#: ../../operation/events/events.php:168 -msgid "Alert fired in module " -msgstr "モジュールのアラートフィールド " +#: ../../operation/events/events.build_table.php:995 +#: ../../operation/events/events.php:1536 +#, php-format +msgid "A maximum of %s event custom responses can be selected" +msgstr "最大 %s イベントのカスタム応答を選択できます" -#: ../../operation/events/events.php:179 ../../operation/events/events.php:190 -#: ../../operation/events/events.php:201 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:58 -msgid "Module " -msgstr "モジュール " +#: ../../operation/events/events.build_table.php:1000 +#: ../../operation/events/events.php:1541 +msgid "Please, select an event" +msgstr "イベントを選択してください" -#: ../../operation/events/events.php:179 -msgid " is going to critical" -msgstr " は障害状態になりました" +#: ../../operation/events/events.php:689 +msgid "Event viewer" +msgstr "イベントビューワ" -#: ../../operation/events/events.php:190 -msgid " is going to warning" -msgstr " は警告状態になりました" +#: ../../operation/events/events.php:718 +msgid "History event list" +msgstr "イベント一覧履歴" -#: ../../operation/events/events.php:201 -msgid " is going to unknown" -msgstr " は不明状態になりました" +#: ../../operation/events/events.php:722 +msgid "RSS Events" +msgstr "RSS イベント" -#: ../../operation/events/events.php:223 +#: ../../operation/events/events.php:726 +msgid "Marquee display" +msgstr "スクリーンセーバ表示" + +#: ../../operation/events/events.php:730 +msgid "Export to CSV file" +msgstr "CSV ファイルに書き出す" + +#: ../../operation/events/events.php:734 ../../operation/events/events.php:774 +msgid "Sound events" +msgstr "サウンドイベント" + +#: ../../operation/events/events.php:779 +msgid "History" +msgstr "履歴" + +#: ../../operation/events/events.php:815 ../../operation/menu.php:430 +msgid "Sound Alerts" +msgstr "サウンドアラート" + +#: ../../operation/events/events.php:841 msgid "" "Event viewer is disabled due event replication. For more information, please " "contact with the administrator" msgstr "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡してください。" -#: ../../operation/events/events.php:365 -msgid "History event list" -msgstr "イベント一覧履歴" - -#: ../../operation/events/events.php:370 -msgid "RSS Events" -msgstr "RSS イベント" - -#: ../../operation/events/events.php:375 -msgid "Marquee display" -msgstr "スクリーンセーバ表示" - -#: ../../operation/events/events.php:380 -msgid "Export to CSV file" -msgstr "CSV ファイルに書き出す" - -#: ../../operation/events/events.php:384 ../../operation/events/events.php:423 -msgid "Sound events" -msgstr "サウンドイベント" - -#: ../../operation/events/events.php:427 -msgid "History" -msgstr "履歴" - -#: ../../operation/events/events.php:465 ../../operation/menu.php:356 -msgid "Sound Alerts" -msgstr "サウンドアラート" - -#: ../../operation/events/events.php:498 -msgid "Event viewer" -msgstr "イベントビューワ" - -#: ../../operation/events/events.php:518 -msgid "No events selected" -msgstr "イベントが選択されていません。" - -#: ../../operation/events/events.php:544 -msgid "Successfully validated" -msgstr "承諾しました。" - -#: ../../operation/events/events.php:545 ../../operation/events/events.php:869 -#: ../../operation/events/events.php:1021 -msgid "Could not be validated" -msgstr "承諾に失敗しました。" - -#: ../../operation/events/events.php:549 -msgid "Successfully set in process" -msgstr "処理中に設定しました。" - -#: ../../operation/events/events.php:550 -msgid "Could not be set in process" -msgstr "処理中に設定できませんでした。" - -#: ../../operation/events/events.php:605 -#: ../../operation/visual_console/public_console.php:153 -#: ../../operation/visual_console/render_view.php:241 -msgid "Until refresh" -msgstr "リフレッシュまで" - -#: ../../operation/events/events.php:901 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:226 -msgid "Successfully delete" -msgstr "削除しました" - -#: ../../operation/events/events.php:904 -msgid "Error deleting event" -msgstr "イベントの削除エラー" - -#: ../../operation/events/events_list.php:256 -#: ../../operation/events/events_list.php:704 -msgid "No filter loaded" -msgstr "フィルタが読み込まれていません" - -#: ../../operation/events/events_list.php:258 -#: ../../operation/events/events_list.php:705 -msgid "Filter loaded" -msgstr "フィルタを読み込みました" - -#: ../../operation/events/events_list.php:260 -#: ../../operation/events/events_list.php:326 -#: ../../operation/events/events_list.php:673 -msgid "Save filter" -msgstr "フィルタの保存" - -#: ../../operation/events/events_list.php:262 -#: ../../operation/events/events_list.php:350 -#: ../../operation/events/events_list.php:352 -#: ../../operation/events/events_list.php:677 -#: ../../operation/netflow/nf_live_view.php:329 -msgid "Load filter" -msgstr "フィルタ読み込み" - -#: ../../operation/events/events_list.php:284 -msgid "New filter" -msgstr "新規フィルタ" - -#: ../../operation/events/events_list.php:294 -msgid "Save in Group" -msgstr "保存グループ" - -#: ../../operation/events/events_list.php:313 -msgid "Overwrite filter" -msgstr "フィルタの上書き" - -#: ../../operation/events/events_list.php:649 +#: ../../operation/events/events.php:929 +#: ../../operation/events/events_list.php:971 msgid "Group agents" msgstr "グループエージェント" -#: ../../operation/events/events_list.php:711 -#: ../../operation/events/events_list.php:713 +#: ../../operation/events/events.php:1119 +#: ../../operation/events/events_list.php:999 +msgid "Id source event" +msgstr "ソースイベントID" + +#: ../../operation/events/events.php:1369 +msgid "Current filter" +msgstr "現在のフィルタ" + +#: ../../operation/events/events.php:1374 +msgid "Not set." +msgstr "未設定" + +#: ../../operation/events/events.php:1387 +msgid "Any status." +msgstr "任意の状態" + +#: ../../operation/events/events.php:1391 +msgid "New events." +msgstr "新規イベント" + +#: ../../operation/events/events.php:1395 +msgid "Validated." +msgstr "承諾済" + +#: ../../operation/events/events.php:1399 +msgid "In proccess." +msgstr "処理中" + +#: ../../operation/events/events.php:1403 +msgid "Not validated." +msgstr "未承諾" + +#: ../../operation/events/events.php:1415 +msgid "Any time." +msgstr "任意の時間" + +#: ../../operation/events/events.php:1417 +#: ../../operation/events/events.php:2290 +msgid "Last hour." +msgstr "直近 1時間" + +#: ../../operation/events/events.php:1419 +#, php-format +msgid "Last %d hours." +msgstr "直近 %d 時間" + +#: ../../operation/events/events.php:1427 +msgid "Duplicated" +msgstr "複数回数発生イベント" + +#: ../../operation/events/events.php:1430 +msgid "All events." +msgstr "全イベント" + +#: ../../operation/events/events.php:1434 +msgid "Group agents." +msgstr "グループエージェント" + +#: ../../operation/events/events.php:1512 +msgid "In progress selected" +msgstr "処理中を選択" + +#: ../../operation/events/events.php:1513 +msgid "Validate selected" +msgstr "選択したものを承諾" + +#: ../../operation/events/events.php:1630 +msgid "has at least" +msgstr "は少なくとも次のイベント数あります:" + +#: ../../operation/events/events.php:1632 +msgid "events" +msgstr "イベント" + +#: ../../operation/events/events.php:1873 +msgid "Validate events" +msgstr "イベントの承諾" + +#: ../../operation/events/events.php:1897 +msgid "Delete events" +msgstr "イベントの削除" + +#: ../../operation/events/events.php:2292 +msgid "hours." +msgstr "時間" + +#: ../../operation/events/events_list.php:348 +#: ../../operation/events/events_list.php:1085 +msgid "No filter loaded" +msgstr "フィルタが読み込まれていません" + +#: ../../operation/events/events_list.php:356 +#: ../../operation/events/events_list.php:1085 +msgid "Filter loaded" +msgstr "フィルタを読み込みました" + +#: ../../operation/events/events_list.php:1091 +#: ../../operation/events/events_list.php:1093 msgid "Event control filter" msgstr "イベントフィルタ" -#: ../../operation/events/events_list.php:720 +#: ../../operation/events/events_list.php:1101 msgid "Error creating filter." msgstr "フィルタ作成エラー。" -#: ../../operation/events/events_list.php:721 +#: ../../operation/events/events_list.php:1105 msgid "Error creating filter is duplicated." msgstr "フィルタ作成エラー、重複しています。" -#: ../../operation/events/events_list.php:722 +#: ../../operation/events/events_list.php:1109 msgid "Filter created." msgstr "フィルタを作成しました。" -#: ../../operation/events/events_list.php:724 +#: ../../operation/events/events_list.php:1114 msgid "Filter updated." msgstr "フィルタを更新しました。" -#: ../../operation/events/events_list.php:725 +#: ../../operation/events/events_list.php:1118 msgid "Error updating filter." msgstr "フィルタ更新エラー。" -#: ../../operation/events/events_list.php:1105 -msgid "Filter name cannot be left blank" -msgstr "フィルタ名は空にできません" +#: ../../operation/events/events_marquee.php:113 +#, php-format +msgid "%s - Latest events" +msgstr "%s - 最新のイベント" -#: ../../operation/events/events_rss.php:32 +#: ../../operation/events/events_rss.php:195 msgid "Your IP is not into the IP list with API access." msgstr "API アクセスできる IP 一覧に入っていません。" -#: ../../operation/events/events_rss.php:46 +#: ../../operation/events/events_rss.php:214 msgid "The URL of your feed has bad hash." msgstr "フィードの URL に不正はハッシュがあります。" -#: ../../operation/events/events_rss.php:185 ../../operation/menu.php:101 -msgid "SNMP" -msgstr "SNMP" - -#: ../../operation/events/sound_events.php:51 ../../operation/menu.php:344 +#: ../../operation/events/sound_events.php:43 ../../operation/menu.php:419 msgid "Sound Events" msgstr "サウンドイベント" -#: ../../operation/events/sound_events.php:68 +#: ../../operation/events/sound_events.php:60 msgid "Sound console" msgstr "サウンドコンソール" -#: ../../operation/gis_maps/ajax.php:217 ../../operation/gis_maps/ajax.php:254 +#: ../../operation/events/sound_events.php:80 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 +msgid "Event" +msgstr "イベント" + +#: ../../operation/gis_maps/ajax.php:237 ../../operation/gis_maps/ajax.php:275 +#: ../../operation/gis_maps/ajax.php:444 msgid "Position (Lat, Long, Alt)" msgstr "位置 (緯度、経度、高度)" -#: ../../operation/gis_maps/ajax.php:218 +#: ../../operation/gis_maps/ajax.php:238 msgid "Start contact" msgstr "利用開始" -#: ../../operation/gis_maps/ajax.php:220 +#: ../../operation/gis_maps/ajax.php:240 msgid "Num reports" msgstr "レポート数" -#: ../../operation/gis_maps/ajax.php:258 +#: ../../operation/gis_maps/ajax.php:279 ../../operation/gis_maps/ajax.php:448 msgid "Default position of map." msgstr "マップのデフォルト位置" -#: ../../operation/gis_maps/gis_map.php:31 ../../operation/menu.php:222 +#: ../../operation/gis_maps/ajax.php:339 +msgid "Satellite Version" +msgstr "サテライトバージョン" + +#: ../../operation/gis_maps/ajax.php:385 ../../operation/gis_maps/ajax.php:502 +msgid "Number of non-validated critical events" +msgstr "未承諾障害イベント数" + +#: ../../operation/gis_maps/ajax.php:395 ../../operation/gis_maps/ajax.php:512 +msgid "Alert(s) fired" +msgstr "アラートが発報" + +#: ../../operation/gis_maps/gis_map.php:35 ../../operation/menu.php:268 msgid "GIS Maps" msgstr "GIS マップ" -#: ../../operation/gis_maps/gis_map.php:175 +#: ../../operation/gis_maps/gis_map.php:195 msgid "No maps found" msgstr "マップがありません。" -#: ../../operation/gis_maps/gis_map.php:194 +#: ../../operation/gis_maps/gis_map.php:214 msgid "Caution: Do you want delete the map?" msgstr "警告: マップを削除しますか。" -#: ../../operation/gis_maps/gis_map.php:201 +#: ../../operation/gis_maps/gis_map.php:221 msgid "Do you want to set default the map?" msgstr "このマップをデフォルトに設定しますか。" -#: ../../operation/gis_maps/gis_map.php:209 +#: ../../operation/gis_maps/gis_map.php:229 msgid "There was error on setup the default map." msgstr "デフォルトマップの設定でエラーが発生しました。" -#: ../../operation/gis_maps/render_view.php:145 -msgid "Refresh: " -msgstr "更新: " - -#: ../../operation/gis_maps/render_view.php:154 -msgid "Show agents by state: " -msgstr "表示するエージェントの状態: " +#: ../../operation/gis_maps/render_view.php:144 +#: ../../enterprise/dashboard/widgets/top_n.php:66 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:186 +msgid "2 hours" +msgstr "2時間" #: ../../operation/gis_maps/render_view.php:157 -#: ../../enterprise/dashboard/widgets/network_map.php:39 -#: ../../enterprise/extensions/vmware/vmware_view.php:1207 -#: ../../enterprise/extensions/vmware/vmware_view.php:1232 +msgid "Filter by status" +msgstr "状態によるフィルタ" + +#: ../../operation/gis_maps/render_view.php:165 +#: ../../enterprise/dashboard/widgets/network_map.php:41 +#: ../../enterprise/extensions/vmware/vmware_view.php:1281 +#: ../../enterprise/extensions/vmware/vmware_view.php:1299 msgid "Map" msgstr "マップ" -#: ../../operation/incidents/incident.php:33 -msgid "Incident management" -msgstr "インシデント管理" +#: ../../operation/incidents/configure_integriaims_incident.php:33 +msgid "Update Integria IMS Ticket" +msgstr "Integria IMS チケットの更新" -#: ../../operation/incidents/incident.php:72 -msgid "Successfully reclaimed ownership" -msgstr "所有権を得ました。" +#: ../../operation/incidents/configure_integriaims_incident.php:35 +msgid "Create Integria IMS Ticket" +msgstr "Integria IMS チケットの作成" -#: ../../operation/incidents/incident.php:73 -msgid "Could not reclame ownership" -msgstr "所有権を得られませんでした。" +#: ../../operation/incidents/configure_integriaims_incident.php:40 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:30 +#: ../../operation/incidents/list_integriaims_incidents.php:34 +msgid "Integria integration must be enabled in Pandora setup" +msgstr "Pandora セットアップでIntegria との統合が有効化されている必要があります" -#: ../../operation/incidents/incident.php:143 -msgid "Error creating incident" -msgstr "インシデントの作成に失敗しました。" +#: ../../operation/incidents/configure_integriaims_incident.php:115 +msgid "Successfully created in Integria IMS" +msgstr "Integria IMS で作成しました" -#: ../../operation/incidents/incident.php:146 -msgid "Incident created" -msgstr "インシデントを作成しました" +#: ../../operation/incidents/configure_integriaims_incident.php:116 +msgid "Could not be created in Integria IMS" +msgstr "Integria IMS で作成できませんでした" -#: ../../operation/incidents/incident.php:233 -msgid "Incidents:" -msgstr "インシデント:" +#: ../../operation/incidents/configure_integriaims_incident.php:127 +msgid "Successfully updated in Integria IMS" +msgstr "Integria IMS で更新しました" -#: ../../operation/incidents/incident.php:234 -msgid "All incidents" -msgstr "全インシデント" +#: ../../operation/incidents/configure_integriaims_incident.php:128 +msgid "Could not be updated in Integria IMS" +msgstr "Integria IMS で更新できませんでした" -#: ../../operation/incidents/incident.php:256 -msgid "Priorities:" -msgstr "優先度:" +#: ../../operation/incidents/configure_integriaims_incident.php:258 +#: ../../operation/incidents/incident_detail.php:355 +#: ../../operation/incidents/integriaims_export_csv.php:96 +#: ../../operation/incidents/list_integriaims_incidents.php:134 +#: ../../operation/incidents/list_integriaims_incidents.php:260 +msgid "Creator" +msgstr "作成者" -#: ../../operation/incidents/incident.php:257 -msgid "All priorities" -msgstr "全優先度" +#: ../../operation/incidents/configure_integriaims_incident.php:270 +msgid "" +"This field corresponds to the Integria IMS user specified in Integria IMS " +"setup" +msgstr "このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対応します" -#: ../../operation/incidents/incident.php:261 -msgid "Users:" -msgstr "ユーザ:" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:84 +msgid "Not yet" +msgstr "未完了" -#: ../../operation/incidents/incident.php:262 -#: ../../enterprise/extensions/ipam/ipam_editor.php:60 -msgid "All users" -msgstr "全ユーザ" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:88 +msgid "Not closed yet" +msgstr "未クローズ" -#: ../../operation/incidents/incident.php:277 -msgid "Agents:" -msgstr "エージェント:" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:122 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:296 +#: ../../operation/incidents/incident_detail.php:475 +#: ../../operation/incidents/incident_detail.php:525 +msgid "Filename" +msgstr "ファイル名" -#: ../../operation/incidents/incident.php:279 -msgid "All agents" -msgstr "全エージェント" - -#: ../../operation/incidents/incident.php:284 -msgid "Groups:" -msgstr "グループ:" - -#: ../../operation/incidents/incident.php:290 -msgid "Free text:" -msgstr "検索文字列:" - -#: ../../operation/incidents/incident.php:291 -msgid "Search by incident name or description, list matches." -msgstr "インシデント名または説明による検索にマッチした一覧を表示" - -#: ../../operation/incidents/incident.php:399 -msgid "Delete incidents" -msgstr "インシデント削除" - -#: ../../operation/incidents/incident.php:403 -msgid "Become owner" -msgstr "所有者になる" - -#: ../../operation/incidents/incident.php:411 -#: ../../operation/incidents/incident_detail.php:238 -msgid "Create incident" -msgstr "インシデント作成" - -#: ../../operation/incidents/incident_detail.php:120 -#: ../../enterprise/meta/include/ajax/wizard.ajax.php:489 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:136 +#: ../../operation/incidents/incident_detail.php:141 +#: ../../enterprise/meta/include/ajax/wizard.ajax.php:534 #: ../../enterprise/meta/monitoring/wizard/wizard.php:93 msgid "No description available" msgstr "説明なし" -#: ../../operation/incidents/incident_detail.php:160 -msgid "File could not be saved due to database error" -msgstr "データベースエラーのため、ファイルの保存に失敗しました。" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:169 +msgid "File successfully added" +msgstr "ファイルを追加しました" -#: ../../operation/incidents/incident_detail.php:173 -msgid "File uploaded" -msgstr "ファイルをアップロードしました。" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:170 +msgid "File could not be added" +msgstr "ファイルを追加できませんでした" -#: ../../operation/incidents/incident_detail.php:174 -msgid "File could not be uploaded" -msgstr "ファイルのアップロードに失敗しました。" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:173 +msgid "File has an invalid extension" +msgstr "ファイルの拡張子が不正です" -#: ../../operation/incidents/incident_detail.php:233 -msgid "Incident details" -msgstr "インシデント詳細" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:189 +msgid "File successfully deleted" +msgstr "ファイルを削除しました" -#: ../../operation/incidents/incident_detail.php:259 -msgid "Opened at" -msgstr "登録日時" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:190 +msgid "File could not be deleted" +msgstr "ファイルを削除できませんでした" -#: ../../operation/incidents/incident_detail.php:261 -#: ../../operation/servers/recon_view.php:110 -#: ../../enterprise/operation/agentes/transactional_map.php:154 -msgid "Updated at" -msgstr "更新日時" - -#: ../../operation/incidents/incident_detail.php:327 -msgid "Creator" -msgstr "作成者" - -#: ../../operation/incidents/incident_detail.php:376 -msgid "Update incident" -msgstr "更新" - -#: ../../operation/incidents/incident_detail.php:382 -msgid "Submit" -msgstr "実行" - -#: ../../operation/incidents/incident_detail.php:396 -#: ../../operation/incidents/incident_detail.php:400 -msgid "Add note" -msgstr "コメントを追加" - -#: ../../operation/incidents/incident_detail.php:432 -msgid "Notes attached to incident" -msgstr "コメント一覧" - -#: ../../operation/incidents/incident_detail.php:453 -#: ../../operation/incidents/incident_detail.php:505 -msgid "Filename" +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:254 +msgid "File name" msgstr "ファイル名" -#: ../../operation/incidents/incident_detail.php:481 -msgid "Attached files" -msgstr "添付ファイル一覧" - -#: ../../operation/incidents/incident_detail.php:499 -#: ../../operation/incidents/incident_detail.php:503 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 +#: ../../operation/incidents/incident_detail.php:519 +#: ../../operation/incidents/incident_detail.php:523 msgid "Add attachment" msgstr "ファイルを追加" -#: ../../operation/incidents/incident_statistics.php:33 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:274 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:448 +#: ../../operation/incidents/incident_detail.php:503 +msgid "Attached files" +msgstr "添付ファイル一覧" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:332 +msgid "Comment successfully added" +msgstr "コメントを追加しました" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 +msgid "Comment could not be added" +msgstr "コメントを追加できませんでした" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:359 +msgid "No comments found" +msgstr "コメントがありません" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:400 +msgid "Created by" +msgstr "作者:" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:401 +msgid "Owned by" +msgstr "オーナー:" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:402 +msgid "Closed by" +msgstr "クローズ者:" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:417 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1740 +msgid "Created at" +msgstr "作成日時" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:419 +msgid "Closed at" +msgstr "クローズ日時:" + +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:430 +msgid "People" +msgstr "ユーザ" + +#: ../../operation/incidents/incident.php:60 +msgid "Incident management" +msgstr "インシデント管理" + +#: ../../operation/incidents/incident.php:107 +msgid "Successfully reclaimed ownership" +msgstr "所有権を得ました。" + +#: ../../operation/incidents/incident.php:108 +msgid "Could not reclame ownership" +msgstr "所有権を得られませんでした。" + +#: ../../operation/incidents/incident.php:199 +msgid "Error creating incident" +msgstr "インシデントの作成に失敗しました。" + +#: ../../operation/incidents/incident.php:201 +msgid "Incident created" +msgstr "インシデントを作成しました" + +#: ../../operation/incidents/incident.php:296 +msgid "Incidents:" +msgstr "インシデント:" + +#: ../../operation/incidents/incident.php:297 +msgid "All incidents" +msgstr "全インシデント" + +#: ../../operation/incidents/incident.php:319 +msgid "Priorities:" +msgstr "優先度:" + +#: ../../operation/incidents/incident.php:320 +msgid "All priorities" +msgstr "全優先度" + +#: ../../operation/incidents/incident.php:324 +msgid "Users:" +msgstr "ユーザ:" + +#: ../../operation/incidents/incident.php:325 +#: ../../enterprise/extensions/ipam/ipam_editor.php:83 +msgid "All users" +msgstr "全ユーザ" + +#: ../../operation/incidents/incident.php:340 +msgid "Agents:" +msgstr "エージェント:" + +#: ../../operation/incidents/incident.php:346 +msgid "All agents" +msgstr "全エージェント" + +#: ../../operation/incidents/incident.php:356 +msgid "Groups:" +msgstr "グループ:" + +#: ../../operation/incidents/incident.php:362 +msgid "Free text:" +msgstr "検索文字列:" + +#: ../../operation/incidents/incident.php:363 +msgid "Search by incident name or description, list matches." +msgstr "インシデント名または説明による検索にマッチした一覧を表示" + +#: ../../operation/incidents/incident.php:481 +msgid "Delete incidents" +msgstr "インシデント削除" + +#: ../../operation/incidents/incident.php:485 +msgid "Become owner" +msgstr "所有者になる" + +#: ../../operation/incidents/incident.php:494 +#: ../../operation/incidents/incident_detail.php:266 +msgid "Create incident" +msgstr "インシデント作成" + +#: ../../operation/incidents/incident_detail.php:187 +msgid "File could not be saved due to database error" +msgstr "データベースエラーのため、ファイルの保存に失敗しました。" + +#: ../../operation/incidents/incident_detail.php:200 +msgid "File uploaded" +msgstr "ファイルをアップロードしました。" + +#: ../../operation/incidents/incident_detail.php:201 +msgid "File could not be uploaded" +msgstr "ファイルのアップロードに失敗しました。" + +#: ../../operation/incidents/incident_detail.php:262 +msgid "Incident details" +msgstr "インシデント詳細" + +#: ../../operation/incidents/incident_detail.php:287 +msgid "Opened at" +msgstr "登録日時" + +#: ../../operation/incidents/incident_detail.php:400 +msgid "Update incident" +msgstr "更新" + +#: ../../operation/incidents/incident_detail.php:418 +#: ../../operation/incidents/incident_detail.php:421 +msgid "Add note" +msgstr "コメントを追加" + +#: ../../operation/incidents/incident_detail.php:454 +msgid "Notes attached to incident" +msgstr "コメント一覧" + +#: ../../operation/incidents/incident_statistics.php:30 msgid "Incidents by status" msgstr "ステータスで分類したインシデント" -#: ../../operation/incidents/incident_statistics.php:36 +#: ../../operation/incidents/incident_statistics.php:33 msgid "Incidents by priority" msgstr "優先順位で分類したインシデント" -#: ../../operation/incidents/incident_statistics.php:39 +#: ../../operation/incidents/incident_statistics.php:36 msgid "Incidents by group" msgstr "グループで分類したインシデント" -#: ../../operation/incidents/incident_statistics.php:42 +#: ../../operation/incidents/incident_statistics.php:39 msgid "Incidents by user" msgstr "ユーザで分類したインシデント" -#: ../../operation/incidents/incident_statistics.php:45 +#: ../../operation/incidents/incident_statistics.php:42 msgid "Incidents by source" msgstr "発生元で分類したインシデント" -#: ../../operation/menu.php:32 ../../operation/menu.php:111 -#: ../../enterprise/godmode/reporting/cluster_list.php:25 -#: ../../enterprise/meta/general/logon_ok.php:56 -#: ../../enterprise/meta/general/main_header.php:82 -#: ../../enterprise/operation/services/services.list.php:60 -#: ../../enterprise/operation/services/services.list.php:64 -#: ../../enterprise/operation/services/services.table_services.php:46 -#: ../../enterprise/operation/services/services.table_services.php:50 -msgid "Monitoring" -msgstr "モニタリング" +#: ../../operation/incidents/integriaims_export_csv.php:88 +msgid "ID Ticket" +msgstr "チケット ID" -#: ../../operation/menu.php:38 +#: ../../operation/incidents/integriaims_export_csv.php:90 +#: ../../operation/incidents/list_integriaims_incidents.php:256 +msgid "Group/Company" +msgstr "グループ/会社" + +#: ../../operation/incidents/integriaims_export_csv.php:95 +msgid "Started" +msgstr "起動" + +#: ../../operation/incidents/list_integriaims_incidents.php:30 +#: ../../operation/menu.php:484 +msgid "Integria IMS Tickets" +msgstr "Integria IMS チケット" + +#: ../../operation/incidents/list_integriaims_incidents.php:106 +msgid "Text filter" +msgstr "テキストフィルタ" + +#: ../../operation/incidents/list_integriaims_incidents.php:170 +msgid "Created from" +msgstr "作成者:" + +#: ../../operation/incidents/list_integriaims_incidents.php:182 +msgid "Created to" +msgstr "作成対象者:" + +#: ../../operation/incidents/list_integriaims_incidents.php:255 +msgid "Ticket" +msgstr "チケット" + +#: ../../operation/incidents/list_integriaims_incidents.php:257 +msgid "Status/Resolution" +msgstr "状態/解決" + +#: ../../operation/incidents/list_integriaims_incidents.php:258 +msgid "Prior" +msgstr "前" + +#: ../../operation/incidents/list_integriaims_incidents.php:259 +msgid "Updated/Started" +msgstr "更新/開始" + +#: ../../operation/incidents/list_integriaims_incidents.php:309 +msgid "No tickets to show" +msgstr "表示するチケットがありません" + +#: ../../operation/menu.php:35 msgid "Views" msgstr "表示" -#: ../../operation/menu.php:52 ../../operation/tree.php:87 -#: ../../enterprise/meta/general/main_header.php:88 +#: ../../operation/menu.php:49 ../../operation/tree.php:102 +#: ../../enterprise/dashboard/widgets/tree_view.php:28 +#: ../../enterprise/dashboard/widgets/tree_view.php:398 +#: ../../enterprise/meta/general/main_header.php:97 msgid "Tree view" msgstr "ツリー表示" -#: ../../operation/menu.php:73 +#: ../../operation/menu.php:85 ../../operation/netflow/netflow_explorer.php:38 +msgid "Netflow explorer" +msgstr "Netflow エクスプローラ" + +#: ../../operation/menu.php:89 msgid "Netflow Live View" msgstr "Netflow ライブビュー" -#: ../../operation/menu.php:88 +#: ../../operation/menu.php:101 ../../operation/network/network_explorer.php:38 +msgid "Network explorer" +msgstr "ネットワークエクスプローラ" + +#: ../../operation/menu.php:113 +#: ../../operation/network/network_usage_map.php:29 +msgid "Network usage map" +msgstr "ネットワーク利用マップ" + +#: ../../operation/menu.php:134 msgid "SNMP browser" msgstr "SNMP ブラウザ" -#: ../../operation/menu.php:92 -#: ../../operation/snmpconsole/snmp_mib_uploader.php:30 +#: ../../operation/menu.php:139 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:28 msgid "MIB uploader" msgstr "MIB アップローダ" -#: ../../operation/menu.php:122 -#: ../../enterprise/dashboard/widgets/network_map.php:27 -#: ../../enterprise/operation/policies/networkmap.policies.php:128 +#: ../../operation/menu.php:149 +msgid "SNMP" +msgstr "SNMP" + +#: ../../operation/menu.php:173 +#: ../../enterprise/dashboard/widgets/network_map.php:29 +#: ../../enterprise/dashboard/widgets/network_map.php:151 msgid "Network map" msgstr "ネットワークマップ" -#: ../../operation/menu.php:227 +#: ../../operation/menu.php:273 msgid "List of Gis maps" msgstr "GISマップ一覧" -#: ../../operation/menu.php:261 +#: ../../operation/menu.php:312 msgid "Topology maps" msgstr "トポロジーマップ" -#: ../../operation/menu.php:325 +#: ../../operation/menu.php:405 msgid "RSS" msgstr "RSS" -#: ../../operation/menu.php:330 +#: ../../operation/menu.php:410 msgid "Marquee" msgstr "スクリーンセーバー" -#: ../../operation/menu.php:336 -msgid "CSV File" -msgstr "CSVファイル" - -#: ../../operation/menu.php:366 +#: ../../operation/menu.php:440 ../../operation/users/user_edit_header.php:121 msgid "Workspace" msgstr "ワークスペース" -#: ../../operation/menu.php:379 +#: ../../operation/menu.php:452 +msgid "Configure user notifications" +msgstr "ユーザ通知設定" + +#: ../../operation/menu.php:458 msgid "WebChat" msgstr "ウェブチャット" -#: ../../operation/menu.php:401 +#: ../../operation/menu.php:482 msgid "List of Incidents" msgstr "インシデント一覧" -#: ../../operation/menu.php:416 +#: ../../operation/menu.php:492 ../../operation/messages/message_edit.php:75 +#: ../../operation/messages/message_list.php:65 +msgid "Messages" +msgstr "メッセージ" + +#: ../../operation/menu.php:498 msgid "Messages List" msgstr "メッセージ一覧" -#: ../../operation/menu.php:417 +#: ../../operation/menu.php:499 msgid "New message" msgstr "新規メッセージ" -#: ../../operation/menu.php:442 +#: ../../operation/menu.php:520 msgid "Scheduled downtime" msgstr "計画停止" -#: ../../operation/menu.php:447 -msgid "Recon view" -msgstr "自動検出表示" - -#: ../../operation/menu.php:522 +#: ../../operation/menu.php:594 msgid "Tools" msgstr "ツール" -#: ../../operation/messages/message_edit.php:35 -#: ../../operation/messages/message_list.php:32 +#: ../../operation/messages/message_edit.php:51 +#: ../../operation/messages/message_list.php:46 msgid "Received messages" msgstr "受信メッセージ" -#: ../../operation/messages/message_edit.php:39 -#: ../../operation/messages/message_list.php:36 +#: ../../operation/messages/message_edit.php:60 +#: ../../operation/messages/message_list.php:51 msgid "Sent messages" msgstr "送信済みのメッセージ" -#: ../../operation/messages/message_edit.php:43 -#: ../../operation/messages/message_list.php:40 -#: ../../operation/messages/message_list.php:226 +#: ../../operation/messages/message_edit.php:69 +#: ../../operation/messages/message_list.php:59 +#: ../../operation/messages/message_list.php:272 msgid "Create message" msgstr "メッセージの作成" -#: ../../operation/messages/message_edit.php:60 +#: ../../operation/messages/message_edit.php:94 msgid "This message does not exist in the system" msgstr "このメッセージはシステム上に存在しません。" -#: ../../operation/messages/message_edit.php:79 -#: ../../operation/messages/message_edit.php:160 -#: ../../operation/messages/message_list.php:125 -msgid "Sender" -msgstr "差出人" - -#: ../../operation/messages/message_edit.php:80 -msgid "at" -msgstr "時刻:" - -#: ../../operation/messages/message_edit.php:82 -#: ../../operation/messages/message_edit.php:169 -#: ../../operation/messages/message_list.php:123 -msgid "Destination" -msgstr "宛先" - -#: ../../operation/messages/message_edit.php:92 -#: ../../operation/messages/message_edit.php:210 -#: ../../operation/users/webchat.php:86 -#: ../../enterprise/dashboard/widgets/example.php:25 -msgid "Message" -msgstr "メッセージ" - -#: ../../operation/messages/message_edit.php:104 +#: ../../operation/messages/message_edit.php:168 msgid "wrote" msgstr "によると" -#: ../../operation/messages/message_edit.php:119 +#: ../../operation/messages/message_edit.php:183 +msgid "Delete conversation" +msgstr "メッセージ削除" + +#: ../../operation/messages/message_edit.php:190 msgid "Reply" msgstr "返信" -#: ../../operation/messages/message_edit.php:136 +#: ../../operation/messages/message_edit.php:217 #, php-format msgid "Message successfully sent to user %s" msgstr "ユーザ %s 宛にメッセージを送りました。" -#: ../../operation/messages/message_edit.php:137 +#: ../../operation/messages/message_edit.php:218 #, php-format msgid "Error sending message to user %s" msgstr "ユーザ %s 宛のメッセージ送信に失敗しました。" -#: ../../operation/messages/message_edit.php:145 +#: ../../operation/messages/message_edit.php:234 msgid "Message successfully sent" msgstr "メッセージを送りました。" -#: ../../operation/messages/message_edit.php:146 +#: ../../operation/messages/message_edit.php:235 #, php-format msgid "Error sending message to group %s" msgstr "グループ %s 宛のメッセージ送信に失敗しました。" -#: ../../operation/messages/message_edit.php:203 +#: ../../operation/messages/message_edit.php:249 +#: ../../operation/messages/message_list.php:164 +msgid "Sender" +msgstr "差出人" + +#: ../../operation/messages/message_edit.php:257 +#: ../../operation/messages/message_list.php:162 +msgid "Destination" +msgstr "宛先" + +#: ../../operation/messages/message_edit.php:311 msgid "Select user" msgstr "ユーザの選択" -#: ../../operation/messages/message_edit.php:204 +#: ../../operation/messages/message_edit.php:318 msgid "OR" msgstr "または" -#: ../../operation/messages/message_edit.php:205 +#: ../../operation/messages/message_edit.php:326 msgid "Select group" msgstr "グループの選択" -#: ../../operation/messages/message_edit.php:217 -#: ../../operation/users/webchat.php:90 +#: ../../operation/messages/message_edit.php:341 +#: ../../operation/users/webchat.php:87 +#: ../../enterprise/dashboard/widgets/example.php:25 +#: ../../enterprise/include/functions_cron.php:190 +#: ../../enterprise/include/functions_cron.php:235 +#: ../../enterprise/operation/reporting/custom_reporting.php:112 +msgid "Message" +msgstr "メッセージ" + +#: ../../operation/messages/message_edit.php:356 +#: ../../operation/users/webchat.php:98 msgid "Send message" msgstr "メッセージを送信する" -#: ../../operation/messages/message_list.php:74 +#: ../../operation/messages/message_list.php:104 msgid "Not deleted. Error deleting messages" msgstr "削除できません。メッセージ削除エラー" -#: ../../operation/messages/message_list.php:80 -#: ../../operation/messages/message_list.php:88 +#: ../../operation/messages/message_list.php:112 +#: ../../operation/messages/message_list.php:121 msgid "You have" msgstr "あなたのアカウントに" -#: ../../operation/messages/message_list.php:81 +#: ../../operation/messages/message_list.php:112 msgid "sent message(s)" msgstr "通の送信済メッセージがあります" -#: ../../operation/messages/message_list.php:89 +#: ../../operation/messages/message_list.php:121 msgid "unread message(s)" msgstr "通の新しいメッセージがあります。" -#: ../../operation/messages/message_list.php:97 +#: ../../operation/messages/message_list.php:132 msgid "There are no messages." msgstr "メッセージがありません。" -#: ../../operation/messages/message_list.php:136 +#: ../../operation/messages/message_list.php:182 msgid "Click to read" msgstr "メッセージを読む" -#: ../../operation/messages/message_list.php:141 +#: ../../operation/messages/message_list.php:186 msgid "Mark as unread" msgstr "未読にする" -#: ../../operation/messages/message_list.php:148 -#: ../../operation/messages/message_list.php:153 +#: ../../operation/messages/message_list.php:192 +#: ../../operation/messages/message_list.php:196 msgid "Message unread - click to read" msgstr "未読メッセージ - クリックして読む" -#: ../../operation/messages/message_list.php:180 +#: ../../operation/messages/message_list.php:224 msgid "No Subject" msgstr "件名なし" -#: ../../operation/netflow/nf_live_view.php:108 -#: ../../operation/netflow/nf_live_view.php:133 -#: ../../operation/netflow/nf_live_view.php:137 +#: ../../operation/netflow/nf_live_view.php:123 +#: ../../operation/netflow/nf_live_view.php:145 +#: ../../operation/netflow/nf_live_view.php:151 msgid "Netflow live view" msgstr "Netflow ライブビュー" -#: ../../operation/netflow/nf_live_view.php:122 -#, php-format -msgid "nfdump binary (%s) not found!" -msgstr "nfdump バイナリ (%s) が見つかりません!" - -#: ../../operation/netflow/nf_live_view.php:127 -msgid "Make sure nfdump version 1.6.8 or newer is installed!" -msgstr "nfdump のバージョン 1.6.8 以上がインストールされていることを確認してください!" - -#: ../../operation/netflow/nf_live_view.php:149 +#: ../../operation/netflow/nf_live_view.php:162 msgid "Error creating filter" msgstr "フィルタ作成エラー" -#: ../../operation/netflow/nf_live_view.php:152 +#: ../../operation/netflow/nf_live_view.php:164 msgid "Filter created successfully" msgstr "フィルタを作成しました" -#: ../../operation/netflow/nf_live_view.php:167 +#: ../../operation/netflow/nf_live_view.php:183 msgid "Filter updated successfully" msgstr "フィルタを更新しました" -#: ../../operation/netflow/nf_live_view.php:168 +#: ../../operation/netflow/nf_live_view.php:184 msgid "Error updating filter" msgstr "フィルタ更新エラー" -#: ../../operation/netflow/nf_live_view.php:193 +#: ../../operation/netflow/nf_live_view.php:208 msgid "Draw live filter" msgstr "ライブ表示フィルタ" -#: ../../operation/netflow/nf_live_view.php:224 +#: ../../operation/netflow/nf_live_view.php:242 msgid "Connection" msgstr "接続" -#: ../../operation/netflow/nf_live_view.php:248 +#: ../../operation/netflow/nf_live_view.php:263 +#: ../../operation/network/network_report.php:102 +#: ../../operation/network/network_usage_map.php:75 +#: ../../enterprise/operation/log/log_viewer.php:493 +msgid "Start date" +msgstr "開始日時" + +#: ../../operation/netflow/nf_live_view.php:284 +#: ../../operation/network/network_report.php:121 +#: ../../operation/network/network_usage_map.php:94 +msgid "Select this checkbox to write interval instead a date." +msgstr "日時の代わりに間隔を記載するにはこのチェックボックスを選択してください。" + +#: ../../operation/netflow/nf_live_view.php:295 msgid "The interval will be divided in chunks the length of the resolution." msgstr "間隔は解像度の長さに分割されます。" -#: ../../operation/netflow/nf_live_view.php:283 -msgid "IP address resolution" -msgstr "IP アドレス解決" - -#: ../../operation/netflow/nf_live_view.php:335 +#: ../../operation/netflow/nf_live_view.php:396 msgid "Select a filter" msgstr "フィルタを選択" -#: ../../operation/netflow/nf_live_view.php:402 -msgid "Router ip" -msgstr "ルータIP" +#: ../../operation/netflow/nf_live_view.php:469 +msgid "IP address resolution" +msgstr "IP アドレス解決" -#: ../../operation/netflow/nf_live_view.php:406 -msgid "Bytes per second" -msgstr "バイト/秒" +#: ../../operation/netflow/nf_live_view.php:472 +msgid "Source ip" +msgstr "ソース IP" -#: ../../operation/netflow/nf_live_view.php:415 +#: ../../operation/netflow/nf_live_view.php:495 msgid "Draw" msgstr "描画" -#: ../../operation/netflow/nf_live_view.php:419 +#: ../../operation/netflow/nf_live_view.php:499 msgid "Save as new filter" msgstr "新規フィルタとして保存" -#: ../../operation/netflow/nf_live_view.php:420 +#: ../../operation/netflow/nf_live_view.php:500 msgid "Update current filter" msgstr "現在のフィルタを更新" -#: ../../operation/netflow/nf_live_view.php:434 +#: ../../operation/netflow/nf_live_view.php:514 msgid "No filter selected" msgstr "フィルタが選択されていません" -#: ../../operation/reporting/custom_reporting.php:32 -#: ../../operation/reporting/graph_viewer.php:356 +#: ../../operation/network/network_report.php:67 +#: ../../operation/network/network_usage_map.php:125 +msgid "Data to show" +msgstr "表示データ" + +#: ../../operation/network/network_report.php:78 +#: ../../operation/network/network_usage_map.php:104 +msgid "Number of result to show" +msgstr "表示する結果の数" + +#: ../../operation/network/network_report.php:109 +#: ../../operation/network/network_usage_map.php:82 +msgid "Time Period" +msgstr "期間" + +#: ../../operation/network/network_report.php:198 +#: ../../operation/network/network_report.php:246 +msgid "Flows" +msgstr "フロー" + +#: ../../operation/network/network_report.php:209 +#: ../../operation/network/network_report.php:249 +msgid "Packets" +msgstr "パケット" + +#: ../../operation/network/network_report.php:270 +#, php-format +msgid "Filtered by port %s. Click here to remove the filter." +msgstr "ポート %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" + +#: ../../operation/network/network_report.php:270 +#, php-format +msgid "Filtered by IP %s. Click here to remove the filter." +msgstr "IP %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" + +#: ../../operation/network/network_usage_map.php:140 +msgid "Show netflow map" +msgstr "Netflow マップ表示" + +#: ../../operation/network/network_usage_map.php:151 +msgid "Show NTA map" +msgstr "NTA マップ表示" + +#: ../../operation/network/network_usage_map.php:199 +msgid "No data retrieved" +msgstr "取得データがありません" + +#: ../../operation/reporting/custom_reporting.php:28 +#: ../../operation/reporting/graph_viewer.php:388 msgid "There are no defined reportings" msgstr "定義されたレポートがありません" -#: ../../operation/reporting/graph_viewer.php:196 +#: ../../operation/reporting/graph_viewer.php:227 msgid "No data." msgstr "データがありません。" -#: ../../operation/reporting/graph_viewer.php:228 -#: ../../operation/reporting/graph_viewer.php:251 +#: ../../operation/reporting/graph_viewer.php:261 +#: ../../operation/reporting/graph_viewer.php:283 msgid "Graph defined" msgstr "定義済みグラフ" -#: ../../operation/reporting/graph_viewer.php:235 -#: ../../enterprise/dashboard/widgets/custom_graph.php:45 +#: ../../operation/reporting/graph_viewer.php:268 +#: ../../enterprise/dashboard/widgets/custom_graph.php:54 msgid "Horizontal Bars" msgstr "水平バー" -#: ../../operation/reporting/graph_viewer.php:236 -#: ../../enterprise/dashboard/widgets/custom_graph.php:46 +#: ../../operation/reporting/graph_viewer.php:269 +#: ../../enterprise/dashboard/widgets/custom_graph.php:55 msgid "Vertical Bars" msgstr "垂直バー" -#: ../../operation/reporting/graph_viewer.php:252 +#: ../../operation/reporting/graph_viewer.php:284 msgid "Zoom x1" msgstr "ズーム x1" -#: ../../operation/reporting/graph_viewer.php:253 +#: ../../operation/reporting/graph_viewer.php:285 msgid "Zoom x2" msgstr "ズーム x2" -#: ../../operation/reporting/graph_viewer.php:254 +#: ../../operation/reporting/graph_viewer.php:286 msgid "Zoom x3" msgstr "ズーム x3" -#: ../../operation/reporting/graph_viewer.php:322 -#: ../../operation/reporting/reporting_viewer.php:314 +#: ../../operation/reporting/graph_viewer.php:354 +#: ../../operation/reporting/reporting_viewer.php:334 msgid "Invalid date selected" msgstr "不正なデータが選択されました。" -#: ../../operation/reporting/graph_viewer.php:329 +#: ../../operation/reporting/graph_viewer.php:362 msgid "Custom graph viewer" msgstr "カスタムグラフ参照" -#: ../../operation/reporting/reporting_viewer.php:147 +#: ../../operation/reporting/reporting_viewer.php:159 msgid "View Report" msgstr "レポート表示" -#: ../../operation/reporting/reporting_viewer.php:186 +#: ../../operation/reporting/reporting_viewer.php:201 msgid "Set initial date" msgstr "開始日時を指定する" -#: ../../operation/reporting/reporting_viewer.php:212 +#: ../../operation/reporting/reporting_viewer.php:229 msgid "Invalid date selected. Initial date must be before end date." msgstr "不正な日時です。開始日時は終了日時より前でなければいけません。" -#: ../../operation/search_agents.php:33 ../../operation/search_alerts.php:27 -#: ../../operation/search_graphs.php:24 ../../operation/search_maps.php:22 -#: ../../operation/search_modules.php:26 ../../operation/search_reports.php:29 -#: ../../operation/search_users.php:26 +#: ../../operation/search_agents.php:30 ../../operation/search_alerts.php:24 +#: ../../operation/search_graphs.php:21 ../../operation/search_maps.php:19 +#: ../../operation/search_modules.php:23 ../../operation/search_policies.php:22 +#: ../../operation/search_reports.php:26 ../../operation/search_users.php:23 msgid "Zero results found" msgstr "見つかりませんでした。" -#: ../../operation/search_helps.php:22 +#: ../../operation/search_helps.php:19 msgid "Zero results found." msgstr "見つかりませんでした。" -#: ../../operation/search_helps.php:23 +#: ../../operation/search_helps.php:20 #, php-format msgid "" "You can find more help in the Pandora's wiki" +"href=\"%s\">wiki" msgstr "" -"より詳細は、Pandora の " -"wikiを参照してください" +"より詳細のヘルプは、wiki " +"を参照してください" -#: ../../operation/search_helps.php:37 +#: ../../operation/search_helps.php:33 msgid "Matches" msgstr "一致" -#: ../../operation/search_main.php:52 +#: ../../operation/search_main.php:54 ../../enterprise/meta/agentsearch.php:101 msgid "Agents found" msgstr "エージェントが見つかりました" -#: ../../operation/search_main.php:54 ../../operation/search_main.php:57 -#: ../../operation/search_main.php:68 ../../operation/search_main.php:71 -#: ../../operation/search_main.php:74 ../../operation/search_main.php:77 -#: ../../operation/search_main.php:80 +#: ../../operation/search_main.php:55 ../../operation/search_main.php:57 +#: ../../operation/search_main.php:65 ../../operation/search_main.php:67 +#: ../../operation/search_main.php:69 ../../operation/search_main.php:71 +#: ../../operation/search_main.php:74 #, php-format msgid "%s Found" msgstr "%s 件見つかりました" -#: ../../operation/search_main.php:55 +#: ../../operation/search_main.php:56 msgid "Modules found" msgstr "モジュールが見つかりました" -#: ../../operation/search_main.php:66 +#: ../../operation/search_main.php:64 msgid "Users found" msgstr "ユーザが見つかりました" -#: ../../operation/search_main.php:69 +#: ../../operation/search_main.php:66 msgid "Graphs found" msgstr "グラフが見つかりました" -#: ../../operation/search_main.php:72 +#: ../../operation/search_main.php:68 msgid "Reports found" msgstr "レポートが見つかりました" -#: ../../operation/search_main.php:75 +#: ../../operation/search_main.php:70 msgid "Maps found" msgstr "マップが見つかりました" -#: ../../operation/search_main.php:78 -msgid "Helps found" -msgstr "ヘルプがあります" - -#: ../../operation/search_main.php:88 +#: ../../operation/search_main.php:83 #, php-format msgid "Show %s of %s. View all matches" msgstr "%s 件(%s件中)の表示。全マッチ内容の表示。" -#: ../../operation/search_maps.php:33 -#: ../../enterprise/godmode/services/services.elements.php:136 +#: ../../operation/search_maps.php:29 +#: ../../enterprise/extensions/visual_console_manager.php:312 +#: ../../enterprise/godmode/services/services.elements.php:181 msgid "Elements" msgstr "エレメント" -#: ../../operation/search_results.php:124 -#: ../../enterprise/dashboard/widgets/maps_status.php:29 +#: ../../operation/search_policies.php:36 +msgid "Id_group" +msgstr "グループ ID" + +#: ../../operation/search_policies.php:49 +#: ../../enterprise/godmode/policies/policies.php:487 +#: ../../enterprise/meta/agentsearch.php:379 +msgid "Policy updated" +msgstr "ポリシーを更新しました" + +#: ../../operation/search_policies.php:57 +#: ../../enterprise/godmode/policies/policies.php:495 +#: ../../enterprise/meta/agentsearch.php:387 +msgid "Pending update policy only database" +msgstr "データベースのみポリシー更新待ち" + +#: ../../operation/search_policies.php:65 +#: ../../enterprise/godmode/policies/policies.php:503 +#: ../../enterprise/meta/agentsearch.php:395 +msgid "Pending update policy" +msgstr "ポリシー更新待ち" + +#: ../../operation/search_results.php:144 +#: ../../enterprise/dashboard/widgets/maps_status.php:32 msgid "Maps" msgstr "マップ" -#: ../../operation/search_results.php:144 -msgid "Helps" -msgstr "ヘルプ" - -#: ../../operation/search_users.php:50 +#: ../../operation/search_users.php:38 msgid "Profile" msgstr "プロファイル" #: ../../operation/servers/recon_view.php:32 -#: ../../operation/servers/recon_view.php:39 -#: ../../operation/servers/recon_view.php:54 +#: ../../operation/servers/recon_view.php:38 +#: ../../operation/servers/recon_view.php:52 msgid "Recon View" msgstr "自動検出表示" -#: ../../operation/servers/recon_view.php:33 -msgid "Recon Server is disabled" -msgstr "自動検出サーバが無効です" +#: ../../operation/servers/recon_view.php:147 +msgid "Network recon task" +msgstr "ネットワーク自動検出タスク" -#: ../../operation/servers/recon_view.php:107 -#: ../../operation/servers/recon_view.php:161 -#: ../../enterprise/extensions/ipam/ipam_network.php:151 -#: ../../enterprise/extensions/ipam/ipam_network.php:167 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:613 -#: ../../enterprise/godmode/policies/policy_queue.php:397 -#: ../../enterprise/meta/advanced/policymanager.queue.php:259 -msgid "Progress" -msgstr "進捗状況" - -#: ../../operation/servers/recon_view.php:143 -msgid "Pending" -msgstr "保留中" - -#: ../../operation/servers/recon_view.php:176 +#: ../../operation/servers/recon_view.php:174 msgid "has no recon tasks assigned" msgstr "は自動検出タスクが割り当てられていません" -#: ../../operation/snmpconsole/snmp_browser.php:52 +#: ../../operation/snmpconsole/snmp_browser.php:93 msgid "Create network components" msgstr "ネットワークコンポーネント作成" -#: ../../operation/snmpconsole/snmp_browser.php:59 +#: ../../operation/snmpconsole/snmp_browser.php:107 msgid "Error creating the following modules:" msgstr "以下のモジュール作成エラー:" -#: ../../operation/snmpconsole/snmp_browser.php:69 +#: ../../operation/snmpconsole/snmp_browser.php:117 msgid "Modules successfully created" msgstr "モジュールを作成しました" -#: ../../operation/snmpconsole/snmp_browser.php:114 +#: ../../operation/snmpconsole/snmp_browser.php:192 msgid "SNMP Browser" msgstr "SNMP ブラウザ" -#: ../../operation/snmpconsole/snmp_mib_uploader.php:66 +#: ../../operation/snmpconsole/snmp_mib_uploader.php:70 msgid "" "MIB files will be installed on the system. Please note that a MIB may depend " "on other MIB. To customize trap definitions use the SNMP trap editor." @@ -28635,34 +34078,34 @@ msgstr "" "MIB ファイルがシステムにインストールされます。MIB は他の MIB " "に依存する可能性があることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップエディタを使ってください。" -#: ../../operation/snmpconsole/snmp_statistics.php:116 -#: ../../operation/snmpconsole/snmp_view.php:561 +#: ../../operation/snmpconsole/snmp_statistics.php:118 +#: ../../operation/snmpconsole/snmp_view.php:688 msgid "There are no SNMP traps in database" msgstr "SNMP トラップデータがありません。" -#: ../../operation/snmpconsole/snmp_statistics.php:127 +#: ../../operation/snmpconsole/snmp_statistics.php:131 msgid "Traps received by source" msgstr "ソースごとの受信トラップ" -#: ../../operation/snmpconsole/snmp_statistics.php:141 -#: ../../operation/snmpconsole/snmp_statistics.php:199 +#: ../../operation/snmpconsole/snmp_statistics.php:145 +#: ../../operation/snmpconsole/snmp_statistics.php:213 msgid "Number" msgstr "数" -#: ../../operation/snmpconsole/snmp_statistics.php:156 -#: ../../operation/snmpconsole/snmp_view.php:788 +#: ../../operation/snmpconsole/snmp_statistics.php:159 +#: ../../operation/snmpconsole/snmp_view.php:907 msgid "View agent details" msgstr "エージェント概要の参照" -#: ../../operation/snmpconsole/snmp_statistics.php:185 +#: ../../operation/snmpconsole/snmp_statistics.php:199 msgid "Traps received by Enterprise String" msgstr "Enterprise文字列ごとの受信トラップ" -#: ../../operation/snmpconsole/snmp_statistics.php:198 +#: ../../operation/snmpconsole/snmp_statistics.php:212 msgid "Trap Enterprise String" msgstr "Enterprise文字列トラップ" -#: ../../operation/snmpconsole/snmp_view.php:471 +#: ../../operation/snmpconsole/snmp_view.php:578 msgid "" "Search by any alphanumeric field in the trap.\n" "\t\tREMEMBER trap sources need to be searched by IP Address" @@ -28670,640 +34113,671 @@ msgstr "" "トラップの英数字フィールドで検索。\n" "\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してください。" -#: ../../operation/snmpconsole/snmp_view.php:476 +#: ../../operation/snmpconsole/snmp_view.php:592 msgid "From (Date)" msgstr "開始 (日付)" -#: ../../operation/snmpconsole/snmp_view.php:478 +#: ../../operation/snmpconsole/snmp_view.php:594 msgid "To (Date)" msgstr "終了 (日付)" -#: ../../operation/snmpconsole/snmp_view.php:481 +#: ../../operation/snmpconsole/snmp_view.php:597 msgid "From (Time)" msgstr "開始 (時間)" -#: ../../operation/snmpconsole/snmp_view.php:483 +#: ../../operation/snmpconsole/snmp_view.php:599 msgid "To (Time)" msgstr "終了 (時間)" -#: ../../operation/snmpconsole/snmp_view.php:488 +#: ../../operation/snmpconsole/snmp_view.php:603 msgid "Search by trap type" msgstr "トラップタイプによる検索" -#: ../../operation/snmpconsole/snmp_view.php:502 +#: ../../operation/snmpconsole/snmp_view.php:627 msgid "Group by Enterprise String/IP" msgstr "Enterprise 文字列/IP ごとのグループ" -#: ../../operation/snmpconsole/snmp_view.php:559 +#: ../../operation/snmpconsole/snmp_view.php:686 msgid "There are no SNMP traps in database that contains this filter" msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。" -#: ../../operation/snmpconsole/snmp_view.php:593 -#: ../../enterprise/include/functions_dashboard.php:649 +#: ../../operation/snmpconsole/snmp_view.php:705 +#: ../../enterprise/include/functions_dashboard.php:776 msgid "Exit fullscreen" msgstr "全画面表示を終了" -#: ../../operation/snmpconsole/snmp_view.php:623 -#: ../../enterprise/include/functions_dashboard.php:880 +#: ../../operation/snmpconsole/snmp_view.php:719 +#: ../../enterprise/include/functions_dashboard.php:1055 msgid "Refresh every" msgstr "更新周期" -#: ../../operation/snmpconsole/snmp_view.php:635 +#: ../../operation/snmpconsole/snmp_view.php:731 msgid "SNMP Traps" msgstr "SNMP トラップ" -#: ../../operation/snmpconsole/snmp_view.php:723 +#: ../../operation/snmpconsole/snmp_view.php:816 msgid "Trap subtype" msgstr "トラップサブタイプ" -#: ../../operation/snmpconsole/snmp_view.php:880 +#: ../../operation/snmpconsole/snmp_view.php:999 msgid "Variable bindings:" msgstr "バインド変数:" -#: ../../operation/snmpconsole/snmp_view.php:897 +#: ../../operation/snmpconsole/snmp_view.php:1005 msgid "See more details" msgstr "詳細表示" -#: ../../operation/snmpconsole/snmp_view.php:910 +#: ../../operation/snmpconsole/snmp_view.php:1017 msgid "Enterprise String:" msgstr "Enterprise文字列:" -#: ../../operation/snmpconsole/snmp_view.php:916 -#: ../../enterprise/godmode/agentes/collections.data.php:379 -#: ../../enterprise/meta/include/functions_autoprovision.php:473 +#: ../../operation/snmpconsole/snmp_view.php:1023 +#: ../../enterprise/godmode/agentes/collections.data.php:442 +#: ../../enterprise/meta/advanced/collections.data.php:395 +#: ../../enterprise/meta/include/functions_autoprovision.php:543 msgid "Description:" msgstr "説明:" -#: ../../operation/snmpconsole/snmp_view.php:948 +#: ../../operation/snmpconsole/snmp_view.php:1069 msgid "Trap type:" msgstr "トラップタイプ:" -#: ../../operation/snmpconsole/snmp_view.php:976 +#: ../../operation/snmpconsole/snmp_view.php:1095 msgid "Count:" msgstr "件数:" -#: ../../operation/snmpconsole/snmp_view.php:980 +#: ../../operation/snmpconsole/snmp_view.php:1099 msgid "First trap:" msgstr "最初のトラップ:" -#: ../../operation/snmpconsole/snmp_view.php:984 +#: ../../operation/snmpconsole/snmp_view.php:1103 msgid "Last trap:" msgstr "最新のトラップ:" -#: ../../operation/snmpconsole/snmp_view.php:1004 +#: ../../operation/snmpconsole/snmp_view.php:1124 msgid "No matching traps found" msgstr "条件にマッチするトラップがありません。" -#: ../../operation/snmpconsole/snmp_view.php:1114 -#: ../../enterprise/include/functions_dashboard.php:1007 -msgid "Until next" -msgstr "次まで" - -#: ../../operation/tree.php:88 +#: ../../operation/tree.php:103 #, php-format msgid "Sort the agents by %s" msgstr "%s によるエージェント並び替え" -#: ../../operation/tree.php:91 +#: ../../operation/tree.php:106 msgid "tags" msgstr "タグ" -#: ../../operation/tree.php:97 +#: ../../operation/tree.php:114 msgid "groups" msgstr "グループ" -#: ../../operation/tree.php:100 +#: ../../operation/tree.php:118 msgid "module groups" msgstr "モジュールグループ" -#: ../../operation/tree.php:107 +#: ../../operation/tree.php:127 msgid "policies" msgstr "ポリシー" -#: ../../operation/tree.php:144 +#: ../../operation/tree.php:166 msgid "Search group" msgstr "検索グループ" -#: ../../operation/tree.php:150 +#: ../../operation/tree.php:170 ../../operation/tree.php:213 +msgid "Show not init modules" +msgstr "未初期化モジュール表示" + +#: ../../operation/tree.php:179 msgid "Search agent" msgstr "エージェント検索" -#: ../../operation/tree.php:153 +#: ../../operation/tree.php:182 +msgid "Show not init agents" +msgstr "未初期化エージェント表示" + +#: ../../operation/tree.php:185 msgid "Show full hirearchy" msgstr "全階層表示" -#: ../../operation/tree.php:156 +#: ../../operation/tree.php:188 +#: ../../enterprise/godmode/servers/HA_cluster.php:124 msgid "Agent status" msgstr "エージェント状態" -#: ../../operation/tree.php:176 +#: ../../operation/tree.php:210 msgid "Search module" msgstr "モジュール検索" -#: ../../operation/tree.php:202 +#: ../../operation/tree.php:242 msgid "Tree search" msgstr "ツリー検索" -#: ../../operation/tree.php:286 -#: ../../enterprise/dashboard/widgets/tree_view.php:198 -msgid "Found items" -msgstr "アイテムを見つけました" - -#: ../../operation/tree.php:294 -#: ../../enterprise/dashboard/widgets/tree_view.php:206 -#: ../../enterprise/include/functions_reporting_csv.php:471 -msgid "Total modules" -msgstr "全モジュール" - -#: ../../operation/tree.php:303 -#: ../../enterprise/dashboard/widgets/tree_view.php:215 -msgid "Critical agents" -msgstr "障害エージェント数" - -#: ../../operation/tree.php:308 -#: ../../enterprise/dashboard/widgets/tree_view.php:220 -msgid "Warning agents" -msgstr "警告エージェント数" - -#: ../../operation/tree.php:313 -#: ../../enterprise/dashboard/widgets/tree_view.php:225 -msgid "Unknown agents" -msgstr "不明エージェント数" - -#: ../../operation/tree.php:318 -#: ../../enterprise/dashboard/widgets/tree_view.php:230 -msgid "Not init agents" -msgstr "未初期化エージェント数" - -#: ../../operation/tree.php:323 -#: ../../enterprise/dashboard/widgets/tree_view.php:235 -msgid "Normal agents" -msgstr "正常エージェント数" - -#: ../../operation/users/user_edit.php:132 -#: ../../operation/users/user_edit.php:139 -msgid "Password successfully updated" -msgstr "パスワードを更新しました。" - -#: ../../operation/users/user_edit.php:133 -#: ../../operation/users/user_edit.php:140 -#, php-format -msgid "Error updating passwords: %s" -msgstr "パスワードの更新に失敗しました。:%s" - -#: ../../operation/users/user_edit.php:145 +#: ../../operation/users/user_edit.php:165 msgid "" "Passwords didn't match or other problem encountered while updating passwords" msgstr "パスワードが一致しない、または他の原因でパスワードの更新に失敗しました。" -#: ../../operation/users/user_edit.php:157 -#: ../../operation/users/user_edit.php:167 +#: ../../operation/users/user_edit.php:178 +#: ../../operation/users/user_edit.php:193 +msgid "Password successfully updated" +msgstr "パスワードを更新しました。" + +#: ../../operation/users/user_edit.php:188 +#: ../../operation/users/user_edit.php:234 msgid "Error updating user info" msgstr "ユーザ情報の更新に失敗しました。" -#: ../../operation/users/user_edit.php:177 +#: ../../operation/users/user_edit.php:196 +msgid "No changes have been made" +msgstr "変更されていません" + +#: ../../operation/users/user_edit.php:207 +msgid "Please enter a valid email" +msgstr "正しいメールアドレスを入力してください" + +#: ../../operation/users/user_edit.php:209 +msgid "Please enter a valid phone number" +msgstr "正しい電話番号を入力してください" + +#: ../../operation/users/user_edit.php:215 +msgid "Error updating passwords: " +msgstr "パスワード更新エラー: " + +#: ../../operation/users/user_edit.php:239 msgid "Edit my User" msgstr "ユーザ編集" -#: ../../operation/users/user_edit.php:221 -#: ../../enterprise/include/process_reset_pass.php:99 -#: ../../enterprise/meta/include/process_reset_pass.php:76 +#: ../../operation/users/user_edit.php:282 +#: ../../enterprise/include/process_reset_pass.php:95 +#: ../../enterprise/meta/include/process_reset_pass.php:94 msgid "New Password" msgstr "新しいパスワード" -#: ../../operation/users/user_edit.php:231 +#: ../../operation/users/user_edit.php:285 msgid "" -"You can not change your password from Pandora FMS under the current " -"authentication scheme" -msgstr "現在の認証方式では、Pandora FMS からパスワードを変更できません。" +"You cannot change your password under the current authentication scheme" +msgstr "現在の認証スキームではパスワードを変更できません" -#: ../../operation/users/user_edit.php:240 +#: ../../operation/users/user_edit.php:299 msgid "If checkbox is clicked then block size global configuration is used" msgstr "チェックボックスをクリックすると、システム全体の設定が利用されます" -#: ../../operation/users/user_edit.php:342 +#: ../../operation/users/user_edit.php:409 msgid "Show information" msgstr "情報表示" -#: ../../operation/users/user_edit.php:348 +#: ../../operation/users/user_edit.php:417 msgid "Event filter" msgstr "イベントフィルタ" -#: ../../operation/users/user_edit.php:353 +#: ../../operation/users/user_edit.php:430 msgid "Newsletter Subscribed" msgstr "ニュースレター購読済" -#: ../../operation/users/user_edit.php:355 -msgid "Already subscribed to Pandora FMS newsletter" -msgstr "Pandora FMS ニュースレターは購読済です" +#: ../../operation/users/user_edit.php:432 +#, php-format +msgid "Already subscribed to %s newsletter" +msgstr "すでに %s ニュースレターを購読しています" -#: ../../operation/users/user_edit.php:361 +#: ../../operation/users/user_edit.php:435 msgid "Newsletter Reminder" msgstr "ニュースレターリマインダ" -#: ../../operation/users/user_edit.php:422 +#: ../../operation/users/user_edit.php:508 msgid "Autorefresh" msgstr "自動更新" -#: ../../operation/users/user_edit.php:422 +#: ../../operation/users/user_edit.php:509 msgid "This will activate autorefresh in selected pages" msgstr "選択したページで自動更新を有効にします" -#: ../../operation/users/user_edit.php:429 +#: ../../operation/users/user_edit.php:544 msgid "Full list of pages" msgstr "全ページ一覧" -#: ../../operation/users/user_edit.php:431 -msgid "List of pages with autorefresh" -msgstr "自動更新ページ一覧" - -#: ../../operation/users/user_edit.php:437 +#: ../../operation/users/user_edit.php:553 +#: ../../operation/users/user_edit.php:554 msgid "Push selected pages into autorefresh list" msgstr "選択したページを自動更新にする" -#: ../../operation/users/user_edit.php:441 +#: ../../operation/users/user_edit.php:562 +#: ../../operation/users/user_edit.php:563 msgid "Pop selected pages out of autorefresh list" msgstr "選択したページを自動更新から外す" -#: ../../operation/users/user_edit.php:451 +#: ../../operation/users/user_edit.php:568 +msgid "List of pages with autorefresh" +msgstr "自動更新ページ一覧" + +#: ../../operation/users/user_edit.php:577 msgid "Time autorefresh" msgstr "自動更新時間" -#: ../../operation/users/user_edit.php:480 +#: ../../operation/users/user_edit.php:579 msgid "" -"You can not change your user info from Pandora FMS under the current " -"authentication scheme" -msgstr "現在の認証方式では、Pandora FMS からユーザ情報を変更できません。" +"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:552 +#: ../../operation/users/user_edit.php:673 +msgid "eHorus user configuration" +msgstr "eHorus ユーザ設定" + +#: ../../operation/users/user_edit.php:716 +msgid "" +"You can not change your user info under the current authentication scheme" +msgstr "現在の認証スキームではユーザ情報を変更できません" + +#: ../../operation/users/user_edit.php:791 msgid "This user doesn't have any assigned profile/group." msgstr "このユーザにはプロファイル・グループが割り当てられていません。" -#: ../../operation/users/user_edit.php:721 +#: ../../operation/users/user_edit.php:995 msgid "Double autentication information" msgstr "二段階認証情報" -#: ../../operation/users/user_edit.php:784 -#: ../../operation/users/user_edit.php:860 +#: ../../operation/users/user_edit.php:1058 +#: ../../operation/users/user_edit.php:1134 msgid "Double autentication activation" msgstr "二段階認証の有効化" -#: ../../operation/users/user_edit.php:810 +#: ../../operation/users/user_edit.php:1084 msgid "The double authentication will be deactivated" msgstr "二段階認証は無効化されます" -#: ../../operation/users/user_edit.php:811 +#: ../../operation/users/user_edit.php:1085 msgid "Deactivate" msgstr "無効化" -#: ../../operation/users/user_edit.php:843 +#: ../../operation/users/user_edit.php:1117 msgid "The double autentication was deactivated successfully" msgstr "二段階認証を無効化しました" -#: ../../operation/users/user_edit.php:846 -#: ../../operation/users/user_edit.php:850 +#: ../../operation/users/user_edit.php:1120 +#: ../../operation/users/user_edit.php:1124 msgid "There was an error deactivating the double autentication" msgstr "二段階認証の無効化でエラーが発生しました" -#: ../../operation/users/webchat.php:71 +#: ../../operation/users/user_edit_header.php:98 +msgid "User notifications" +msgstr "ユーザ通知" + +#: ../../operation/users/user_edit_notifications.php:64 +msgid "Also receive an email" +msgstr "メールも受信する" + +#: ../../operation/users/webchat.php:73 msgid "Webchat" msgstr "ウェブチャット" -#: ../../operation/users/webchat.php:82 +#: ../../operation/users/webchat.php:84 msgid "Users Online" msgstr "オンラインユーザ" -#: ../../operation/users/webchat.php:157 -msgid "Connection established...get last 24h messages..." -msgstr "接続しました... 直近24時間のメッセージを取得します..." +#: ../../operation/users/webchat.php:174 +msgid "Connection established - Retrieving messages since " +msgstr "接続を確立しました - 次の日時以降のメッセージを取得します: " -#: ../../operation/users/webchat.php:168 +#: ../../operation/users/webchat.php:185 msgid "Error in connection." msgstr "接続エラー" -#: ../../operation/users/webchat.php:249 +#: ../../operation/users/webchat.php:266 msgid "Error sendding message." msgstr "メッセージ送信エラー" -#: ../../operation/users/webchat.php:277 +#: ../../operation/users/webchat.php:294 msgid "Error login." msgstr "ログインエラー" -#: ../../enterprise/dashboard/dashboards.php:34 -#: ../../enterprise/mobile/operation/home.php:35 +#: ../../operation/visual_console/legacy_public_view.php:147 +#: ../../operation/visual_console/public_view.php:129 +msgid "QR code of the page" +msgstr "ページの QR コード" + +#: ../../operation/visual_console/legacy_public_view.php:176 +#: ../../operation/visual_console/legacy_view.php:282 +msgid "Until refresh" +msgstr "リフレッシュまで" + +#: ../../operation/visual_console/view.php:162 +msgid "Move and resize mode" +msgstr "移動およびサイズ変更モード" + +#: ../../enterprise/dashboard/dashboards.php:45 +#: ../../enterprise/mobile/operation/home.php:42 msgid "Dashboards" msgstr "ダッシュボード" -#: ../../enterprise/dashboard/dashboards.php:61 +#: ../../enterprise/dashboard/dashboards.php:86 msgid "Successfully duplicate" msgstr "複製しました" -#: ../../enterprise/dashboard/dashboards.php:62 +#: ../../enterprise/dashboard/dashboards.php:87 msgid "Could not be duplicate" msgstr "複製に失敗しました" -#: ../../enterprise/dashboard/dashboards.php:87 -#: ../../enterprise/dashboard/main_dashboard.php:297 -#: ../../enterprise/dashboard/main_dashboard.php:306 +#: ../../enterprise/dashboard/dashboards.php:113 +#: ../../enterprise/dashboard/main_dashboard.php:291 +#: ../../enterprise/dashboard/main_dashboard.php:308 msgid "Cells" msgstr "セル" -#: ../../enterprise/dashboard/dashboards.php:114 +#: ../../enterprise/dashboard/dashboards.php:142 msgid "There are no dashboards defined." msgstr "定義済のダッシュボードがありません。" -#: ../../enterprise/dashboard/dashboards.php:132 +#: ../../enterprise/dashboard/dashboards.php:159 #, php-format msgid "Private for (%s)" msgstr "個人のみ (%s)" -#: ../../enterprise/dashboard/dashboards.php:169 +#: ../../enterprise/dashboard/dashboards.php:202 msgid "New dashboard" msgstr "新規ダッシュボード" -#: ../../enterprise/dashboard/full_dashboard.php:51 +#: ../../enterprise/dashboard/full_dashboard.php:49 #: ../../enterprise/dashboard/public_dashboard.php:67 msgid "No slides selected" msgstr "スライドが選択されていません" -#: ../../enterprise/dashboard/main_dashboard.php:159 +#: ../../enterprise/dashboard/main_dashboard.php:151 msgid "Show link to public dashboard" msgstr "公開ダッシュボードへのリンク表示" -#: ../../enterprise/dashboard/main_dashboard.php:176 +#: ../../enterprise/dashboard/main_dashboard.php:167 msgid "Back to dashboards list" msgstr "ダッシュボード一覧へ戻る" -#: ../../enterprise/dashboard/main_dashboard.php:182 +#: ../../enterprise/dashboard/main_dashboard.php:173 msgid "Save the actual layout design" msgstr "現在のレイアウトデザインの保存" -#: ../../enterprise/dashboard/main_dashboard.php:197 -#: ../../enterprise/include/functions_dashboard.php:890 +#: ../../enterprise/dashboard/main_dashboard.php:181 +#: ../../enterprise/include/functions_dashboard.php:1065 msgid "Slides mode" msgstr "スライドモード" -#: ../../enterprise/dashboard/main_dashboard.php:326 +#: ../../enterprise/dashboard/main_dashboard.php:360 msgid "Items slideshow" msgstr "アイテムスライドショー" -#: ../../enterprise/dashboard/main_dashboard.php:331 +#: ../../enterprise/dashboard/main_dashboard.php:369 msgid "" "If enabled, all items of this dashboard will be shown individually into " "fullscreen mode" msgstr "有効化すると、このダッシュボードの全アイテムが全画面モードで個別に表示されます。" -#: ../../enterprise/dashboard/main_dashboard.php:361 +#: ../../enterprise/dashboard/main_dashboard.php:406 msgid "Private dashboard" msgstr "プライベートダッシュボード" -#: ../../enterprise/dashboard/main_dashboard.php:381 +#: ../../enterprise/dashboard/main_dashboard.php:421 msgid "Error: there are cells not empty." msgstr "エラー: 空でないセルがあります。" -#: ../../enterprise/dashboard/main_dashboard.php:386 +#: ../../enterprise/dashboard/main_dashboard.php:423 msgid "Error save conf dashboard" msgstr "ダッシュボード設定の保存エラー" -#: ../../enterprise/dashboard/main_dashboard.php:468 +#: ../../enterprise/dashboard/main_dashboard.php:501 msgid "Add widget" msgstr "ウィジェット追加" -#: ../../enterprise/dashboard/main_dashboard.php:475 +#: ../../enterprise/dashboard/main_dashboard.php:508 msgid "Add new widget" msgstr "新規ウィジェットの追加" -#: ../../enterprise/dashboard/main_dashboard.php:477 +#: ../../enterprise/dashboard/main_dashboard.php:510 msgid "" "Error, you are trying to add a widget in a empty cell. Please save the " "layout before to add any widget in this cell." msgstr "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェットを追加するには、先にレイアウトを保存してください。" -#: ../../enterprise/dashboard/main_dashboard.php:481 +#: ../../enterprise/dashboard/main_dashboard.php:514 msgid "There are unsaved changes" msgstr "保存されていない変更があります" -#: ../../enterprise/dashboard/main_dashboard.php:539 -#: ../../enterprise/include/functions_dashboard.php:995 +#: ../../enterprise/dashboard/main_dashboard.php:591 +#: ../../enterprise/include/functions_dashboard.php:1185 msgid "Slides" msgstr "スライド" -#: ../../enterprise/dashboard/widget.php:68 +#: ../../enterprise/dashboard/widget.php:115 msgid "Empty for a transparent background color or CSS compatible value" msgstr "透明な背景色またはCSSに合う値が空です" -#: ../../enterprise/dashboard/widget.php:317 +#: ../../enterprise/dashboard/widget.php:379 msgid "Configure widget" msgstr "ウィジェット設定" -#: ../../enterprise/dashboard/widget.php:325 +#: ../../enterprise/dashboard/widget.php:391 msgid "Delete widget" msgstr "ウェジェットの削除" -#: ../../enterprise/dashboard/widget.php:379 +#: ../../enterprise/dashboard/widget.php:442 msgid "Config widget" msgstr "ウィジェット設定" -#: ../../enterprise/dashboard/widget.php:389 -#: ../../enterprise/dashboard/widgets/agent_module.php:404 +#: ../../enterprise/dashboard/widget.php:453 +#: ../../enterprise/dashboard/widgets/agent_module.php:522 msgid "Please configure this widget before usage" msgstr "使用前にこのウィジェットを設定してください" -#: ../../enterprise/dashboard/widget.php:392 +#: ../../enterprise/dashboard/widget.php:455 msgid "Widget cannot be loaded" msgstr "ウィジェットをロードできません" -#: ../../enterprise/dashboard/widget.php:393 +#: ../../enterprise/dashboard/widget.php:456 msgid "Please, configure the widget again to recover it" msgstr "復旧するためにウィジェットを設定しなおしてください" -#: ../../enterprise/dashboard/widget.php:495 +#: ../../enterprise/dashboard/widget.php:634 msgid "" "If propagate acl is activated, this group will include its child groups" msgstr "ACLの伝播を有効にすると、このグループは子グループを含みます" -#: ../../enterprise/dashboard/widgets/agent_module.php:30 -#: ../../enterprise/dashboard/widgets/agent_module.php:32 -msgid "Show Agent/Module View" +#: ../../enterprise/dashboard/widgets/agent_module.php:44 +#: ../../enterprise/dashboard/widgets/agent_module.php:576 +msgid "Agent/Module View" msgstr "エージェント/モジュール表示" -#: ../../enterprise/dashboard/widgets/agent_module.php:427 -#: ../../enterprise/dashboard/widgets/custom_graph.php:93 -#: ../../enterprise/dashboard/widgets/events_list.php:80 -#: ../../enterprise/dashboard/widgets/events_list.php:86 -#: ../../enterprise/dashboard/widgets/events_list.php:94 -#: ../../enterprise/dashboard/widgets/groups_status.php:51 -#: ../../enterprise/dashboard/widgets/groups_status.php:57 -#: ../../enterprise/dashboard/widgets/module_icon.php:116 -#: ../../enterprise/dashboard/widgets/module_icon.php:123 -#: ../../enterprise/dashboard/widgets/module_status.php:100 -#: ../../enterprise/dashboard/widgets/module_status.php:107 -#: ../../enterprise/dashboard/widgets/module_table_value.php:102 -#: ../../enterprise/dashboard/widgets/module_table_value.php:110 -#: ../../enterprise/dashboard/widgets/module_value.php:100 -#: ../../enterprise/dashboard/widgets/module_value.php:107 -#: ../../enterprise/dashboard/widgets/single_graph.php:96 -#: ../../enterprise/dashboard/widgets/single_graph.php:102 -#: ../../enterprise/dashboard/widgets/sla_percent.php:96 -#: ../../enterprise/dashboard/widgets/sla_percent.php:103 +#: ../../enterprise/dashboard/widgets/agent_module.php:539 +#: ../../enterprise/dashboard/widgets/custom_graph.php:109 +#: ../../enterprise/dashboard/widgets/events_list.php:143 +#: ../../enterprise/dashboard/widgets/groups_status.php:60 +#: ../../enterprise/dashboard/widgets/groups_status.php:66 +#: ../../enterprise/dashboard/widgets/module_icon.php:157 +#: ../../enterprise/dashboard/widgets/module_icon.php:164 +#: ../../enterprise/dashboard/widgets/module_status.php:135 +#: ../../enterprise/dashboard/widgets/module_status.php:142 +#: ../../enterprise/dashboard/widgets/module_table_value.php:129 +#: ../../enterprise/dashboard/widgets/module_table_value.php:137 +#: ../../enterprise/dashboard/widgets/module_value.php:129 +#: ../../enterprise/dashboard/widgets/module_value.php:136 +#: ../../enterprise/dashboard/widgets/single_graph.php:111 +#: ../../enterprise/dashboard/widgets/single_graph.php:117 +#: ../../enterprise/dashboard/widgets/sla_percent.php:128 +#: ../../enterprise/dashboard/widgets/sla_percent.php:135 msgid "You don't have access" msgstr "アクセスできません。" -#: ../../enterprise/dashboard/widgets/alerts_fired.php:24 -msgid "Alerts Fired" -msgstr "発報したアラート" +#: ../../enterprise/dashboard/widgets/wux_transaction.php:29 +#: ../../enterprise/dashboard/widgets/wux_transaction.php:138 +msgid "Agent WUX transaction" +msgstr "エージェント WUX トランザクション" + +#: ../../enterprise/dashboard/widgets/wux_transaction.php:83 +#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:90 +msgid "Wux transaction" +msgstr "Wux トランザクション" #: ../../enterprise/dashboard/widgets/alerts_fired.php:26 -msgid "Alerts Fired report" -msgstr "発報アラートレポート" +#: ../../enterprise/dashboard/widgets/alerts_fired.php:96 +msgid "Triggered alerts report" +msgstr "発報したアラートのレポート" -#: ../../enterprise/dashboard/widgets/custom_graph.php:27 -msgid "Show a defined custom graph" -msgstr "定義済カスタムグラフ表示" +#: ../../enterprise/dashboard/widgets/clock.php:33 +msgid "Clock type" +msgstr "時計のタイプ" -#: ../../enterprise/dashboard/widgets/custom_graph.php:49 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:202 +#: ../../enterprise/dashboard/widgets/clock.php:37 +msgid "Analogic" +msgstr "アナログ" + +#: ../../enterprise/dashboard/widgets/clock.php:38 +msgid "Digital" +msgstr "デジタル" + +#: ../../enterprise/dashboard/widgets/custom_graph.php:25 +#: ../../enterprise/dashboard/widgets/custom_graph.php:259 +msgid "Defined custom graph" +msgstr "定義済カスタムグラフ" + +#: ../../enterprise/dashboard/widgets/custom_graph.php:60 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:207 msgid "Stacked" msgstr "積み上げ" -#: ../../enterprise/dashboard/widgets/events_list.php:28 -msgid "Latest events list" -msgstr "最新のイベント一覧" +#: ../../enterprise/dashboard/widgets/custom_graph.php:223 +msgid "" +"Could not draw pie with labels contained inside canvas. Resize widget to " +"500px width minimum" +msgstr "キャンバス内にラベル付き円グラフを表示できません。ウィジェットを少なくとも 500px にリサイズしてください。" -#: ../../enterprise/dashboard/widgets/events_list.php:39 +#: ../../enterprise/dashboard/widgets/events_list.php:28 +#: ../../enterprise/dashboard/widgets/events_list.php:262 +msgid "List of latest events" +msgstr "最新イベント一覧" + +#: ../../enterprise/dashboard/widgets/events_list.php:46 msgid "Limit" msgstr "制限" -#: ../../enterprise/dashboard/widgets/events_list.php:49 +#: ../../enterprise/dashboard/widgets/events_list.php:66 msgid "Only pending" msgstr "未承諾" -#: ../../enterprise/dashboard/widgets/example.php:23 -msgid "Welcome message to Pandora FMS" -msgstr "Pandora FMS へのウエルカムメッセージ" +#: ../../enterprise/dashboard/widgets/events_list.php:128 +#: ../../enterprise/dashboard/widgets/events_list.php:135 +msgid "You must select some group" +msgstr "いくつかのグループを選択する必要があります" #: ../../enterprise/dashboard/widgets/example.php:26 -#: ../../enterprise/extensions/vmware/vmware_view.php:1202 -msgid "Welcome" -msgstr "ようこそ" +#: ../../enterprise/dashboard/widgets/example.php:46 +#, php-format +msgid "Welcome message to %s" +msgstr "%s へのようこそメッセージ" #: ../../enterprise/dashboard/widgets/example.php:40 msgid "" "This is an example of a dashboard widget. A widget may contain elements" msgstr "ダッシュボードウィジェットの例です。ウィジェットに要素を入れることができます。" -#: ../../enterprise/dashboard/widgets/example.php:41 +#: ../../enterprise/dashboard/widgets/example.php:40 msgid "" "To add more elements, click on \"Add widgets\" on the top of this " "page." msgstr "要素を追加するには、このページの先頭で \"ウィジェットの追加\" をクリックします。" -#: ../../enterprise/dashboard/widgets/example.php:42 -#: ../../enterprise/dashboard/widgets/example.php:44 +#: ../../enterprise/dashboard/widgets/example.php:40 msgid "" "To delete this message, click on the delete button on top right corner of " "this element." msgstr "このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" -#: ../../enterprise/dashboard/widgets/example.php:43 +#: ../../enterprise/dashboard/widgets/example.php:40 msgid "" "To do so, just click on the title and drag and drop it to the desired place." msgstr "そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" -#: ../../enterprise/dashboard/widgets/example.php:45 -msgid "Thanks for using Pandora FMS" -msgstr "Pandora FMS のご利用ありがとうございます" +#: ../../enterprise/dashboard/widgets/example.php:40 +#, php-format +msgid "Thanks for using %s." +msgstr "%s をご利用いただきありがとうございます。" -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:30 #: ../../enterprise/dashboard/widgets/graph_module_histogram.php:32 -msgid "Graph Module Histogram" +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:178 +msgid "Module histogram" msgstr "モジュールヒストグラム" -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:64 -#: ../../enterprise/dashboard/widgets/sla_percent.php:63 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:81 +#: ../../enterprise/dashboard/widgets/sla_percent.php:80 msgid "2 Hours" msgstr "2 時間" -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:65 -#: ../../enterprise/dashboard/widgets/sla_percent.php:64 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:82 +#: ../../enterprise/dashboard/widgets/sla_percent.php:81 msgid "12 Hours" msgstr "12 時間" -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:66 -#: ../../enterprise/dashboard/widgets/sla_percent.php:65 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:83 +#: ../../enterprise/dashboard/widgets/sla_percent.php:82 msgid "24 Hours" msgstr "24 時間" -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:67 -#: ../../enterprise/dashboard/widgets/sla_percent.php:66 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:84 +#: ../../enterprise/dashboard/widgets/sla_percent.php:83 msgid "48 Hours" msgstr "48 時間" -#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:72 -#: ../../enterprise/dashboard/widgets/module_icon.php:89 -#: ../../enterprise/dashboard/widgets/module_status.php:75 -#: ../../enterprise/dashboard/widgets/module_value.php:78 -#: ../../enterprise/dashboard/widgets/sla_percent.php:74 +#: ../../enterprise/dashboard/widgets/graph_module_histogram.php:95 +#: ../../enterprise/dashboard/widgets/module_icon.php:121 +#: ../../enterprise/dashboard/widgets/module_status.php:101 +#: ../../enterprise/dashboard/widgets/module_value.php:102 +#: ../../enterprise/dashboard/widgets/sla_percent.php:101 msgid "Text size of label in px" msgstr "pxでのラベルのテキストサイズ" -#: ../../enterprise/dashboard/widgets/url.php:23 -msgid "Show the URL content" -msgstr "URL のコンテンツ表示" +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:28 +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:259 +msgid "Top N events by module" +msgstr "モジュールごとのトップ N イベント" -#: ../../enterprise/dashboard/widgets/url.php:28 -msgid "Only embebed urls can be shown, be sure that the url is embebed." -msgstr "埋め込みURLのみ表示できます。URLは埋め込みであることを確認してください。" +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:33 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:33 +msgid "Amount to show" +msgstr "表示数" -#: ../../enterprise/dashboard/widgets/url.php:29 -msgid "For example: " -msgstr "例: " +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:58 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:58 +msgid "Legend Position" +msgstr "凡例の位置" -#: ../../enterprise/dashboard/widgets/url.php:30 -msgid " must be " -msgstr "" +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:63 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:63 +msgid "No legend" +msgstr "凡例なし" -#: ../../enterprise/dashboard/widgets/url.php:32 -msgid "My URL" -msgstr "マイ URL" +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:89 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:88 +msgid "Please select one or more groups." +msgstr "一つ以上のグループを選択してください。" -#: ../../enterprise/dashboard/widgets/url.php:57 -#: ../../enterprise/dashboard/widgets/post.php:36 -#: ../../enterprise/dashboard/widgets/tactical.php:63 -#: ../../enterprise/dashboard/widgets/tactical.php:71 -msgid "Please, configure this widget before use" -msgstr "利用前にウィジェットを設定してください" - -#: ../../enterprise/dashboard/widgets/groups_status.php:24 -msgid "Groups status" -msgstr "グループ状態" +#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:152 +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:149 +msgid "There is not data to show." +msgstr "表示するデータがありません。" #: ../../enterprise/dashboard/widgets/groups_status.php:26 -msgid "General and quick group status report" -msgstr "一般およびクイックグループ状態レポート" +#: ../../enterprise/dashboard/widgets/groups_status.php:209 +msgid "General group status" +msgstr "一般的なグループ状態" -#: ../../enterprise/dashboard/widgets/groups_status.php:87 -#: ../../enterprise/dashboard/widgets/groups_status.php:159 +#: ../../enterprise/dashboard/widgets/groups_status.php:96 +#: ../../enterprise/dashboard/widgets/groups_status.php:156 msgid "Total nº:" msgstr "" -#: ../../enterprise/dashboard/widgets/groups_status.php:217 +#: ../../enterprise/dashboard/widgets/groups_status.php:198 msgid "Not agents in this group" msgstr "このグループにエージェントがありません" -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:28 -msgid "Vsiual Console" -msgstr "ビジュアルコンソール" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:30 -msgid "Show a Visual Console" -msgstr "ビジュアルコンソール表示" - -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:33 +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:38 msgid "WARNING: " msgstr "警告: " -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:33 +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:38 msgid "" "If your visual console is bigger than widget size, it will not fit in the " "widget, instead, both vertical and horizonal scroll bars will be drawn. If " @@ -29313,635 +34787,353 @@ msgstr "" "ウィジェットサイズよりもビジュアルコンソールが大きい場合、ウィジェットに合わず、かわりに縦と横のスクロールバーが表示されます。ウィジェットにビジュアルコン" "ソールを合わせたい場合は、ウィジェット内に合うサイズで作成してください。" -#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:36 +#: ../../enterprise/dashboard/widgets/maps_made_by_user.php:43 msgid "Layout" msgstr "レイアウト" -#: ../../enterprise/dashboard/widgets/maps_status.php:25 -msgid "Maps status" -msgstr "マップ状態" +#: ../../enterprise/dashboard/widgets/tree_view.php:48 +msgid "Tab" +msgstr "タブ" + +#: ../../enterprise/dashboard/widgets/tree_view.php:61 +msgid "Open all groups" +msgstr "全グループを開く" + +#: ../../enterprise/dashboard/widgets/tree_view.php:76 +msgid "Agents status" +msgstr "エージェントの状態" + +#: ../../enterprise/dashboard/widgets/tree_view.php:94 +msgid "Modules status" +msgstr "モジュールの状態" + +#: ../../enterprise/dashboard/widgets/tree_view.php:98 +#: ../../enterprise/dashboard/widgets/top_n.php:363 +msgid "Filter modules" +msgstr "モジュールをフィルタ" + +#: ../../enterprise/dashboard/widgets/tree_view.php:109 +#, php-format +msgid "" +"The user doesn't have permission to read agents. Please contact with your %s " +"administrator." +msgstr "ユーザにエージェントを参照する権限がありません。%s 管理者へ連絡してください。" + +#: ../../enterprise/dashboard/widgets/tree_view.php:118 +msgid "This widget only working in desktop version." +msgstr "ウィジェットはデスクトップ版でのみ動作します。" #: ../../enterprise/dashboard/widgets/maps_status.php:27 -msgid "General and quick visual maps report" -msgstr "一般およびクイックビジュアルマップレポート" - -#: ../../enterprise/dashboard/widgets/module_icon.php:28 -msgid "Module with icon" -msgstr "モジュールとアイコン" +#: ../../enterprise/dashboard/widgets/maps_status.php:102 +msgid "General visual maps report" +msgstr "一般的なビジュアルマップレポート" #: ../../enterprise/dashboard/widgets/module_icon.php:30 -msgid "Show a value of module and icon" -msgstr "モジュールの値とアイコンを表示" +#: ../../enterprise/dashboard/widgets/module_icon.php:216 +msgid "Icon and module value" +msgstr "アイコンとモジュールの値" -#: ../../enterprise/dashboard/widgets/module_icon.php:86 -#: ../../enterprise/dashboard/widgets/module_table_value.php:71 -#: ../../enterprise/dashboard/widgets/module_value.php:75 -#: ../../enterprise/dashboard/widgets/sla_percent.php:71 +#: ../../enterprise/dashboard/widgets/module_icon.php:114 +#: ../../enterprise/dashboard/widgets/module_table_value.php:87 +#: ../../enterprise/dashboard/widgets/module_value.php:95 +#: ../../enterprise/dashboard/widgets/sla_percent.php:94 msgid "Text size of value in px" msgstr "pxでの値のテキストサイズ" -#: ../../enterprise/dashboard/widgets/module_icon.php:92 -#: ../../enterprise/dashboard/widgets/module_status.php:78 +#: ../../enterprise/dashboard/widgets/module_icon.php:128 +#: ../../enterprise/dashboard/widgets/module_status.php:108 msgid "Size of icon" msgstr "アイコンのサイズ" -#: ../../enterprise/dashboard/widgets/module_status.php:28 -msgid "Status of module" -msgstr "モジュールの状態" +#: ../../enterprise/dashboard/widgets/url.php:31 +msgid "Only embebed urls can be shown, be sure that the url is embebed." +msgstr "埋め込みURLのみ表示できます。URLは埋め込みであることを確認してください。" -#: ../../enterprise/dashboard/widgets/module_status.php:30 -msgid "Show status of a module" -msgstr "モジュールの状態表示" +#: ../../enterprise/dashboard/widgets/url.php:31 +msgid "For example: " +msgstr "例: " -#: ../../enterprise/dashboard/widgets/module_table_value.php:28 +#: ../../enterprise/dashboard/widgets/url.php:31 +msgid " must be " +msgstr "" + +#: ../../enterprise/dashboard/widgets/url.php:34 +#: ../../enterprise/dashboard/widgets/url.php:85 +msgid "URL content" +msgstr "URL コンテンツ" + +#: ../../enterprise/dashboard/widgets/url.php:62 +#: ../../enterprise/dashboard/widgets/post.php:38 +#: ../../enterprise/dashboard/widgets/tactical.php:74 +#: ../../enterprise/dashboard/widgets/tactical.php:82 +msgid "Please, configure this widget before use" +msgstr "利用前にウィジェットを設定してください" + +#: ../../enterprise/dashboard/widgets/module_table_value.php:30 msgid "Show module value in a table" msgstr "表にモジュールの値を表示" -#: ../../enterprise/dashboard/widgets/module_table_value.php:30 -msgid "Show a value of module in a table" -msgstr "表にモジュールの値を表示" - -#: ../../enterprise/dashboard/widgets/module_table_value.php:74 +#: ../../enterprise/dashboard/widgets/module_table_value.php:94 msgid "Separator of data" msgstr "データの区切り" -#: ../../enterprise/dashboard/widgets/module_table_value.php:76 +#: ../../enterprise/dashboard/widgets/module_table_value.php:98 msgid "Carriage Return" msgstr "キャリッジリターン" -#: ../../enterprise/dashboard/widgets/module_table_value.php:77 +#: ../../enterprise/dashboard/widgets/module_table_value.php:99 msgid "Vertical Bar" msgstr "縦棒" -#: ../../enterprise/dashboard/widgets/module_table_value.php:78 +#: ../../enterprise/dashboard/widgets/module_table_value.php:100 msgid "Semicolon" msgstr "セミコロン" -#: ../../enterprise/dashboard/widgets/module_table_value.php:79 +#: ../../enterprise/dashboard/widgets/module_table_value.php:101 msgid "Colon" msgstr "コロン" -#: ../../enterprise/dashboard/widgets/module_table_value.php:80 +#: ../../enterprise/dashboard/widgets/module_table_value.php:102 msgid "Commas" msgstr "カンマ" -#: ../../enterprise/dashboard/widgets/module_table_value.php:81 +#: ../../enterprise/dashboard/widgets/module_table_value.php:103 msgid "Blank" msgstr "空白" -#: ../../enterprise/dashboard/widgets/module_value.php:28 -msgid "Show module value" -msgstr "モジュールの値表示" +#: ../../enterprise/dashboard/widgets/module_table_value.php:163 +msgid "Module in a table" +msgstr "" #: ../../enterprise/dashboard/widgets/module_value.php:30 -msgid "Show a value of module" -msgstr "モジュールの値表示" - -#: ../../enterprise/dashboard/widgets/monitor_health.php:21 -msgid "Global health" -msgstr "全体の正常性" +#: ../../enterprise/dashboard/widgets/module_value.php:184 +msgid "Module value" +msgstr "モジュールの値" #: ../../enterprise/dashboard/widgets/monitor_health.php:23 -msgid "Show a list of global monitor health" -msgstr "全体の監視状態一覧の表示" +#: ../../enterprise/dashboard/widgets/monitor_health.php:102 +msgid "Global health info" +msgstr "全体の稼働状況" -#: ../../enterprise/dashboard/widgets/network_map.php:31 -msgid "Show a map of the monitored network" -msgstr "監視対象ネットワークのマップ表示" - -#: ../../enterprise/dashboard/widgets/network_map.php:43 +#: ../../enterprise/dashboard/widgets/network_map.php:48 msgid "X offset" msgstr "X オフセット" -#: ../../enterprise/dashboard/widgets/network_map.php:46 +#: ../../enterprise/dashboard/widgets/network_map.php:52 msgid "Introduce x-axis data. Right=positive Left=negative" msgstr "X軸データを入力します。右がプラス、左がマイナスです。" -#: ../../enterprise/dashboard/widgets/network_map.php:48 +#: ../../enterprise/dashboard/widgets/network_map.php:57 msgid "Y offset" msgstr "Y オフセット" -#: ../../enterprise/dashboard/widgets/network_map.php:51 +#: ../../enterprise/dashboard/widgets/network_map.php:61 msgid "Introduce Y-axis data. Top=positive Bottom=negative" msgstr "Y軸データを入力します。上がプラス、下がマイナスです。" -#: ../../enterprise/dashboard/widgets/network_map.php:54 +#: ../../enterprise/dashboard/widgets/network_map.php:67 msgid "Zoom level" msgstr "拡大率" -#: ../../enterprise/dashboard/widgets/post.php:23 +#: ../../enterprise/dashboard/widgets/post.php:26 +#: ../../enterprise/dashboard/widgets/post.php:126 msgid "Panel with a message" msgstr "メッセージつきパネル" -#: ../../enterprise/dashboard/widgets/post.php:26 -msgid "My Post" -msgstr "記事" - #: ../../enterprise/dashboard/widgets/reports.php:29 -msgid "Show a report made by user" -msgstr "ユーザ作成レポートの表示" +#: ../../enterprise/dashboard/widgets/reports.php:164 +msgid "Custom report" +msgstr "カスタムレポート" -#: ../../enterprise/dashboard/widgets/service_map.php:22 -#: ../../enterprise/operation/services/services.service.php:92 -#: ../../enterprise/operation/services/services.service_map.php:100 +#: ../../enterprise/dashboard/widgets/service_map.php:23 +#: ../../enterprise/operation/services/services.service.php:116 +#: ../../enterprise/operation/services/services.service_map.php:140 msgid "Service Map" msgstr "サービスマップ" -#: ../../enterprise/dashboard/widgets/service_map.php:24 -msgid "Show a service map" -msgstr "サービスマップ表示" - -#: ../../enterprise/dashboard/widgets/service_map.php:57 +#: ../../enterprise/dashboard/widgets/service_map.php:73 msgid "The user doesn't have permission to read agents" msgstr "エージェントを参照する権限がありません" -#: ../../enterprise/dashboard/widgets/service_map.php:62 +#: ../../enterprise/dashboard/widgets/service_map.php:78 msgid "Missing id" msgstr "IDがありません。" -#: ../../enterprise/dashboard/widgets/single_graph.php:29 -msgid "Single graph" -msgstr "単一グラフ" +#: ../../enterprise/dashboard/widgets/service_map.php:129 +#: ../../enterprise/godmode/services/services.elements.php:173 +#: ../../enterprise/godmode/services/services.service.php:336 +#: ../../enterprise/operation/services/services.service.php:108 +#: ../../enterprise/operation/services/services.service_map.php:131 +msgid "Service map" +msgstr "サービスマップ" #: ../../enterprise/dashboard/widgets/single_graph.php:31 -msgid "Show a graph of an agent module" -msgstr "エージェントモジュールのグラフ表示" +#: ../../enterprise/dashboard/widgets/single_graph.php:165 +msgid "Agent module graph" +msgstr "エージェントモジュールグラフ" -#: ../../enterprise/dashboard/widgets/single_graph.php:66 +#: ../../enterprise/dashboard/widgets/single_graph.php:80 msgid "Show full legend" msgstr "全履歴表示" -#: ../../enterprise/dashboard/widgets/single_graph.php:72 -msgid "Graph colour (max)" -msgstr "グラフの色(最大)" +#: ../../enterprise/dashboard/widgets/single_graph.php:86 +msgid "Graph colour" +msgstr "グラフの色" -#: ../../enterprise/dashboard/widgets/single_graph.php:73 -msgid "Graph colour (avg)" -msgstr "グラフの色(平均)" - -#: ../../enterprise/dashboard/widgets/single_graph.php:74 -msgid "Graph colour (min)" -msgstr "グラフの色(最小)" - -#: ../../enterprise/dashboard/widgets/sla_percent.php:29 #: ../../enterprise/dashboard/widgets/sla_percent.php:31 -msgid "Show SLA percent" -msgstr "SLA パーセント表示" +#: ../../enterprise/dashboard/widgets/sla_percent.php:194 +msgid "SLA percentage" +msgstr "SLA パーセンテージ" -#: ../../enterprise/dashboard/widgets/top_n.php:34 -msgid "Show a top n of agents modules." -msgstr "エージェントモジュールのトップ N 表示" +#: ../../enterprise/dashboard/widgets/system_group_status.php:25 +#: ../../enterprise/dashboard/widgets/system_group_status.php:164 +msgid "Groups status" +msgstr "グループ状態" -#: ../../enterprise/dashboard/widgets/top_n.php:108 +#: ../../enterprise/dashboard/widgets/system_group_status.php:51 +msgid "Alert Fired" +msgstr "発報アラート" + +#: ../../enterprise/dashboard/widgets/system_group_status.php:120 +msgid "Modules in normal status" +msgstr "正常状態のモジュール" + +#: ../../enterprise/dashboard/widgets/system_group_status.php:129 +msgid "Modules in warning status" +msgstr "警告状態のモジュール" + +#: ../../enterprise/dashboard/widgets/system_group_status.php:138 +msgid "Modules in critical status" +msgstr "障害状態のモジュール" + +#: ../../enterprise/dashboard/widgets/top_n.php:31 +#: ../../enterprise/dashboard/widgets/top_n.php:733 +msgid "Top N of agent modules" +msgstr "エージェントモジュールのトップ N" + +#: ../../enterprise/dashboard/widgets/top_n.php:67 +msgid "5 hours" +msgstr "5時間" + +#: ../../enterprise/dashboard/widgets/top_n.php:97 +msgid "Avg." +msgstr "平均" + +#: ../../enterprise/dashboard/widgets/top_n.php:133 msgid "" "Please could you fill the widget data previous to filling the list items." msgstr "アイテム一覧の前に、ウィジェットデータを入力してください。" -#: ../../enterprise/dashboard/widgets/top_n.php:114 -#: ../../enterprise/dashboard/widgets/top_n.php:297 -#: ../../enterprise/include/ajax/top_n_widget.ajax.php:73 +#: ../../enterprise/dashboard/widgets/top_n.php:138 +#: ../../enterprise/dashboard/widgets/top_n.php:328 +#: ../../enterprise/include/ajax/top_n_widget.ajax.php:88 msgid "avg" msgstr "平均" -#: ../../enterprise/dashboard/widgets/top_n.php:272 +#: ../../enterprise/dashboard/widgets/top_n.php:299 msgid "Selection module one by one" msgstr "個別モジュール選択" -#: ../../enterprise/dashboard/widgets/top_n.php:283 +#: ../../enterprise/dashboard/widgets/top_n.php:308 msgid "Selection several modules" msgstr "複数モジュール選択" -#: ../../enterprise/dashboard/widgets/top_n.php:311 +#: ../../enterprise/dashboard/widgets/top_n.php:350 msgid "Regex for to filter modules" msgstr "モジュールをフィルタする正規表現" -#: ../../enterprise/dashboard/widgets/top_n.php:320 -#: ../../enterprise/dashboard/widgets/tree_view.php:75 -msgid "Filter modules" -msgstr "モジュールをフィルタ" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:26 -msgid "Top N Events by agent." -msgstr "エージェントごとのトップ N イベント" - #: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:28 -msgid "Top N events by agent." +#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:222 +msgid "Top N events by agent" msgstr "エージェントごとのトップ N イベント" -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:31 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:31 -msgid "Amount to show" -msgstr "表示数" +#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:29 +#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:147 +msgid "WUX transaction stats" +msgstr "WUX トランザクション統計" -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:39 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:39 -msgid "Legend Position" -msgstr "凡例の位置" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:43 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:43 -msgid "No legend" -msgstr "凡例なし" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:63 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:64 -msgid "Please select one or more groups." -msgstr "一つ以上のグループを選択してください。" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_group.php:124 -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:129 -msgid "There is not data to show." -msgstr "表示するデータがありません。" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:26 -msgid "Top N Events by module." -msgstr "モジュールごとのトップ N イベント" - -#: ../../enterprise/dashboard/widgets/top_n_events_by_module.php:28 -msgid "Top N events by module." -msgstr "モジュールごとのトップ N イベント" - -#: ../../enterprise/dashboard/widgets/tree_view.php:24 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1212 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1416 -msgid "Tree View" -msgstr "ツリー表示" - -#: ../../enterprise/dashboard/widgets/tree_view.php:26 -msgid "Show the tree view" -msgstr "ツリービューの表示" - -#: ../../enterprise/dashboard/widgets/tree_view.php:43 -msgid "Tab" -msgstr "タブ" - -#: ../../enterprise/dashboard/widgets/tree_view.php:49 -msgid "Open all nodes" -msgstr "すべてのノードを開く" - -#: ../../enterprise/dashboard/widgets/tree_view.php:60 -msgid "Agents status" -msgstr "エージェントの状態" - -#: ../../enterprise/dashboard/widgets/tree_view.php:62 -msgid "Filter agents" -msgstr "エージェントフィルタ" - -#: ../../enterprise/dashboard/widgets/tree_view.php:73 -msgid "Modules status" -msgstr "モジュールの状態" - -#: ../../enterprise/dashboard/widgets/tree_view.php:84 -msgid "" -"The user doesn't have permission to read agents. Please contact with your " -"pandora administrator." -msgstr "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してください。" - -#: ../../enterprise/dashboard/widgets/tree_view.php:91 -msgid "This widget only working in desktop version." -msgstr "ウィジェットはデスクトップ版でのみ動作します。" - -#: ../../enterprise/dashboard/widgets/ux_transaction.php:27 -#: ../../enterprise/dashboard/widgets/ux_transaction.php:80 -msgid "Ux transaction" -msgstr "Ux トランザクション" - -#: ../../enterprise/dashboard/widgets/ux_transaction.php:31 -msgid "Show an agent ux transaction" -msgstr "エージェント ux トランザクション表示" - -#: ../../enterprise/dashboard/widgets/wux_transaction.php:27 -#: ../../enterprise/dashboard/widgets/wux_transaction.php:80 -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:88 -msgid "Wux transaction" -msgstr "Wux トランザクション" - -#: ../../enterprise/dashboard/widgets/wux_transaction.php:31 -msgid "Show agent wux transaction" -msgstr "エージェント wux トランザクション表示" - -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:27 -msgid "Wux transaction stats" -msgstr "Wux トランザクション状態" - -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:31 -msgid "Show agent wux transaction stats" -msgstr "エージェント wux トランザクション状態" - -#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:43 -#: ../../enterprise/operation/agentes/wux_console_view.php:396 +#: ../../enterprise/dashboard/widgets/wux_transaction_stats.php:44 +#: ../../enterprise/operation/agentes/wux_console_view.php:493 msgid "View all stats" msgstr "全状態表示" -#: ../../enterprise/extensions/backup/main.php:63 -msgid "Pandora database backup utility" -msgstr "Pandora データベースバックアップユーティリティ" +#: ../../enterprise/extensions/backup/main.php:73 +#, php-format +msgid "%s database backup utility" +msgstr "%s データベースバックアップユーティリティ" -#: ../../enterprise/extensions/backup/main.php:70 +#: ../../enterprise/extensions/backup/main.php:88 msgid "Filter backups" msgstr "フィルタバックアップ" -#: ../../enterprise/extensions/backup/main.php:82 +#: ../../enterprise/extensions/backup/main.php:100 msgid "Path backups" msgstr "パックアップパス" -#: ../../enterprise/extensions/backup/main.php:102 -#: ../../enterprise/extensions/cron/main.php:361 -#: ../../enterprise/extensions/cron/main.php:387 -msgid "Path" -msgstr "パス" - -#: ../../enterprise/extensions/backup/main.php:168 +#: ../../enterprise/extensions/backup/main.php:193 msgid "Lost" msgstr "失敗" -#: ../../enterprise/extensions/backup/main.php:198 +#: ../../enterprise/extensions/backup/main.php:237 msgid "Backups list" msgstr "バックアップ一覧" -#: ../../enterprise/extensions/backup/main.php:203 +#: ../../enterprise/extensions/backup/main.php:242 msgid "Create backup" msgstr "バックアップの作成" -#: ../../enterprise/extensions/backup/main.php:217 +#: ../../enterprise/extensions/backup/main.php:256 msgid "Path to save backup" msgstr "バックアップ保存パス" -#: ../../enterprise/extensions/backup.php:63 +#: ../../enterprise/extensions/backup.php:69 msgid "Backup" msgstr "バックアップ" -#: ../../enterprise/extensions/cron/functions.php:17 -#: ../../enterprise/extensions/cron/functions.php:52 -#: ../../enterprise/extensions/cron/functions.php:77 -#: ../../enterprise/extensions/cron/functions.php:112 -#: ../../enterprise/extensions/cron/functions.php:142 -#: ../../enterprise/extensions/cron/functions.php:183 -msgid "Report to build" -msgstr "生成するレポート" - -#: ../../enterprise/extensions/cron/functions.php:23 -#: ../../enterprise/extensions/cron/functions.php:48 -msgid "Send to emails (separated by comma)" -msgstr "メール送信 (カンマ区切り)" - -#: ../../enterprise/extensions/cron/functions.php:27 -#: ../../enterprise/extensions/cron/functions.php:127 -msgid "Template to build" -msgstr "作成するテンプレート" - -#: ../../enterprise/extensions/cron/functions.php:46 -#: ../../enterprise/extensions/cron/main.php:318 -msgid "Report per agent" -msgstr "エージェントごとのレポート" - -#: ../../enterprise/extensions/cron/functions.php:59 -#: ../../enterprise/extensions/cron/functions.php:67 -#: ../../enterprise/extensions/cron/functions.php:84 -#: ../../enterprise/extensions/cron/functions.php:143 -#: ../../enterprise/extensions/cron/functions.php:184 -msgid "Save to disk into path" -msgstr "保存先パス" - -#: ../../enterprise/extensions/cron/functions.php:60 -#: ../../enterprise/extensions/cron/functions.php:85 -msgid "The apache user should have read-write access on this folder. Ex: " -msgstr "apache ユーザはこのフォルダに読み書き権限が必要です。: " - -#: ../../enterprise/extensions/cron/functions.php:113 -#: ../../enterprise/extensions/cron/functions.php:128 -msgid "Send to email" -msgstr "送信先メールアドレス" - -#: ../../enterprise/extensions/cron/functions.php:114 -msgid "Send custom report by email" -msgstr "カスタムレポートをメールで送信" - -#: ../../enterprise/extensions/cron/functions.php:129 -msgid "Send custom report (from template) by email" -msgstr "(テンプレートから) email でカスタムレポートを送信" - -#: ../../enterprise/extensions/cron/functions.php:144 -#: ../../enterprise/extensions/cron/functions.php:185 -msgid "Save custom report to disk" -msgstr "カスタムレポートをディスクに保存" - -#: ../../enterprise/extensions/cron/functions.php:157 -msgid "Backup Pandora database" -msgstr "Pandora データベースバックアップ" - -#: ../../enterprise/extensions/cron/functions.php:170 -msgid "Execute custom script" -msgstr "カスタムスクリプト実行" - -#: ../../enterprise/extensions/cron/functions.php:186 -msgid "Save custom xml report to disk" -msgstr "カスタム XML レポートをディスクへ保存" - -#: ../../enterprise/extensions/cron/functions.php:201 -msgid "Not scheduled" -msgstr "スケジュールされていません" - -#: ../../enterprise/extensions/cron/functions.php:202 -#: ../../enterprise/extensions/vmware/functions.php:25 -msgid "Hourly" -msgstr "毎時" - -#: ../../enterprise/extensions/cron/functions.php:206 -#: ../../enterprise/extensions/vmware/functions.php:29 -msgid "Yearly" -msgstr "年次" - -#: ../../enterprise/extensions/cron/functions.php:489 -#: ../../enterprise/extensions/cron/functions.php:595 -msgid "Greetings" -msgstr "挨拶" - -#: ../../enterprise/extensions/cron/functions.php:491 -#: ../../enterprise/extensions/cron/functions.php:597 -msgid "Attached to this email there's a PDF file of the" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:491 -#: ../../enterprise/extensions/cron/functions.php:597 -msgid "report" -msgstr "レポート" - -#: ../../enterprise/extensions/cron/functions.php:495 -#: ../../enterprise/extensions/cron/functions.php:601 -msgid "Thanks for your time." -msgstr "お時間いただきありがとうございます。" - -#: ../../enterprise/extensions/cron/functions.php:497 -#: ../../enterprise/extensions/cron/functions.php:603 -msgid "Best regards, Pandora FMS" -msgstr "" - -#: ../../enterprise/extensions/cron/functions.php:499 -#: ../../enterprise/extensions/cron/functions.php:605 -msgid "" -"This is an automatically generated email from Pandora FMS, please do not " -"reply." -msgstr "これは、Pandora FMS から自動生成されたメールです。返信しないでください。" - -#: ../../enterprise/extensions/cron/main.php:46 -#: ../../enterprise/extensions/cron.php:118 -#: ../../enterprise/extensions/cron.php:121 -#: ../../enterprise/extensions/cron.php:128 +#: ../../enterprise/extensions/cron.php:156 +#: ../../enterprise/meta/advanced/cron_main.php:72 msgid "Cron jobs" msgstr "Cron ジョブ" -#: ../../enterprise/extensions/cron/main.php:52 -msgid "Add new job" -msgstr "新規ジョブ追加" - -#: ../../enterprise/extensions/cron/main.php:91 -#: ../../enterprise/extensions/cron/main.php:123 -#: ../../enterprise/extensions/cron/main.php:183 -msgid "Path doesn't exists or is not writable" -msgstr "パスが存在しないか書き込みできません" - -#: ../../enterprise/extensions/cron/main.php:102 -msgid "Only administrator users can create this type of functions" -msgstr "管理者ユーザのみがこの機能を作成できます。" - -#: ../../enterprise/extensions/cron/main.php:158 -#: ../../enterprise/extensions/cron/main.php:176 -msgid "Edit job" -msgstr "ジョブ編集" - -#: ../../enterprise/extensions/cron/main.php:202 -msgid "Cron extension has never run or it's not configured well" -msgstr "Cron 拡張は、正しく設定しないと動作しません" - -#: ../../enterprise/extensions/cron/main.php:205 -msgid "" -"This extension relies on a proper setup of cron, the time-based scheduling " -"service" -msgstr "この拡張は、時間で実行する cron の設定に依存します。" - -#: ../../enterprise/extensions/cron/main.php:206 -msgid "Please, add the following line to your crontab file" -msgstr "次の行を crontab に追加してください" - -#: ../../enterprise/extensions/cron/main.php:211 -msgid "Last execution" -msgstr "最後の実行" - -#: ../../enterprise/extensions/cron/main.php:217 -msgid "Cron extension is running" -msgstr "Cron 実行が動作中です" - -#: ../../enterprise/extensions/cron/main.php:238 -msgid "Scheduled jobs" -msgstr "スケジュールされたジョブ" - -#: ../../enterprise/extensions/cron/main.php:247 -#: ../../enterprise/extensions/cron/main.php:458 -msgid "Task" -msgstr "タスク" - -#: ../../enterprise/extensions/cron/main.php:248 -#: ../../enterprise/extensions/cron/main.php:472 -#: ../../enterprise/extensions/vmware/vmware_admin.php:409 -#: ../../enterprise/extensions/vmware/vmware_admin.php:487 -msgid "Scheduled" -msgstr "スケジュール" - -#: ../../enterprise/extensions/cron/main.php:249 -#: ../../enterprise/extensions/cron/main.php:475 -msgid "Next execution" -msgstr "次回の実行" - -#: ../../enterprise/extensions/cron/main.php:250 -msgid "Last run" -msgstr "最後の実行" - -#: ../../enterprise/extensions/cron/main.php:263 -#: ../../enterprise/extensions/cron/main.php:288 -#: ../../enterprise/extensions/cron/main.php:326 -#: ../../enterprise/extensions/cron/main.php:342 -#: ../../enterprise/extensions/cron/main.php:368 -#: ../../enterprise/extensions/cron/main.php:393 -msgid "Force run" -msgstr "強制実行" - -#: ../../enterprise/extensions/csv_import/main.php:39 -msgid "No data or wrong separator in line " -msgstr "s " - -#: ../../enterprise/extensions/csv_import/main.php:42 -msgid "Agent " -msgstr "エージェント " - -#: ../../enterprise/extensions/csv_import/main.php:42 -msgid " duplicated" -msgstr " 複製しました" - -#: ../../enterprise/extensions/csv_import/main.php:45 -msgid "Id group " -msgstr "グループID " - -#: ../../enterprise/extensions/csv_import/main.php:45 -msgid " in line " -msgstr "" - -#: ../../enterprise/extensions/csv_import/main.php:52 -#, php-format -msgid "Created agent %s" -msgstr "エージェント %s を作成しました" - -#: ../../enterprise/extensions/csv_import/main.php:53 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2036 -#, php-format -msgid "Could not create agent %s" -msgstr "エージェント %s を作成できませんでした" - -#: ../../enterprise/extensions/csv_import/main.php:60 -#: ../../enterprise/extensions/csv_import_group/main.php:46 -msgid "File processed" -msgstr "ファイルを処理しました" - -#: ../../enterprise/extensions/csv_import/main.php:76 -#: ../../enterprise/extensions/csv_import_group/main.php:56 -msgid "CSV format" -msgstr "CSV フォーマット" - -#: ../../enterprise/extensions/csv_import/main.php:77 -#: ../../enterprise/extensions/csv_import_group/main.php:57 -msgid "The CSV file must have the fields in the following order" -msgstr "CSV ファイルのフィールドは、次の順番でなければいけません" - -#: ../../enterprise/extensions/csv_import/main.php:92 -#: ../../enterprise/extensions/csv_import_group/main.php:72 -msgid "Upload file" -msgstr "ファイルのアップロード" - -#: ../../enterprise/extensions/csv_import/main.php:99 -#: ../../enterprise/extensions/csv_import_group/main.php:75 -msgid "Separator" -msgstr "セパレータ" - -#: ../../enterprise/extensions/csv_import/main.php:103 -#: ../../enterprise/extensions/csv_import_group/main.php:79 -msgid "Upload CSV file" -msgstr "CSV ファイルのアップロード" - -#: ../../enterprise/extensions/csv_import.php:27 -msgid "CSV import" -msgstr "CSV インポート" - -#: ../../enterprise/extensions/csv_import_group/main.php:40 +#: ../../enterprise/extensions/csv_import_group/main.php:37 #, php-format msgid "Created group %s" msgstr "グループを %s 作成しました" -#: ../../enterprise/extensions/csv_import_group/main.php:41 +#: ../../enterprise/extensions/csv_import_group/main.php:38 #, php-format msgid "Could not create group %s" msgstr "グループ %s を作成できませんでした" -#: ../../enterprise/extensions/csv_import_group.php:27 +#: ../../enterprise/extensions/csv_import_group/main.php:45 +msgid "File processed" +msgstr "ファイルを処理しました" + +#: ../../enterprise/extensions/csv_import_group/main.php:53 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1351 +msgid "CSV format" +msgstr "CSV フォーマット" + +#: ../../enterprise/extensions/csv_import_group/main.php:54 +msgid "The CSV file must have the fields in the following order" +msgstr "CSV ファイルのフィールドは、次の順番でなければいけません" + +#: ../../enterprise/extensions/csv_import_group/main.php:70 +#: ../../enterprise/include/class/CSVImportAgents.class.php:144 +msgid "Upload file" +msgstr "ファイルのアップロード" + +#: ../../enterprise/extensions/csv_import_group/main.php:73 +#: ../../enterprise/include/class/CSVImportAgents.class.php:161 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1355 +msgid "Separator" +msgstr "セパレータ" + +#: ../../enterprise/extensions/csv_import_group/main.php:86 +msgid "Upload CSV file" +msgstr "CSV ファイルのアップロード" + +#: ../../enterprise/extensions/csv_import_group.php:26 msgid "CSV import group" msgstr "CSV インポートグループ" @@ -29949,1130 +35141,1507 @@ msgstr "CSV インポートグループ" msgid "ACL users for this agent" msgstr "このエージェントのACLユーザ" -#: ../../enterprise/extensions/disabled/check_acls.php:100 +#: ../../enterprise/extensions/disabled/check_acls.php:118 msgid "There are no defined users" msgstr "定義済ユーザがありません" -#: ../../enterprise/extensions/disabled/check_acls.php:188 +#: ../../enterprise/extensions/disabled/check_acls.php:206 msgid "ACL module tags for the modules in this agent" msgstr "このエージェントのモジュールのACLモジュールタグ" -#: ../../enterprise/extensions/disabled/check_acls.php:198 +#: ../../enterprise/extensions/disabled/check_acls.php:217 msgid "Only admin users can see this section." msgstr "この画面はadminユーザのみ参照できます。" -#: ../../enterprise/extensions/disabled/check_acls.php:202 +#: ../../enterprise/extensions/disabled/check_acls.php:224 msgid "Check ACL" msgstr "ACLチェック" -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:21 +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:81 +msgid "Current Networks" +msgstr "現在のネットワーク" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 +msgid "Please, create networks to assign to " +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:127 +msgid "all networks selected" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:130 +msgid "Please, create networks to assign to" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/ajax/ipam_ajax.php:159 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:266 +#: ../../enterprise/extensions/ipam/ipam_supernet_network.php:40 +msgid "Supernet" +msgstr "スーパーネット" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:288 msgid "Export to Excel" msgstr "Excel にエクスポート" -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:59 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:341 msgid "Assign next free IP" msgstr "次の空き IP を割り当てる" -#: ../../enterprise/extensions/ipam/include/functions_ipam.php:73 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:360 msgid "Next available IP" msgstr "次の空き IP" -#: ../../enterprise/extensions/ipam/ipam_action.php:79 -#: ../../enterprise/extensions/ipam/ipam_action.php:115 -msgid "Incorrect format in Subnet field" -msgstr "ネットワークの範囲指定が正しくありません。" +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1193 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:245 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 +msgid "Subnet" +msgstr "サブネット" -#: ../../enterprise/extensions/ipam/ipam_action.php:83 -#: ../../enterprise/extensions/ipam/ipam_action.php:120 -msgid "The location is not filled, please add a location." -msgstr "位置情報が入力されていません。位置情報を追加してください。" +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1383 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1685 +#: ../../enterprise/extensions/ipam/ipam_excel.php:110 +#: ../../enterprise/extensions/ipam/ipam_excel.php:177 +msgid "Total IPs" +msgstr "全IP" -#: ../../enterprise/extensions/ipam/ipam_action.php:194 -msgid "Successfully updated." -msgstr "更新しました。" +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1389 +msgid "Occupied" +msgstr "" -#: ../../enterprise/extensions/ipam/ipam_ajax.php:84 -msgid "There is not an available IP." -msgstr "空き IP がありません。" +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1391 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 +msgid "Available" +msgstr "利用可能" -#: ../../enterprise/extensions/ipam/ipam_ajax.php:87 -msgid "Next available IP Address is:" -msgstr "次の空き IP アドレス:" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:110 -msgid "Reserve this IP now" -msgstr "この IP を予約する" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:126 -msgid "Manage this IP now" -msgstr "この IP を管理対象にする" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:157 -#: ../../enterprise/extensions/ipam/ipam_excel.php:121 -#: ../../enterprise/extensions/ipam/ipam_network.php:274 -#: ../../enterprise/extensions/ipam/ipam_network.php:275 -#: ../../enterprise/extensions/ipam/ipam_network.php:536 -msgid "Hostname" -msgstr "ホスト名" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:167 -msgid "Operating system" -msgstr "オペレーティングシステム" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:177 -msgid "This agent has other IPs" -msgstr "このエージェントには他の IP があります" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:186 -msgid "Generate events" -msgstr "イベント生成" - -#: ../../enterprise/extensions/ipam/ipam_ajax.php:191 -#: ../../enterprise/extensions/ipam/ipam_excel.php:126 -#: ../../enterprise/extensions/ipam/ipam_massive.php:77 -#: ../../enterprise/extensions/ipam/ipam_network.php:231 -#: ../../enterprise/extensions/ipam/ipam_network.php:540 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1395 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1738 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:231 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../enterprise/extensions/ipam/ipam_network.php:328 msgid "Managed" msgstr "管理対象" -#: ../../enterprise/extensions/ipam/ipam_ajax.php:201 -#: ../../enterprise/extensions/ipam/ipam_excel.php:127 -#: ../../enterprise/extensions/ipam/ipam_massive.php:78 -#: ../../enterprise/extensions/ipam/ipam_network.php:237 -#: ../../enterprise/extensions/ipam/ipam_network.php:306 -#: ../../enterprise/extensions/ipam/ipam_network.php:541 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1397 +msgid "Not managed" +msgstr "管理対象外" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1401 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1479 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1739 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:241 +#: ../../enterprise/extensions/ipam/ipam_massive.php:103 +#: ../../enterprise/extensions/ipam/ipam_network.php:329 msgid "Reserved" msgstr "予約済み" -#: ../../enterprise/extensions/ipam/ipam_ajax.php:216 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1403 +msgid "Not Reserved" +msgstr "未予約" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1437 +msgid "DESC" +msgstr "降順" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1438 +msgid "ASC" +msgstr "昇順" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1439 +msgid "A -> Z" +msgstr "A -> Z" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1440 +msgid "Z -> A" +msgstr "Z -> A" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 +msgid "Last check" +msgstr "最新の確認" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1441 +msgid "Newer -> Older" +msgstr "新しい -> 古い" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1442 +msgid "Older -> Newer" +msgstr "古い -> 新しい" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1449 +msgid "Exact address match" +msgstr "アドレスの完全一致" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1453 +msgid "S.O" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1458 +msgid "Big" +msgstr "大" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1459 +msgid "Tiny" +msgstr "小" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1460 +msgid "Icons style" +msgstr "アイコンスタイル" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1469 +msgid "Show not alive hosts" +msgstr "停止ホスト表示" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1472 +msgid "Show only managed addresses" +msgstr "管理対象アドレスのみ表示" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1475 +msgid "Reserved addresses" +msgstr "予約済アドレス" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1480 +msgid "Unreserved" +msgstr "未予約" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1490 +msgid "Last Contact" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1520 +msgid "Filter options" +msgstr "フィルターオプション" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1675 +msgid "id Network" +msgstr "ネットワークID" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1680 +msgid "ID recon task" +msgstr "自動検出タスクID" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1681 +msgid "Scan Interval" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1682 +msgid "Users Operator" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1683 +msgid "Total Ips" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1684 +msgid "Last Update" +msgstr "最終更新" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1686 +#: ../../enterprise/extensions/ipam/ipam_excel.php:111 +#: ../../enterprise/extensions/ipam/ipam_excel.php:178 +msgid "Alive IPs" +msgstr "稼働IP" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1687 +#: ../../enterprise/extensions/ipam/ipam_excel.php:112 +#: ../../enterprise/extensions/ipam/ipam_excel.php:179 +msgid "Occupied %" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1688 +#: ../../enterprise/extensions/ipam/ipam_excel.php:113 +#: ../../enterprise/extensions/ipam/ipam_excel.php:180 +msgid "Available %" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1689 +#: ../../enterprise/extensions/ipam/ipam_excel.php:114 +#: ../../enterprise/extensions/ipam/ipam_excel.php:181 +msgid "Managed IPs" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1690 +#: ../../enterprise/extensions/ipam/ipam_excel.php:115 +#: ../../enterprise/extensions/ipam/ipam_excel.php:182 +msgid "Managed %" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1691 +#: ../../enterprise/extensions/ipam/ipam_excel.php:116 +#: ../../enterprise/extensions/ipam/ipam_excel.php:183 +msgid "Unmanaged %" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1692 +#: ../../enterprise/extensions/ipam/ipam_excel.php:117 +#: ../../enterprise/extensions/ipam/ipam_excel.php:184 +msgid "Reserved IPs" +msgstr "予約IP" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1693 +#: ../../enterprise/extensions/ipam/ipam_excel.php:118 +#: ../../enterprise/extensions/ipam/ipam_excel.php:185 +msgid "Reserved %" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1694 +#: ../../enterprise/extensions/ipam/ipam_excel.php:119 +#: ../../enterprise/extensions/ipam/ipam_excel.php:186 +msgid "Not reserved %" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1737 +msgid "OS Name" +msgstr "OS 名" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1741 +msgid "Last updated" +msgstr "最終更新" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1742 +msgid "Last modified" +msgstr "最終修正" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1743 +msgid "Dhcp Leased" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1744 +msgid "Dhcp Leased Mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1745 +msgid "Dhcp Leased Expiration" +msgstr "" + +#: ../../enterprise/extensions/ipam/include/functions_ipam.php:1746 +msgid "Mac address" +msgstr "MACアドレス" + +#: ../../enterprise/extensions/ipam/ipam_action.php:109 +#: ../../enterprise/extensions/ipam/ipam_action.php:167 +msgid "Incorrect format in Subnet field" +msgstr "ネットワークの範囲指定が正しくありません。" + +#: ../../enterprise/extensions/ipam/ipam_action.php:115 +#: ../../enterprise/extensions/ipam/ipam_action.php:173 +msgid "The location is not filled, please add a location." +msgstr "位置情報が入力されていません。位置情報を追加してください。" + +#: ../../enterprise/extensions/ipam/ipam_action.php:298 +msgid "Successfully updated." +msgstr "更新しました。" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:136 +msgid "There is not an available IP." +msgstr "空き IP がありません。" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:138 +msgid "Next available IP Address is:" +msgstr "次の空き IP アドレス:" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:155 +msgid "Reserve this IP now" +msgstr "この IP を予約する" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:162 +msgid "Manage this IP now" +msgstr "この IP を管理対象にする" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:207 +msgid "Operating system" +msgstr "オペレーティングシステム" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:217 +msgid "This agent has other IPs" +msgstr "このエージェントには他の IP があります" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 +msgid "Generate events" +msgstr "イベント生成" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:246 +msgid "Leases Dhcp" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 +msgid "leased mode" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:257 +msgid "leased expiration" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_ajax.php:278 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:423 msgid "Created" msgstr "作成" -#: ../../enterprise/extensions/ipam/ipam_ajax.php:226 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:288 msgid "Edited" msgstr "編集" -#: ../../enterprise/extensions/ipam/ipam_ajax.php:236 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:298 msgid "Tracking" msgstr "トラッキング" -#: ../../enterprise/extensions/ipam/ipam_ajax.php:252 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:313 msgid "Ping" msgstr "Ping" -#: ../../enterprise/extensions/ipam/ipam_ajax.php:294 +#: ../../enterprise/extensions/ipam/ipam_ajax.php:350 msgid "Ping to host" msgstr "ホストへの Ping" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:43 #: ../../enterprise/extensions/ipam/ipam_calculator.php:44 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:53 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:55 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:45 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:56 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:57 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:58 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:59 msgid "Example:" msgstr "例:" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:46 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 msgid "Bit mask" msgstr "ビットマスク" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:46 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:49 msgid "Net mask" msgstr "ネットマスク" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:48 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:52 msgid "Mask format" msgstr "マスクフォーマット" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:50 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:54 +#: ../../enterprise/extensions/ipam/ipam_excel.php:108 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:290 msgid "Mask" msgstr "マスク" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:63 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:67 msgid "Calculate" msgstr "計算" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:70 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:74 msgid "Address field is empty" msgstr "アドレスフィールドが空です" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:76 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:82 msgid "Mask field is empty" msgstr "マスクフィールドが空です" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:94 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:109 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:100 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:118 msgid "Incorrect address format" msgstr "アドレスフォーマットが不正です" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:98 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:102 -#: ../../enterprise/extensions/ipam/ipam_calculator.php:113 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:105 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:110 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:123 msgid "Incorrect mask format" msgstr "マスクフォーマットが不正です" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:141 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:151 msgid "Network mask" msgstr "ネットワークマスク" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:155 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:167 msgid "Network wildcard" msgstr "ネットワークワイルドカード" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:160 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:172 msgid "Network address" msgstr "ネットワークアドレス" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:165 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:177 msgid "Broadcast address" msgstr "ブロードキャストアドレス" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:170 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:182 msgid "First valid IP" msgstr "最初の有効IP" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:175 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:187 msgid "Last valid IP" msgstr "最後の有効IP" -#: ../../enterprise/extensions/ipam/ipam_calculator.php:181 +#: ../../enterprise/extensions/ipam/ipam_calculator.php:193 msgid "Hosts/Net" msgstr "ホスト/ネット" -#: ../../enterprise/extensions/ipam/ipam_editor.php:35 +#: ../../enterprise/extensions/ipam/ipam_editor.php:46 msgid "Network not found" msgstr "ネットワークが見つかりません" -#: ../../enterprise/extensions/ipam/ipam_editor.php:69 +#: ../../enterprise/extensions/ipam/ipam_editor.php:93 msgid "Format: IP/Mask" msgstr "フォーマット: IP/マスク" -#: ../../enterprise/extensions/ipam/ipam_editor.php:71 +#: ../../enterprise/extensions/ipam/ipam_editor.php:96 msgid "Examples" msgstr "例" -#: ../../enterprise/extensions/ipam/ipam_editor.php:89 +#: ../../enterprise/extensions/ipam/ipam_editor.php:137 msgid "For example: Central Data Center" msgstr "例: 中央データセンター" -#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +#: ../../enterprise/extensions/ipam/ipam_editor.php:142 +msgid "Include statistical monitors" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:157 +msgid "Lightweight mode" +msgstr "軽量モード" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:158 +msgid "Use quicker network scan" +msgstr "高速ネットワークスキャンの利用" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:174 +msgid "Target group for monitoring agent" +msgstr "監視エージェントの対象グループ" + +#: ../../enterprise/extensions/ipam/ipam_editor.php:195 msgid "Scan interval" msgstr "スキャン間隔" -#: ../../enterprise/extensions/ipam/ipam_editor.php:93 +#: ../../enterprise/extensions/ipam/ipam_editor.php:195 msgid "0 for manually scan" msgstr "0 を設定すると手動スキャンです" -#: ../../enterprise/extensions/ipam/ipam_editor.php:98 +#: ../../enterprise/extensions/ipam/ipam_editor.php:200 msgid "Operator users" msgstr "オペレータユーザ" -#: ../../enterprise/extensions/ipam/ipam_editor.php:98 +#: ../../enterprise/extensions/ipam/ipam_editor.php:200 msgid "" "The list of users can manage the networks in the IPAM. Only the admin users " "can manage networks and edit the networks." msgstr "IPAM でネットワークを管理できるユーザ一覧。admin ユーザのみネットワーク管理とネットワークの編集ができます。" -#: ../../enterprise/extensions/ipam/ipam_excel.php:122 -#: ../../enterprise/extensions/ipam/ipam_network.php:225 -#: ../../enterprise/extensions/ipam/ipam_network.php:550 -msgid "Alive" -msgstr "稼働" +#: ../../enterprise/extensions/ipam/ipam_excel.php:109 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:304 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:372 +msgid "Subneting Mask" +msgstr "サブネットマスク" -#: ../../enterprise/extensions/ipam/ipam_excel.php:125 -msgid "OS Name" -msgstr "OS 名" - -#: ../../enterprise/extensions/ipam/ipam_excel.php:128 -msgid "Created at" -msgstr "作成日時" - -#: ../../enterprise/extensions/ipam/ipam_excel.php:129 -msgid "Last updated" -msgstr "最終更新" - -#: ../../enterprise/extensions/ipam/ipam_excel.php:130 -msgid "Last modified" -msgstr "最終修正" - -#: ../../enterprise/extensions/ipam/ipam_list.php:133 +#: ../../enterprise/extensions/ipam/ipam_list.php:108 msgid "No networks found" msgstr "ネットワークが見つかりません" -#: ../../enterprise/extensions/ipam/ipam_list.php:175 +#: ../../enterprise/extensions/ipam/ipam_list.php:141 msgid "IPs" msgstr "IP" -#: ../../enterprise/extensions/ipam/ipam_list.php:230 -#: ../../enterprise/extensions/ipam.php:189 +#: ../../enterprise/extensions/ipam/ipam_list.php:178 +#: ../../enterprise/extensions/ipam.php:271 msgid "Manage addresses" msgstr "アドレス管理" -#: ../../enterprise/extensions/ipam/ipam_list.php:233 -#: ../../enterprise/extensions/ipam.php:205 +#: ../../enterprise/extensions/ipam/ipam_list.php:184 +#: ../../enterprise/extensions/ipam.php:287 msgid "Addresses view" msgstr "アドレス表示" -#: ../../enterprise/extensions/ipam/ipam_list.php:239 +#: ../../enterprise/extensions/ipam/ipam_list.php:192 msgid "Edit network" msgstr "ネットワーク編集" -#: ../../enterprise/extensions/ipam/ipam_list.php:243 +#: ../../enterprise/extensions/ipam/ipam_list.php:196 msgid "Delete network" msgstr "ネットワーク削除" -#: ../../enterprise/extensions/ipam/ipam_massive.php:68 +#: ../../enterprise/extensions/ipam/ipam_massive.php:82 msgid "Addresses" msgstr "アドレス" -#: ../../enterprise/extensions/ipam/ipam_network.php:104 +#: ../../enterprise/extensions/ipam/ipam_network.php:119 msgid "No addresses found on this network" msgstr "このネットワークにアドレスが見つかりませんでした" -#: ../../enterprise/extensions/ipam/ipam_network.php:121 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:324 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:53 -msgid "Subnet" -msgstr "サブネット" - -#: ../../enterprise/extensions/ipam/ipam_network.php:219 -msgid "Total IPs" -msgstr "全IP" - -#: ../../enterprise/extensions/ipam/ipam_network.php:227 -#: ../../enterprise/extensions/ipam/ipam_network.php:553 -msgid "Not alive" -msgstr "停止" - -#: ../../enterprise/extensions/ipam/ipam_network.php:233 -msgid "Not managed" -msgstr "管理対象外" - -#: ../../enterprise/extensions/ipam/ipam_network.php:239 -msgid "Not Reserved" -msgstr "未予約" - -#: ../../enterprise/extensions/ipam/ipam_network.php:272 -msgid "DESC" -msgstr "降順" - -#: ../../enterprise/extensions/ipam/ipam_network.php:273 -msgid "ASC" -msgstr "昇順" - -#: ../../enterprise/extensions/ipam/ipam_network.php:274 -msgid "A -> Z" -msgstr "A -> Z" - -#: ../../enterprise/extensions/ipam/ipam_network.php:275 -msgid "Z -> A" -msgstr "Z -> A" - -#: ../../enterprise/extensions/ipam/ipam_network.php:276 -#: ../../enterprise/extensions/ipam/ipam_network.php:277 -msgid "Last check" -msgstr "最新の確認" - -#: ../../enterprise/extensions/ipam/ipam_network.php:276 -msgid "Newer -> Older" -msgstr "新しい -> 古い" - -#: ../../enterprise/extensions/ipam/ipam_network.php:277 -msgid "Older -> Newer" -msgstr "古い -> 新しい" - -#: ../../enterprise/extensions/ipam/ipam_network.php:284 -msgid "Exact address match" -msgstr "アドレスの完全一致" - -#: ../../enterprise/extensions/ipam/ipam_network.php:288 -msgid "Big" -msgstr "大" - -#: ../../enterprise/extensions/ipam/ipam_network.php:289 -msgid "Tiny" -msgstr "小" - -#: ../../enterprise/extensions/ipam/ipam_network.php:290 -msgid "Icons style" -msgstr "アイコンスタイル" - -#: ../../enterprise/extensions/ipam/ipam_network.php:297 -msgid "Show not alive hosts" -msgstr "停止ホスト表示" - -#: ../../enterprise/extensions/ipam/ipam_network.php:300 -msgid "Show only managed addresses" -msgstr "管理対象アドレスのみ表示" - -#: ../../enterprise/extensions/ipam/ipam_network.php:303 -msgid "Reserved addresses" -msgstr "予約済アドレス" - -#: ../../enterprise/extensions/ipam/ipam_network.php:307 -msgid "Unreserved" -msgstr "未予約" - -#: ../../enterprise/extensions/ipam/ipam_network.php:332 -msgid "Filter options" -msgstr "フィルターオプション" - -#: ../../enterprise/extensions/ipam/ipam_network.php:472 +#: ../../enterprise/extensions/ipam/ipam_network.php:256 msgid "Edit address" msgstr "アドレス編集" -#: ../../enterprise/extensions/ipam/ipam_network.php:477 +#: ../../enterprise/extensions/ipam/ipam_network.php:261 msgid "Disabled address" msgstr "無効化アドレス" -#: ../../enterprise/extensions/ipam/ipam_network.php:477 +#: ../../enterprise/extensions/ipam/ipam_network.php:261 msgid "This address will not be updated by the server" msgstr "このアドレスは、サーバにより更新されません" -#: ../../enterprise/extensions/ipam/ipam_network.php:574 -#: ../../enterprise/extensions/ipam/ipam_network.php:609 -#: ../../enterprise/extensions/ipam/ipam_network.php:632 +#: ../../enterprise/extensions/ipam/ipam_network.php:382 +#: ../../enterprise/extensions/ipam/ipam_network.php:457 +#: ../../enterprise/extensions/ipam/ipam_network.php:499 msgid "Change to automatic mode" msgstr "自動モードに切り替える" -#: ../../enterprise/extensions/ipam/ipam_network.php:575 -#: ../../enterprise/extensions/ipam/ipam_network.php:610 -#: ../../enterprise/extensions/ipam/ipam_network.php:633 +#: ../../enterprise/extensions/ipam/ipam_network.php:391 +#: ../../enterprise/extensions/ipam/ipam_network.php:466 +#: ../../enterprise/extensions/ipam/ipam_network.php:508 msgid "Change to manual mode" msgstr "手動モードに切り替える" -#: ../../enterprise/extensions/ipam/ipam_network.php:649 +#: ../../enterprise/extensions/ipam/ipam_network.php:587 msgid "Add comments" msgstr "コメント追加" -#: ../../enterprise/extensions/ipam/ipam_network.php:666 +#: ../../enterprise/extensions/ipam/ipam_network.php:615 msgid "Update agent address" msgstr "エージェントアドレス更新" -#: ../../enterprise/extensions/ipam/ipam_network.php:783 +#: ../../enterprise/extensions/ipam/ipam_network.php:781 msgid "Please, uncheck auto option to set manual agent." msgstr "手動エージェントを設定するには、自動オプションを外してください。" -#: ../../enterprise/extensions/ipam.php:168 -#: ../../enterprise/extensions/ipam.php:284 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:50 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:97 +msgid "There is no supernet name. Please introduce a name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:54 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:101 +msgid "There is no supernet address. Please introduce a address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:58 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:105 +msgid "There is no supernet mask. Please introduce a mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:62 +msgid "There is no valid address. Please introduce a address" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:66 +msgid "There is no valid mask. Please introduce a mask" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:80 +msgid "Supernet created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:82 +msgid "Supernet not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:86 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:131 +msgid "Supernet name exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:125 +msgid "Supernet updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:127 +msgid "Supernet not updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:152 +msgid "Could not be deleted, please select supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:181 +msgid "Network name cannot be repeated in this supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:188 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:150 +msgid "Successfully added networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:192 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:154 +msgid "Network could not be added" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:197 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:159 +msgid "Network name could not be added, please select network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:202 +msgid "supernet name could not be added, please select supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:226 +msgid "Could not be deleted, please select supernet and network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:340 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:460 +msgid "Update Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:347 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:541 +msgid "New Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:370 +msgid "Address / Masks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:373 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:272 +msgid "Networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:390 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:453 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:284 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:340 +msgid "Not assigned networks" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:447 +msgid "Delete network to supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:467 +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:487 +msgid "Add network to supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:470 +msgid "Next network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:500 +msgid "Delete Supernet" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_supernet_config.php:534 +msgid "No Supernet found" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:44 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:72 +msgid "There is no vlan name. Please introduce a name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:55 +msgid "Vlan created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:57 +msgid "Vlan not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:61 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:95 +msgid "Vlan name exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:89 +msgid "Vlan updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:91 +msgid "Vlan not updated" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:115 +msgid "Could not be deleted, please select vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:143 +msgid "Network name cannot be repeated in this Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:164 +msgid "Vlan name could not be added, please select vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:188 +msgid "Could not be deleted, please select vlan and network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:220 +#: ../../enterprise/extensions/ipam/ipam_vlan_network.php:41 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 +msgid "Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:240 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:346 +msgid "Update Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:247 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:431 +msgid "New Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:314 +msgid "Delete network to vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:353 +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:372 +msgid "Add network to Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:356 +msgid "Create network" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:388 +msgid "Delete Vlan" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_config.php:419 +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:459 +msgid "No vlans found" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:57 +msgid "succesfully created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:61 +msgid "not created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:66 +msgid "exists in bbdd, please select other name" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:71 +msgid "please, select VLAN to be created" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:230 +msgid "Please enter adress, for search vlans" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:373 +#: ../../enterprise/include/functions_hostdevices.php:108 +msgid "Context" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:396 +msgid "Run" +msgstr "" + +#: ../../enterprise/extensions/ipam/ipam_vlan_wizard.php:408 +msgid "Vlan name" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:185 +#: ../../enterprise/extensions/ipam.php:407 msgid "Subnetworks calculator" msgstr "サブネット計算" -#: ../../enterprise/extensions/ipam.php:197 +#: ../../enterprise/extensions/ipam.php:194 +#: ../../enterprise/extensions/ipam.php:431 +msgid "Vlan config" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:204 +#: ../../enterprise/extensions/ipam.php:441 +msgid "Vlan wizard" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:219 +msgid "Vlan statistics" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:231 +#: ../../enterprise/extensions/ipam.php:451 +msgid "Supernet config" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:242 +msgid "Supernet statistics" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:254 +#: ../../enterprise/extensions/ipam.php:461 +msgid "Supernet map" +msgstr "" + +#: ../../enterprise/extensions/ipam.php:279 msgid "Massive operations" msgstr "一括操作" -#: ../../enterprise/extensions/ipam.php:240 -#: ../../enterprise/extensions/ipam.php:308 -#: ../../enterprise/extensions/ipam.php:330 #: ../../enterprise/extensions/ipam.php:331 +#: ../../enterprise/extensions/ipam.php:478 +#: ../../enterprise/extensions/ipam.php:518 +#: ../../enterprise/extensions/ipam.php:519 msgid "IPAM" msgstr "IPAM" -#: ../../enterprise/extensions/resource_exportation/functions.php:19 +#: ../../enterprise/extensions/resource_exportation/functions.php:20 msgid "Export agents" -msgstr "" +msgstr "エージェントのエクスポート" -#: ../../enterprise/extensions/resource_registration/functions.php:37 +#: ../../enterprise/extensions/resource_registration/functions.php:38 #, php-format msgid "Error create '%s' policy, the name exist and there aren't free name." msgstr "'%s' ポリシー作成エラー。すでに存在する名前です。" -#: ../../enterprise/extensions/resource_registration/functions.php:44 +#: ../../enterprise/extensions/resource_registration/functions.php:46 #, php-format msgid "" "Warning create '%s' policy, the name exist, the policy have a name %s." msgstr "'%s' ポリシー作成で警告です。%s という名前がすでにあります。" -#: ../../enterprise/extensions/resource_registration/functions.php:51 +#: ../../enterprise/extensions/resource_registration/functions.php:55 msgid "Error the policy haven't name." msgstr "ポリシーに名前がありません。" -#: ../../enterprise/extensions/resource_registration/functions.php:65 +#: ../../enterprise/extensions/resource_registration/functions.php:76 #, php-format msgid "Success create '%s' policy." msgstr "'%s' ポリシーを作成しました。" -#: ../../enterprise/extensions/resource_registration/functions.php:66 +#: ../../enterprise/extensions/resource_registration/functions.php:77 #, php-format msgid "Error create '%s' policy." msgstr "'%s' ポリシー作成エラー" -#: ../../enterprise/extensions/resource_registration/functions.php:104 +#: ../../enterprise/extensions/resource_registration/functions.php:114 #, php-format -msgid "Error add '%s' agent. The agent does not exist in pandora" -msgstr "エージェント '%s' 追加エラー。エージェントが pandora に存在しません。" +msgid "Error add '%s' agent. The agent does not exist" +msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:108 +#: ../../enterprise/extensions/resource_registration/functions.php:118 #, php-format msgid "Success add '%s' agent." msgstr "'%s' エージェントを追加しました" -#: ../../enterprise/extensions/resource_registration/functions.php:109 +#: ../../enterprise/extensions/resource_registration/functions.php:119 #, php-format msgid "Error add '%s' agent." msgstr "'%s' エージェント追加エラー" -#: ../../enterprise/extensions/resource_registration/functions.php:128 -msgid "The collection does not exist in pandora" -msgstr "pandora にコレクションが存在しません。" +#: ../../enterprise/extensions/resource_registration/functions.php:138 +msgid "The collection does not exist" +msgstr "" -#: ../../enterprise/extensions/resource_registration/functions.php:132 +#: ../../enterprise/extensions/resource_registration/functions.php:143 #, php-format msgid "Success add '%s' collection." msgstr "'%s' コレクションを追加しました。" -#: ../../enterprise/extensions/resource_registration/functions.php:133 +#: ../../enterprise/extensions/resource_registration/functions.php:144 #, php-format msgid "Error add '%s' collection." msgstr "'%s' コレクション追加エラー" -#: ../../enterprise/extensions/resource_registration/functions.php:149 +#: ../../enterprise/extensions/resource_registration/functions.php:162 #, php-format msgid "Success add '%s' agent plugin." msgstr "エージェントプラグイン '%s' を追加しました。" -#: ../../enterprise/extensions/resource_registration/functions.php:150 +#: ../../enterprise/extensions/resource_registration/functions.php:163 #, php-format msgid "Error add '%s' agent plugin." msgstr "エージェントプラグイン '%s' の追加エラー。" -#: ../../enterprise/extensions/resource_registration/functions.php:161 +#: ../../enterprise/extensions/resource_registration/functions.php:176 msgid "Error add the module, haven't type." msgstr "モジュール追加エラー。タイプがありません。" -#: ../../enterprise/extensions/resource_registration/functions.php:269 -#: ../../enterprise/extensions/resource_registration/functions.php:299 -#: ../../enterprise/extensions/resource_registration/functions.php:356 -#: ../../enterprise/extensions/resource_registration/functions.php:402 +#: ../../enterprise/extensions/resource_registration/functions.php:377 +#: ../../enterprise/extensions/resource_registration/functions.php:438 +#: ../../enterprise/extensions/resource_registration/functions.php:539 +#: ../../enterprise/extensions/resource_registration/functions.php:595 msgid "Error add the module, error in tag component." msgstr "モジュール追加エラー。タグコンポーネント内にエラーがあります。" -#: ../../enterprise/extensions/resource_registration/functions.php:443 +#: ../../enterprise/extensions/resource_registration/functions.php:647 msgid "Error add the module plugin importation, plugin is not registered" msgstr "モジュールプラグイン追加エラー。プラグインは登録されていません。" -#: ../../enterprise/extensions/resource_registration/functions.php:454 +#: ../../enterprise/extensions/resource_registration/functions.php:657 #, php-format msgid "Success add '%s' module." msgstr "'%s' モジュールを追加しました。" -#: ../../enterprise/extensions/resource_registration/functions.php:455 +#: ../../enterprise/extensions/resource_registration/functions.php:658 #, php-format msgid "Error add '%s' module." msgstr "'%s' モジュール追加エラー" -#: ../../enterprise/extensions/resource_registration/functions.php:465 +#: ../../enterprise/extensions/resource_registration/functions.php:670 #, php-format msgid "Error add the alert, the template '%s' don't exist." msgstr "アラート追加エラー。テンプレート '%s' は存在しません。" -#: ../../enterprise/extensions/resource_registration/functions.php:473 +#: ../../enterprise/extensions/resource_registration/functions.php:681 #, php-format msgid "Error add the alert, the module '%s' don't exist." msgstr "アラート追加エラー。モジュール '%s' は存在しません。" -#: ../../enterprise/extensions/resource_registration/functions.php:486 +#: ../../enterprise/extensions/resource_registration/functions.php:697 #, php-format msgid "Success add '%s' alert." msgstr "'%s' アラートを追加しました。" -#: ../../enterprise/extensions/resource_registration/functions.php:487 +#: ../../enterprise/extensions/resource_registration/functions.php:698 #, php-format msgid "Error add '%s' alert." msgstr "'%s' アラート追加エラー" -#: ../../enterprise/extensions/resource_registration/functions.php:503 +#: ../../enterprise/extensions/resource_registration/functions.php:719 #, php-format msgid "Error add the alert, the action '%s' don't exist." msgstr "アラートの追加エラー。アクション '%s' は存在しません。" -#: ../../enterprise/extensions/resource_registration/functions.php:515 +#: ../../enterprise/extensions/resource_registration/functions.php:738 #, php-format msgid "Success add '%s' action." msgstr "'%s' アクションを追加しました" -#: ../../enterprise/extensions/translate_string.php:165 -#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/extensions/translate_string.php:168 +#: ../../enterprise/extensions/translate_string.php:380 msgid "Translate string" msgstr "翻訳文字列" -#: ../../enterprise/extensions/translate_string.php:277 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:160 +#: ../../enterprise/extensions/translate_string.php:253 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:126 +msgid "Translation added successfully" +msgstr "" + +#: ../../enterprise/extensions/translate_string.php:255 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:128 +msgid "Translation string could not be created" +msgstr "" + +#: ../../enterprise/extensions/translate_string.php:268 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:141 +msgid "Translation updated successfully" +msgstr "" + +#: ../../enterprise/extensions/translate_string.php:270 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:143 +msgid "Translation string could not be updated" +msgstr "" + +#: ../../enterprise/extensions/translate_string.php:334 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:203 msgid "Original string" msgstr "オリジナルの文字列" -#: ../../enterprise/extensions/translate_string.php:278 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:161 +#: ../../enterprise/extensions/translate_string.php:335 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:204 msgid "Translation in selected language" msgstr "選択した言語での翻訳" -#: ../../enterprise/extensions/translate_string.php:279 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:162 +#: ../../enterprise/extensions/translate_string.php:336 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:205 msgid "Customize translation" msgstr "翻訳カスタマイズ" -#: ../../enterprise/extensions/vmware/ajax.php:87 -#: ../../enterprise/include/ajax/clustermap.php:42 -msgid "No IP" -msgstr "IPなし" +#: ../../enterprise/extensions/visual_console_manager.php:107 +msgid "Element Id" +msgstr "" -#: ../../enterprise/extensions/vmware/functions.php:52 -msgid "This configuration has no file associated." -msgstr "この設定にはファイルが関連付けられていません。" +#: ../../enterprise/extensions/visual_console_manager.php:107 +#: ../../enterprise/godmode/policies/policy_linking.php:125 +#: ../../enterprise/godmode/policies/policy_queue.php:479 +msgid "Node" +msgstr "" -#: ../../enterprise/extensions/vmware/functions.php:61 +#: ../../enterprise/extensions/visual_console_manager.php:211 +#, php-format +msgid "%d elements updated" +msgstr "" + +#: ../../enterprise/extensions/visual_console_manager.php:212 +msgid "There was an error updating the elements" +msgstr "" + +#: ../../enterprise/extensions/visual_console_manager.php:250 +msgid "Type of the status calculation" +msgstr "" + +#: ../../enterprise/extensions/visual_console_manager.php:308 +msgid "Visual Consoles" +msgstr "" + +#: ../../enterprise/extensions/visual_console_manager.php:318 +msgid "Visual Console Information" +msgstr "" + +#: ../../enterprise/extensions/visual_console_manager.php:319 +msgid "There are no items selected." +msgstr "" + +#: ../../enterprise/extensions/visual_console_manager.php:322 msgid "" -"Task scheduled with this configuration does not match with the ID stored. " -"Please delete it " -msgstr "この設定の計画タスクは保存されたIDにマッチしません。削除してください " - -#: ../../enterprise/extensions/vmware/functions.php:115 -msgid "Please reinstall Cron extension." -msgstr "Cron 拡張を再インストールしてください。" - -#: ../../enterprise/extensions/vmware/functions.php:132 -msgid "Please check configuration definition." -msgstr "設定の定義を確認してください。" - -#: ../../enterprise/extensions/vmware/functions.php:241 -msgid "The file does not exists" -msgstr "ファイルが存在しません" - -#: ../../enterprise/extensions/vmware/functions.php:245 -msgid "The file is not readable by HTTP Server" -msgstr "HTTP サーバからファイルを読めません" - -#: ../../enterprise/extensions/vmware/functions.php:246 -#: ../../enterprise/extensions/vmware/functions.php:251 -msgid "Please check that the web server has write rights on the file" -msgstr "ウェブサーバがファイルに対して書き込み権限があるか確認してください。" - -#: ../../enterprise/extensions/vmware/functions.php:250 -msgid "The file is not writable by HTTP Server" -msgstr "HTTP サーバからファイルに書き込めません" - -#: ../../enterprise/extensions/vmware/functions.php:268 -msgid "The file does not exist." -msgstr "ファイルがありません。" - -#: ../../enterprise/extensions/vmware/functions.php:271 -msgid "The file is not executable." -msgstr "ファイルが実行できません。" - -#: ../../enterprise/extensions/vmware/functions.php:396 -msgid "Configuration file path" -msgstr "設定ファイルパス" - -#: ../../enterprise/extensions/vmware/functions.php:401 -msgid "V-Center IP" -msgstr "V-Center IP" - -#: ../../enterprise/extensions/vmware/functions.php:406 -msgid "Datacenter Name" -msgstr "データセンター名" - -#: ../../enterprise/extensions/vmware/functions.php:411 -msgid "Datacenter user" -msgstr "データセンターユーザ" - -#: ../../enterprise/extensions/vmware/functions.php:434 -msgid "Temporal directory" -msgstr "テンポラリディレクトリ" - -#: ../../enterprise/extensions/vmware/functions.php:439 -msgid "Target log file" -msgstr "対象ログファイル" - -#: ../../enterprise/extensions/vmware/functions.php:444 -msgid "Entities list file" -msgstr "エンティティ一覧ファイル" - -#: ../../enterprise/extensions/vmware/functions.php:449 -msgid "Event pointer file" -msgstr "イベントポインターファイル" - -#: ../../enterprise/extensions/vmware/functions.php:478 -msgid "API user" -msgstr "API ユーザ" - -#: ../../enterprise/extensions/vmware/functions.php:483 -msgid "API user's password" -msgstr "API ユーザパスワード" - -#: ../../enterprise/extensions/vmware/functions.php:502 -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:88 -msgid "Transfer mode" -msgstr "転送モード" - -#: ../../enterprise/extensions/vmware/functions.php:508 -msgid "Tentacle server IP" -msgstr "Tentacle サーバ IP" - -#: ../../enterprise/extensions/vmware/functions.php:513 -msgid "Tentacle server port" -msgstr "Tentacle サーバポート" - -#: ../../enterprise/extensions/vmware/functions.php:518 -msgid "Tentacle extra options" -msgstr "Tentacle 拡張オプション" - -#: ../../enterprise/extensions/vmware/functions.php:523 -msgid "Local folder" -msgstr "ローカルフォルダ" - -#: ../../enterprise/extensions/vmware/functions.php:528 -msgid "Tentacle client path" -msgstr "Tentacle クライアントパス" - -#: ../../enterprise/extensions/vmware/functions.php:546 -msgid "Agents group" -msgstr "エージェントグループ" - -#: ../../enterprise/extensions/vmware/functions.php:551 -msgid "Verbosity" +"Massive editing of the procedure for calculating the status of elements " +"linked to a visual console" msgstr "" -#: ../../enterprise/extensions/vmware/functions.php:556 -msgid "Max. threads" -msgstr "最大スレッド" - -#: ../../enterprise/extensions/vmware/functions.php:561 -msgid "Retry send" -msgstr "再送" - -#: ../../enterprise/extensions/vmware/functions.php:566 -msgid "Event mode" -msgstr "イベントモード" - -#: ../../enterprise/extensions/vmware/functions.php:576 -msgid "Extra settings" -msgstr "拡張設定" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:37 -msgid "WMware Plugin Settings" -msgstr "VMware プラグイン設定" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:91 -msgid "" -"Pandora FMS Cron extension is required to automate VMware plugin from this " -"form." -msgstr "このフォームから VMware プラグイン有効化するには Pandora FMS Cron 拡張が必要です。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:152 -msgid "Failed to update plugin path." -msgstr "プラグインパスの更新に失敗しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:155 -msgid "VMWare plugin path succesfully updated." -msgstr "VMWare プラグインパスを更新しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:170 -#: ../../enterprise/extensions/vmware/vmware_admin.php:275 -msgid "Configuration name is required." -msgstr "設定名が必要です。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:174 -msgid "Configuration name already in use." -msgstr "設定名は既に使われています。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:185 -msgid "Failed while creating configuration file." -msgstr "設定ファイル作成に失敗しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:198 -msgid "Failed while creating cron task." -msgstr "cron タスク作成に失敗しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:208 -#: ../../enterprise/extensions/vmware/vmware_admin.php:253 -#: ../../enterprise/extensions/vmware/vmware_admin.php:316 -msgid "Failed while updating configuration references." -msgstr "設定リファレンスの更新に失敗しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:214 -msgid " succesfully created." -msgstr " 作成成功" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:226 -msgid "Unknown configuration file." -msgstr "不明な設定ファイル。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:234 -msgid "Failed while deleting associated cron task." -msgstr "関連 cron タスクの削除エラー。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:242 -msgid "Failed while deleting associated conf file." -msgstr "関連 conf ファイルの削除エラー。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:260 -msgid " succesfully deleted." -msgstr " 削除しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:283 -msgid "Failed while deleting previous cron task. Disable and re-enable it" -msgstr "以前の cron タスクの削除に失敗しました。無効化した後に再度有効化してください。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:287 -msgid "Failed while deleting associated conf file. Please remove " -msgstr "関連 conf ファイルの削除に失敗しました。削除してください " - -#: ../../enterprise/extensions/vmware/vmware_admin.php:287 -msgid " manually" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:295 -msgid "Failed while updating configuration file." -msgstr "設定ファイルの更新に失敗しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:303 -msgid "Failed while updating cron task." -msgstr "cron タスクの更新に失敗しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:322 -msgid " succesfully updated." -msgstr " 更新しました。" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:352 -msgid "Plugin Path" -msgstr "プラグインパス" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:369 -msgid "Configuration files" -msgstr "設定ファイル" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:392 -#: ../../enterprise/extensions/vmware/vmware_admin.php:426 -msgid "Configuration name" -msgstr "設定名" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:432 -msgid "File path" -msgstr "ファイルパス" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:439 -msgid "Load" -msgstr "処理実行率" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:444 -msgid "Create new file" -msgstr "ファイルの新規作成" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:446 -msgid "Load vmware conf file" -msgstr "vmware 設定ファイルの読み込み" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:456 -msgid " is invalid" -msgstr "" - -#: ../../enterprise/extensions/vmware/vmware_admin.php:500 -msgid "Delete this configuration: " -msgstr "この設定を削除: " - -#: ../../enterprise/extensions/vmware/vmware_manager.php:160 +#: ../../enterprise/extensions/vmware/vmware_manager.php:227 msgid "Power Status: " msgstr "電源状態: " -#: ../../enterprise/extensions/vmware/vmware_manager.php:206 +#: ../../enterprise/extensions/vmware/vmware_manager.php:273 msgid "Change Status" msgstr "状態の変更" -#: ../../enterprise/extensions/vmware/vmware_view.php:241 +#: ../../enterprise/extensions/vmware/vmware_view.php:61 msgid "Top 5 VMs CPU Usage" msgstr "CPU利用率上位 5位内のVM" -#: ../../enterprise/extensions/vmware/vmware_view.php:250 +#: ../../enterprise/extensions/vmware/vmware_view.php:70 msgid "Top 5 VMs Memory Usage" msgstr "メモリ使用率上位 5位内のVM" -#: ../../enterprise/extensions/vmware/vmware_view.php:261 +#: ../../enterprise/extensions/vmware/vmware_view.php:82 msgid "Top 5 VMs Provisioning Usage" -msgstr "" +msgstr "上位 5VM のプロビジョニング使用率" -#: ../../enterprise/extensions/vmware/vmware_view.php:270 +#: ../../enterprise/extensions/vmware/vmware_view.php:91 msgid "Top 5 VMs Network Usage" msgstr "ネットワーク使用率上位 5位内のVM" -#: ../../enterprise/extensions/vmware/vmware_view.php:710 +#: ../../enterprise/extensions/vmware/vmware_view.php:691 msgid "Host ESX" msgstr "ホスト ESX" -#: ../../enterprise/extensions/vmware/vmware_view.php:967 +#: ../../enterprise/extensions/vmware/vmware_view.php:1043 msgid "CPU Usage" msgstr "CPU 使用率" -#: ../../enterprise/extensions/vmware/vmware_view.php:977 +#: ../../enterprise/extensions/vmware/vmware_view.php:1053 msgid "Memory Usage" msgstr "メモリ使用率" -#: ../../enterprise/extensions/vmware/vmware_view.php:987 +#: ../../enterprise/extensions/vmware/vmware_view.php:1063 msgid "Disk I/O Rate" msgstr "ディスク I/O 速度" -#: ../../enterprise/extensions/vmware/vmware_view.php:997 +#: ../../enterprise/extensions/vmware/vmware_view.php:1073 msgid "Network Usage" msgstr "ネットワーク使用率" -#: ../../enterprise/extensions/vmware/vmware_view.php:1096 +#: ../../enterprise/extensions/vmware/vmware_view.php:1172 msgid "Settings updated " -msgstr "" +msgstr "設定を更新 " -#: ../../enterprise/extensions/vmware/vmware_view.php:1099 +#: ../../enterprise/extensions/vmware/vmware_view.php:1174 msgid "No changes in settings " msgstr "次の設定に変更はありません: " -#: ../../enterprise/extensions/vmware/vmware_view.php:1107 +#: ../../enterprise/extensions/vmware/vmware_view.php:1182 msgid "CPU usage graphs" msgstr "CPU 使用率グラフ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1108 -#: ../../enterprise/extensions/vmware/vmware_view.php:1114 -#: ../../enterprise/extensions/vmware/vmware_view.php:1120 -#: ../../enterprise/extensions/vmware/vmware_view.php:1126 +#: ../../enterprise/extensions/vmware/vmware_view.php:1183 +#: ../../enterprise/extensions/vmware/vmware_view.php:1189 +#: ../../enterprise/extensions/vmware/vmware_view.php:1195 +#: ../../enterprise/extensions/vmware/vmware_view.php:1201 msgid "Force minimum value" msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:1110 -#: ../../enterprise/extensions/vmware/vmware_view.php:1116 -#: ../../enterprise/extensions/vmware/vmware_view.php:1122 -#: ../../enterprise/extensions/vmware/vmware_view.php:1128 +#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +#: ../../enterprise/extensions/vmware/vmware_view.php:1203 msgid "Force maximum value" msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:1113 +#: ../../enterprise/extensions/vmware/vmware_view.php:1188 msgid "Memory usage graphs" msgstr "メモリ使用率グラフ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1119 +#: ../../enterprise/extensions/vmware/vmware_view.php:1194 msgid "Provisioning Usage graphs" -msgstr "" +msgstr "使用率グラフのプロビジョニング" -#: ../../enterprise/extensions/vmware/vmware_view.php:1125 +#: ../../enterprise/extensions/vmware/vmware_view.php:1200 msgid "Network usage graphs" msgstr "ネットワーク使用率グラフ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1137 +#: ../../enterprise/extensions/vmware/vmware_view.php:1211 msgid "Map items" msgstr "マップ要素" -#: ../../enterprise/extensions/vmware/vmware_view.php:1138 +#: ../../enterprise/extensions/vmware/vmware_view.php:1212 msgid "Show datastores" msgstr "データストアの表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1140 +#: ../../enterprise/extensions/vmware/vmware_view.php:1214 msgid "Show ESXis" msgstr "ESXi 表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1142 +#: ../../enterprise/extensions/vmware/vmware_view.php:1216 msgid "Show VMs" msgstr "VM 表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1144 +#: ../../enterprise/extensions/vmware/vmware_view.php:1218 msgid "Font size (px)" msgstr "フォントサイズ (px)" -#: ../../enterprise/extensions/vmware/vmware_view.php:1146 +#: ../../enterprise/extensions/vmware/vmware_view.php:1220 msgid "Node radius (px)" +msgstr "ノード半径(px)" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1225 +msgid "" +"Looking for VMware configuration? You can configure several tasks using " +"Discovery Applications." msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:1152 -msgid "Looking for plugin configuration? Is placed at " -msgstr "プラグイン設定を探していますか? それは次の場所にあります: " - -#: ../../enterprise/extensions/vmware/vmware_view.php:1152 -#: ../../enterprise/extensions/vmware/vmware_view.php:1360 +#: ../../enterprise/extensions/vmware/vmware_view.php:1226 +#: ../../enterprise/extensions/vmware/vmware_view.php:1450 +#: ../../enterprise/include/class/SAPView.class.php:619 msgid "this link" msgstr "このリンク" -#: ../../enterprise/extensions/vmware/vmware_view.php:1152 -#: ../../enterprise/extensions/vmware/vmware_view.php:1360 -msgid "administration page" -msgstr "管理ページ" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1159 +#: ../../enterprise/extensions/vmware/vmware_view.php:1233 msgid "Graph settings" msgstr "グラフ設定" -#: ../../enterprise/extensions/vmware/vmware_view.php:1164 +#: ../../enterprise/extensions/vmware/vmware_view.php:1238 msgid "Map settings" msgstr "マップ設定" -#: ../../enterprise/extensions/vmware/vmware_view.php:1218 +#: ../../enterprise/extensions/vmware/vmware_view.php:1278 +msgid "Welcome" +msgstr "ようこそ" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1288 msgid "ESX Detail" msgstr "ESX 詳細" -#: ../../enterprise/extensions/vmware/vmware_view.php:1240 +#: ../../enterprise/extensions/vmware/vmware_view.php:1309 msgid "ESX details" msgstr "ESX 詳細" -#: ../../enterprise/extensions/vmware/vmware_view.php:1244 +#: ../../enterprise/extensions/vmware/vmware_view.php:1314 msgid "VMware view options" msgstr "VMware 表示オプション" -#: ../../enterprise/extensions/vmware/vmware_view.php:1255 -#: ../../enterprise/extensions/vmware/vmware_view.php:1518 +#: ../../enterprise/extensions/vmware/vmware_view.php:1336 +#: ../../enterprise/extensions/vmware.php:86 msgid "VMware View" msgstr "VMware 表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1338 +#: ../../enterprise/extensions/vmware/vmware_view.php:1428 msgid "" -"Some ESX Hosts are not up to date, please check vmware plugin configuration." -msgstr "いくつかの ESX ホストが更新されていません。vmware プラグイン設定を確認してください。" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1341 -msgid "VMWare plugin is working." +"Some ESX Hosts are not up to date, please check VMware plugin configuration." msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:1350 -msgid "View VMWare map" -msgstr "VMware マップ表示" +#: ../../enterprise/extensions/vmware/vmware_view.php:1430 +msgid "VMware plugin is working." +msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:1351 -msgid "View VMWare dashboard" -msgstr "VMware ダッシュボード表示" +#: ../../enterprise/extensions/vmware/vmware_view.php:1439 +msgid "View VMware map" +msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:1352 +#: ../../enterprise/extensions/vmware/vmware_view.php:1440 +msgid "View VMware dashboard" +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1441 msgid "View ESX Host statistics from" +msgstr "ESX ホスト統計の参照:" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1448 +msgid "There are no VMware information detected in this environment." msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:1410 +#: ../../enterprise/extensions/vmware/vmware_view.php:1449 +msgid "You can configure several tasks using Discovery Applications at " +msgstr "" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1652 msgid "Show Datastores" msgstr "データストア表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1413 +#: ../../enterprise/extensions/vmware/vmware_view.php:1655 msgid "Show ESX" msgstr "ESX 表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1416 +#: ../../enterprise/extensions/vmware/vmware_view.php:1658 msgid "Show VM" msgstr "VM 表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1434 +#: ../../enterprise/extensions/vmware/vmware_view.php:1676 msgid "View options" msgstr "オプションの表示" -#: ../../enterprise/extensions/vmware.php:26 +#: ../../enterprise/extensions/vmware.php:43 msgid "Failed to initialize VMware extension." msgstr "VMware 拡張の初期化に失敗。" -#: ../../enterprise/extensions/vmware.php:65 -msgid "VMware" -msgstr "VMware" - -#: ../../enterprise/godmode/admin_access_logs.php:42 +#: ../../enterprise/godmode/admin_access_logs.php:49 msgid "Show extended info" msgstr "拡張情報表示" -#: ../../enterprise/godmode/admin_access_logs.php:61 +#: ../../enterprise/godmode/admin_access_logs.php:69 msgid "" "The security check cannot be performed. There are no data in " "tsession_extended to check the hash." msgstr "セキュリティチェックを実行できません。ハッシュをチェックするための tsession_extended 内のデータがありません。" -#: ../../enterprise/godmode/admin_access_logs.php:71 +#: ../../enterprise/godmode/admin_access_logs.php:77 msgid "Security check is ok." msgstr "セキュリティチェックは正常です。" -#: ../../enterprise/godmode/admin_access_logs.php:78 +#: ../../enterprise/godmode/admin_access_logs.php:82 msgid "Security check is fail." msgstr "セキュリティチェックに失敗しました。" -#: ../../enterprise/godmode/admin_access_logs.php:187 +#: ../../enterprise/godmode/admin_access_logs.php:186 msgid "Extended info:" msgstr "拡張情報:" -#: ../../enterprise/godmode/admin_access_logs.php:187 +#: ../../enterprise/godmode/admin_access_logs.php:186 msgid "Changes:" msgstr "変更:" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:107 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:55 +msgid "Cannot delete rule from autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:61 +msgid "Agent Autoconfiguration Information" +msgstr "エージェント自動設定情報" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:62 +msgid "" +"You must click the Create or Update buttom for a correct configuration!!!" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:70 +msgid "" +"Cannot create autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:91 +msgid "Cannot create autoconfiguration in metaconsole" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:99 +msgid "Cannot create unnamed autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:109 +msgid "" +"Cannot udpate autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:126 +msgid "Cannot update autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:136 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:191 +msgid "" +"Cannot modify autoconfiguration from read only console, please create from " +"metaconsole (centralized management)" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:294 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:56 +msgid "Agent autoconfiguration list" +msgstr "エージェント自動設定一覧" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:297 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:657 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:60 +#: ../../enterprise/meta/include/functions_agents_meta.php:490 +#: ../../enterprise/meta/include/functions_agents_meta.php:546 +msgid "Agent autoconfiguration" +msgstr "エージェント自動設定" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:318 +msgid "Autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:388 +msgid "Add rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:393 +msgid "Rules" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:415 +msgid "New group" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:447 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:378 +msgid "Launch custom event" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:448 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 +msgid "Launch alert action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:449 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:74 +msgid "Launch script" +msgstr "起動スクリプト" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:596 +#: ../../enterprise/godmode/policies/configure_policy.php:46 +msgid "Add policy" +msgstr "ポリシー追加" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:611 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:350 +msgid "Op" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:628 +msgid "Extra configuration block" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:630 +msgid "" +"Put here any extra configuration you want to be applied to any new agent " +"matching previously defined rules" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:663 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:694 +msgid "Extra actions" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:684 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:987 +msgid "Add extra action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:852 +msgid "Add new rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:854 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:168 +msgid "Update rule" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1074 +msgid "Update extra action" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:42 +msgid "Cannot delete autoconfiguration" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +msgid "There are no defined autoconfigurations" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:124 +msgid "Add new configuration definition" +msgstr "" + +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:114 msgid "Error: The conf file of agent is not readble." msgstr "エラー: エージェント設定ファイルを読めません。" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:118 msgid "Error: The conf file of agent is not writable." msgstr "エラー: エージェント設定ファイルに書き込めません。" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:150 -#: ../../enterprise/godmode/policies/policy_modules.php:326 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:171 +#: ../../enterprise/godmode/policies/policy_modules.php:383 msgid "Add module" msgstr "モジュール追加" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:176 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:206 msgid "No module was found" msgstr "モジュールがありません" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:204 -msgid "Delete remote conf agent files in Pandora" -msgstr "Pandora 内のリモートエージェント設定ファイル削除" +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:241 +msgid "Delete remote conf agent files" +msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:37 #: ../../enterprise/operation/agentes/collection_view.php:47 msgid "This agent have not a remote configuration, please set it." msgstr "このエージェントはリモート設定ではありません。設定してください。" -#: ../../enterprise/godmode/agentes/collection_manager.php:76 +#: ../../enterprise/godmode/agentes/collection_manager.php:83 msgid "Succesful add the collection" msgstr "コレクションを追加しました" -#: ../../enterprise/godmode/agentes/collection_manager.php:77 +#: ../../enterprise/godmode/agentes/collection_manager.php:84 msgid "Unsuccesful add the collection" msgstr "コレクションの追加に失敗しました" -#: ../../enterprise/godmode/agentes/collection_manager.php:91 -#: ../../enterprise/godmode/agentes/collections.php:128 -#: ../../enterprise/godmode/agentes/collections.php:143 +#: ../../enterprise/godmode/agentes/collection_manager.php:100 +#: ../../enterprise/godmode/agentes/collections.php:182 +#: ../../enterprise/godmode/agentes/collections.php:204 +#: ../../enterprise/meta/advanced/collections.php:134 +#: ../../enterprise/meta/advanced/collections.php:156 msgid "Successful create collection package." msgstr "コレクションパッケージを作成しました。" -#: ../../enterprise/godmode/agentes/collection_manager.php:92 -#: ../../enterprise/godmode/agentes/collections.php:144 +#: ../../enterprise/godmode/agentes/collection_manager.php:101 +#: ../../enterprise/godmode/agentes/collections.php:205 +#: ../../enterprise/meta/advanced/collections.php:157 msgid "Can not create collection package." msgstr "コレクションパッケージを作成できません。" -#: ../../enterprise/godmode/agentes/collection_manager.php:106 -#: ../../enterprise/godmode/agentes/collections.php:231 -#: ../../enterprise/godmode/policies/policy_collections.php:122 -#: ../../enterprise/godmode/policies/policy_collections.php:193 +#: ../../enterprise/godmode/agentes/collection_manager.php:116 +#: ../../enterprise/godmode/agentes/collections.php:322 +#: ../../enterprise/godmode/policies/policy_collections.php:150 +#: ../../enterprise/godmode/policies/policy_collections.php:245 +#: ../../enterprise/meta/advanced/collections.php:320 msgid "Short Name" msgstr "短い名前" -#: ../../enterprise/godmode/agentes/collection_manager.php:121 -#: ../../enterprise/godmode/agentes/collection_manager.php:204 +#: ../../enterprise/godmode/agentes/collection_manager.php:131 +#: ../../enterprise/godmode/agentes/collection_manager.php:246 #: ../../enterprise/operation/agentes/collection_view.php:91 -#: ../../enterprise/operation/agentes/policy_view.php:154 +#: ../../enterprise/operation/agentes/policy_view.php:164 msgid "Show files" msgstr "ファイル表示" -#: ../../enterprise/godmode/agentes/collection_manager.php:138 -#: ../../enterprise/godmode/agentes/collection_manager.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:223 -#: ../../enterprise/godmode/agentes/collection_manager.php:224 -#: ../../enterprise/godmode/agentes/collections.data.php:341 -#: ../../enterprise/godmode/agentes/collections.data.php:342 +#: ../../enterprise/godmode/agentes/collection_manager.php:161 +#: ../../enterprise/godmode/agentes/collection_manager.php:162 +#: ../../enterprise/godmode/agentes/collection_manager.php:273 +#: ../../enterprise/godmode/agentes/collection_manager.php:274 +#: ../../enterprise/godmode/agentes/collections.data.php:396 +#: ../../enterprise/godmode/agentes/collections.data.php:397 +#: ../../enterprise/meta/advanced/collections.data.php:347 +#: ../../enterprise/meta/advanced/collections.data.php:348 msgid "Need to regenerate" msgstr "再生成が必要です" -#: ../../enterprise/godmode/agentes/collection_manager.php:144 -#: ../../enterprise/godmode/agentes/collection_manager.php:145 -#: ../../enterprise/godmode/agentes/collection_manager.php:229 -#: ../../enterprise/godmode/agentes/collection_manager.php:230 -#: ../../enterprise/godmode/agentes/collections.data.php:346 -#: ../../enterprise/godmode/agentes/collections.data.php:347 -#: ../../enterprise/godmode/agentes/collections.php:274 -#: ../../enterprise/godmode/agentes/collections.php:275 -#: ../../enterprise/operation/agentes/collection_view.php:106 -#: ../../enterprise/operation/agentes/collection_view.php:107 +#: ../../enterprise/godmode/agentes/collection_manager.php:170 +#: ../../enterprise/godmode/agentes/collection_manager.php:171 +#: ../../enterprise/godmode/agentes/collection_manager.php:282 +#: ../../enterprise/godmode/agentes/collection_manager.php:283 +#: ../../enterprise/godmode/agentes/collections.data.php:406 +#: ../../enterprise/godmode/agentes/collections.data.php:407 +#: ../../enterprise/godmode/agentes/collections.php:369 +#: ../../enterprise/godmode/agentes/collections.php:370 +#: ../../enterprise/meta/advanced/collections.data.php:357 +#: ../../enterprise/meta/advanced/collections.data.php:358 +#: ../../enterprise/meta/advanced/collections.php:370 +#: ../../enterprise/meta/advanced/collections.php:371 +#: ../../enterprise/operation/agentes/collection_view.php:122 +#: ../../enterprise/operation/agentes/collection_view.php:123 msgid "The collection directory does not exist." msgstr "コレクションディレクトリが存在しません。" -#: ../../enterprise/godmode/agentes/collection_manager.php:164 -#: ../../enterprise/operation/agentes/collection_view.php:64 -#: ../../enterprise/operation/agentes/policy_view.php:132 +#: ../../enterprise/godmode/agentes/collection_manager.php:202 +#: ../../enterprise/operation/agentes/collection_view.php:63 +#: ../../enterprise/operation/agentes/policy_view.php:140 msgid "Dir" msgstr "ディレクトリ" @@ -31080,271 +36649,296 @@ msgstr "ディレクトリ" msgid "Show Agent >" msgstr "エージェント表示 >" -#: ../../enterprise/godmode/agentes/collections.agents.php:113 +#: ../../enterprise/godmode/agentes/collections.agents.php:116 msgid "This collection has not been added to any agents" msgstr "このコレクションは、いずれのエージェントにも追加されていません" -#: ../../enterprise/godmode/agentes/collections.data.php:47 -#: ../../enterprise/godmode/agentes/collections.data.php:125 -#: ../../enterprise/godmode/agentes/collections.data.php:144 -#: ../../enterprise/godmode/agentes/collections.data.php:159 +#: ../../enterprise/godmode/agentes/collections.data.php:49 +#: ../../enterprise/godmode/agentes/collections.data.php:140 +#: ../../enterprise/godmode/agentes/collections.data.php:164 #: ../../enterprise/godmode/agentes/collections.data.php:181 -#: ../../enterprise/godmode/agentes/collections.data.php:223 +#: ../../enterprise/godmode/agentes/collections.data.php:205 +#: ../../enterprise/godmode/agentes/collections.data.php:252 +#: ../../enterprise/meta/advanced/collections.data.php:110 msgid "Manager configuration > New" msgstr "設定管理 > 新規" -#: ../../enterprise/godmode/agentes/collections.data.php:94 -#: ../../enterprise/godmode/agentes/collections.data.php:200 -#: ../../enterprise/godmode/agentes/collections.data.php:269 -#: ../../enterprise/godmode/agentes/collections.data.php:283 -#: ../../enterprise/godmode/agentes/collections.data.php:289 -#: ../../enterprise/godmode/agentes/collections.editor.php:54 +#: ../../enterprise/godmode/agentes/collections.data.php:100 +#: ../../enterprise/godmode/agentes/collections.data.php:226 +#: ../../enterprise/godmode/agentes/collections.data.php:306 +#: ../../enterprise/godmode/agentes/collections.data.php:319 +#: ../../enterprise/godmode/agentes/collections.data.php:324 +#: ../../enterprise/godmode/agentes/collections.editor.php:67 +#: ../../enterprise/meta/advanced/collections.data.php:222 msgid "Manager configuration > Edit " msgstr "設定管理 > 編集 " -#: ../../enterprise/godmode/agentes/collections.data.php:132 +#: ../../enterprise/godmode/agentes/collections.data.php:147 +#: ../../enterprise/meta/advanced/collections.data.php:78 msgid "" "Unable to create the collection. Another collection with the same short name." msgstr "コレクションを作成できません。同じ短い名前で他のコレクションがあります。" -#: ../../enterprise/godmode/agentes/collections.data.php:150 -#: ../../enterprise/godmode/agentes/collections.data.php:165 +#: ../../enterprise/godmode/agentes/collections.data.php:170 +#: ../../enterprise/godmode/agentes/collections.data.php:187 +#: ../../enterprise/meta/advanced/collections.data.php:99 +#: ../../enterprise/meta/advanced/collections.data.php:116 msgid "Unable to create the collection" msgstr "コレクションを作成できません" -#: ../../enterprise/godmode/agentes/collections.data.php:150 +#: ../../enterprise/godmode/agentes/collections.data.php:170 +#: ../../enterprise/meta/advanced/collections.data.php:99 msgid "Invalid characters in short name" msgstr "短い名前に不正な文字が含まれています" -#: ../../enterprise/godmode/agentes/collections.data.php:165 -#: ../../enterprise/include/functions_local_components.php:138 +#: ../../enterprise/godmode/agentes/collections.data.php:187 +#: ../../enterprise/include/functions_local_components.php:170 +#: ../../enterprise/meta/advanced/collections.data.php:116 msgid "Empty name" msgstr "名前が空です" -#: ../../enterprise/godmode/agentes/collections.data.php:187 -#: ../../enterprise/godmode/agentes/collections.data.php:231 +#: ../../enterprise/godmode/agentes/collections.data.php:211 +#: ../../enterprise/godmode/agentes/collections.data.php:260 +#: ../../enterprise/meta/advanced/collections.data.php:138 +#: ../../enterprise/meta/advanced/collections.data.php:180 msgid "Unable to create the collection." msgstr "コレクションを作成できません。" -#: ../../enterprise/godmode/agentes/collections.data.php:208 -#: ../../enterprise/godmode/agentes/collections.data.php:295 +#: ../../enterprise/godmode/agentes/collections.data.php:234 +#: ../../enterprise/godmode/agentes/collections.data.php:330 +#: ../../enterprise/meta/advanced/collections.data.php:156 +#: ../../enterprise/meta/advanced/collections.data.php:291 msgid "Correct create collection" msgstr "コレクションを作成しました" -#: ../../enterprise/godmode/agentes/collections.data.php:273 +#: ../../enterprise/godmode/agentes/collections.data.php:310 +#: ../../enterprise/meta/advanced/collections.data.php:275 msgid "Unable to edit the collection, empty name." msgstr "コレクションを編集できません。名前が空です。" -#: ../../enterprise/godmode/agentes/collections.data.php:286 +#: ../../enterprise/godmode/agentes/collections.data.php:322 +#: ../../enterprise/meta/advanced/collections.data.php:285 msgid "Unable to edit the collection." msgstr "コレクションを編集できません。" -#: ../../enterprise/godmode/agentes/collections.data.php:308 +#: ../../enterprise/godmode/agentes/collections.data.php:344 msgid "Error: The collection directory does not exist." msgstr "エラー: コレクションディレクトリが存在しません。" -#: ../../enterprise/godmode/agentes/collections.data.php:325 +#: ../../enterprise/godmode/agentes/collections.data.php:368 +#: ../../enterprise/meta/advanced/collections.data.php:319 msgid "Recreate file" msgstr "ファイル再生成" -#: ../../enterprise/godmode/agentes/collections.data.php:369 +#: ../../enterprise/godmode/agentes/collections.data.php:433 +#: ../../enterprise/meta/advanced/collections.data.php:383 msgid "Short name:" msgstr "短い名前:" -#: ../../enterprise/godmode/agentes/collections.data.php:375 +#: ../../enterprise/godmode/agentes/collections.data.php:438 +#: ../../enterprise/meta/advanced/collections.data.php:389 msgid "" "The collection's short name is the name of dir in attachment dir and the " "package collection." msgstr "コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレクトリ名です。" -#: ../../enterprise/godmode/agentes/collections.data.php:375 +#: ../../enterprise/godmode/agentes/collections.data.php:438 +#: ../../enterprise/meta/advanced/collections.data.php:389 msgid "Short name must contain only alphanumeric characters, - or _ ." msgstr "短い名前は、アルファベットと、- および _ のみ利用できます。" -#: ../../enterprise/godmode/agentes/collections.data.php:375 +#: ../../enterprise/godmode/agentes/collections.data.php:438 +#: ../../enterprise/meta/advanced/collections.data.php:389 msgid "Empty for default short name fc_X where X is the collection id." msgstr "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" -#: ../../enterprise/godmode/agentes/collections.editor.php:62 +#: ../../enterprise/godmode/agentes/collections.editor.php:81 msgid "Files in " msgstr "次の中に存在するファイル: " -#: ../../enterprise/godmode/agentes/collections.editor.php:106 -#: ../../enterprise/godmode/agentes/collections.editor.php:167 +#: ../../enterprise/godmode/agentes/collections.editor.php:135 +#: ../../enterprise/godmode/agentes/collections.editor.php:199 +#: ../../enterprise/meta/advanced/collections.editor.php:102 +#: ../../enterprise/meta/advanced/collections.editor.php:167 msgid "Back to file explorer" msgstr "ファイルエクスプローラへ戻る" -#: ../../enterprise/godmode/agentes/collections.editor.php:230 +#: ../../enterprise/godmode/agentes/collections.editor.php:265 +#: ../../enterprise/meta/advanced/collections.editor.php:235 msgid "Correct update file." msgstr "ファイルを更新しました。" -#: ../../enterprise/godmode/agentes/collections.editor.php:231 +#: ../../enterprise/godmode/agentes/collections.editor.php:266 +#: ../../enterprise/meta/advanced/collections.editor.php:236 msgid "Incorrect update file." msgstr "ファイルの更新に失敗しました。" -#: ../../enterprise/godmode/agentes/collections.editor.php:370 +#: ../../enterprise/godmode/agentes/collections.editor.php:390 +#: ../../enterprise/meta/advanced/collections.editor.php:351 msgid "Please, first save a new collection before to upload files." msgstr "ファイルをアップロードする前に新規コレクションを保存してください。" -#: ../../enterprise/godmode/agentes/collections.php:48 +#: ../../enterprise/godmode/agentes/collections.php:70 msgid "Success: recreate file" msgstr "成功: ファイル再作成" -#: ../../enterprise/godmode/agentes/collections.php:51 +#: ../../enterprise/godmode/agentes/collections.php:72 msgid "Error: recreate file " msgstr "エラー: ファイル再作成 " -#: ../../enterprise/godmode/agentes/collections.php:64 -#: ../../enterprise/godmode/agentes/collections.php:86 -#: ../../enterprise/godmode/agentes/collections.php:157 +#: ../../enterprise/godmode/agentes/collections.php:87 +#: ../../enterprise/godmode/agentes/collections.php:117 +#: ../../enterprise/godmode/agentes/collections.php:226 msgid "Collections Management" msgstr "コレクション管理" -#: ../../enterprise/godmode/agentes/collections.php:120 +#: ../../enterprise/godmode/agentes/collections.php:169 msgid "Manager collection" msgstr "コレクション管理" -#: ../../enterprise/godmode/agentes/collections.php:164 +#: ../../enterprise/godmode/agentes/collections.php:239 +#: ../../enterprise/meta/advanced/collections.php:260 msgid "Error: The main directory of collections does not exist." msgstr "エラー: コレクションのメインディレクトリが存在しません。" -#: ../../enterprise/godmode/agentes/collections.php:254 +#: ../../enterprise/godmode/agentes/collections.php:345 +#: ../../enterprise/meta/advanced/collections.php:346 msgid "Are you sure to delete?" msgstr "削除しますがよろしいですか?" -#: ../../enterprise/godmode/agentes/collections.php:255 +#: ../../enterprise/godmode/agentes/collections.php:346 +#: ../../enterprise/meta/advanced/collections.php:347 msgid "Delete collection" msgstr "コレクションの削除" -#: ../../enterprise/godmode/agentes/collections.php:261 +#: ../../enterprise/godmode/agentes/collections.php:352 +#: ../../enterprise/meta/advanced/collections.php:353 msgid "Are you sure to re-apply?" msgstr "再適用しますか?" -#: ../../enterprise/godmode/agentes/collections.php:262 +#: ../../enterprise/godmode/agentes/collections.php:353 +#: ../../enterprise/meta/advanced/collections.php:354 msgid "Re-Apply changes" msgstr "変更の再適用" -#: ../../enterprise/godmode/agentes/collections.php:268 +#: ../../enterprise/godmode/agentes/collections.php:360 +#: ../../enterprise/meta/advanced/collections.php:361 msgid "Are you sure to apply?" msgstr "適用しますか?" -#: ../../enterprise/godmode/agentes/collections.php:269 +#: ../../enterprise/godmode/agentes/collections.php:361 +#: ../../enterprise/meta/advanced/collections.php:362 msgid "Apply changes" msgstr "変更を適用" -#: ../../enterprise/godmode/agentes/inventory_manager.php:57 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:81 +#: ../../enterprise/godmode/agentes/inventory_manager.php:81 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:119 msgid "Successfully added inventory module" msgstr "インベントリモジュールを追加しました" -#: ../../enterprise/godmode/agentes/inventory_manager.php:60 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:85 +#: ../../enterprise/godmode/agentes/inventory_manager.php:83 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:122 msgid "Error adding inventory module" msgstr "インベントリモジュールの追加エラー" -#: ../../enterprise/godmode/agentes/inventory_manager.php:69 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:106 +#: ../../enterprise/godmode/agentes/inventory_manager.php:86 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:125 +msgid "The inventory of the module already exists" +msgstr "" + +#: ../../enterprise/godmode/agentes/inventory_manager.php:97 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:155 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:171 msgid "Successfully deleted inventory module" msgstr "インベントリモジュールを削除しました" -#: ../../enterprise/godmode/agentes/inventory_manager.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:110 +#: ../../enterprise/godmode/agentes/inventory_manager.php:99 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:158 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:174 +#: ../../enterprise/include/functions_enterprise_api.php:4673 msgid "Error deleting inventory module" msgstr "インベントリモジュールの削除エラー" -#: ../../enterprise/godmode/agentes/inventory_manager.php:80 +#: ../../enterprise/godmode/agentes/inventory_manager.php:107 msgid "Successfully forced inventory module" msgstr "インベントリモジュールを強制実行しました" -#: ../../enterprise/godmode/agentes/inventory_manager.php:83 +#: ../../enterprise/godmode/agentes/inventory_manager.php:109 msgid "Error forcing inventory module" msgstr "インベントリモジュールの強制実行エラー" -#: ../../enterprise/godmode/agentes/inventory_manager.php:108 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:92 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 +#: ../../enterprise/godmode/agentes/inventory_manager.php:125 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:140 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 msgid "Successfully updated inventory module" msgstr "インベントリモジュールを更新しました" -#: ../../enterprise/godmode/agentes/inventory_manager.php:111 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:96 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:145 +#: ../../enterprise/godmode/agentes/inventory_manager.php:127 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:143 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 +#: ../../enterprise/include/functions_enterprise_api.php:4631 msgid "Error updating inventory module" msgstr "インベントリモジュールの更新エラー" -#: ../../enterprise/godmode/agentes/inventory_manager.php:129 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:54 +#: ../../enterprise/godmode/agentes/inventory_manager.php:162 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:71 msgid "Inventory module error" msgstr "インベントリモジュールエラー" -#: ../../enterprise/godmode/agentes/inventory_manager.php:172 -#: ../../enterprise/godmode/agentes/inventory_manager.php:235 -#: ../../enterprise/meta/advanced/synchronizing.user.php:543 +#: ../../enterprise/godmode/agentes/inventory_manager.php:219 +#: ../../enterprise/include/functions_ui.php:92 +#: ../../enterprise/meta/advanced/synchronizing.user.php:598 msgid "Target" msgstr "対象" -#: ../../enterprise/godmode/agentes/inventory_manager.php:182 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:196 -msgid "7 days" -msgstr "7日" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:195 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:207 -msgid "Update all" -msgstr "全て更新" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:43 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:42 msgid "Data Copy" msgstr "データコピー" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:52 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:49 msgid "No selected agents to copy" msgstr "コピーするエージェントが選択されていません。" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:66 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:62 msgid "No source agent selected" msgstr "ソースエージェントが選択されていません" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:107 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:102 msgid "Making copy of configuration file for" msgstr "設定ファイルのコピーを作成中:" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 msgid "Error copying md5 file " msgstr "md5 ファイルのコピーエラー " -#: ../../enterprise/godmode/agentes/manage_config_remote.php:116 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:111 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 msgid " md5 file" msgstr " md5 ファイル" +#: ../../enterprise/godmode/agentes/manage_config_remote.php:113 #: ../../enterprise/godmode/agentes/manage_config_remote.php:119 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 msgid "Copied " msgstr "コピーしました: " -#: ../../enterprise/godmode/agentes/manage_config_remote.php:122 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 msgid "Error copying " msgstr "コピーエラー " -#: ../../enterprise/godmode/agentes/manage_config_remote.php:122 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:125 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:117 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:119 msgid " config file" msgstr " 設定ファイル" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:138 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:129 msgid "Remote configuration management" msgstr "リモート設定管理" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:143 -msgid "Source group" -msgstr "複製元グループ" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:185 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:178 msgid "To agent(s):" msgstr "適用先エージェント:" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:210 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:195 msgid "Replicate configuration" msgstr "設定の複製" @@ -31352,663 +36946,675 @@ msgstr "設定の複製" msgid "Create a new web Server module" msgstr "ウェブサーバモジュールの新規作成" -#: ../../enterprise/godmode/agentes/module_manager.php:29 +#: ../../enterprise/godmode/agentes/module_manager.php:31 msgid "Create a new web analysis module" msgstr "web 分析モジュール新規作成" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:49 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:50 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:56 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:57 msgid "The changes on this field are linked with the configuration data." msgstr "このフィールド上の変更は、設定データにリンクされます。" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:55 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:62 msgid "Using local component" msgstr "ローカルコンポーネントの利用" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:128 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:129 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:151 msgid "Show configuration data" msgstr "設定データを表示する" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:139 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:162 msgid "Hide configuration data" msgstr "設定データを隠す" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:147 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 msgid "Data configuration" msgstr "データ設定" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:153 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:101 -#: ../../enterprise/godmode/modules/configure_local_component.php:315 -#: ../../enterprise/meta/include/functions_wizard_meta.php:552 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:176 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:118 +#: ../../enterprise/godmode/modules/configure_local_component.php:466 +#: ../../enterprise/meta/include/functions_wizard_meta.php:673 msgid "Load basic" msgstr "基本設定読み込み" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:153 -#: ../../enterprise/godmode/modules/configure_local_component.php:317 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:176 +#: ../../enterprise/godmode/modules/configure_local_component.php:472 msgid "Load a basic structure on data configuration" msgstr "データ設定に基本構造をロードします" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:158 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:105 -#: ../../enterprise/godmode/modules/configure_local_component.php:323 -#: ../../enterprise/include/functions_metaconsole.php:992 -#: ../../enterprise/include/functions_metaconsole.php:1015 -#: ../../enterprise/include/functions_metaconsole.php:1038 -#: ../../enterprise/include/functions_metaconsole.php:1061 -#: ../../enterprise/include/functions_metaconsole.php:1084 -#: ../../enterprise/include/functions_metaconsole.php:1107 -#: ../../enterprise/meta/include/functions_wizard_meta.php:175 -#: ../../enterprise/meta/include/functions_wizard_meta.php:556 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:179 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:126 +#: ../../enterprise/godmode/modules/configure_local_component.php:475 +#: ../../enterprise/include/functions_metaconsole.php:1287 +#: ../../enterprise/include/functions_metaconsole.php:1320 +#: ../../enterprise/include/functions_metaconsole.php:1353 +#: ../../enterprise/include/functions_metaconsole.php:1386 +#: ../../enterprise/include/functions_metaconsole.php:1419 +#: ../../enterprise/include/functions_metaconsole.php:1452 +#: ../../enterprise/include/functions_metaconsole.php:1485 +#: ../../enterprise/meta/include/functions_wizard_meta.php:238 +#: ../../enterprise/meta/include/functions_wizard_meta.php:681 msgid "Check" msgstr "チェック" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:158 -#: ../../enterprise/godmode/modules/configure_local_component.php:324 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:179 +#: ../../enterprise/godmode/modules/configure_local_component.php:475 msgid "Check the correct structure of the data configuration" msgstr "データ設定の正常性を確認" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:169 -#: ../../enterprise/godmode/modules/configure_local_component.php:327 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:192 +#: ../../enterprise/godmode/modules/configure_local_component.php:478 msgid "First line must be \"module_begin\"" msgstr "最初の行は、\"module_begin\" でなければいけません" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 -#: ../../enterprise/godmode/modules/configure_local_component.php:328 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:193 +#: ../../enterprise/godmode/modules/configure_local_component.php:479 msgid "Data configuration is empty" msgstr "データ設定が空です" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:171 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:175 -#: ../../enterprise/godmode/modules/configure_local_component.php:329 -#: ../../enterprise/godmode/modules/configure_local_component.php:333 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:194 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:198 +#: ../../enterprise/godmode/modules/configure_local_component.php:480 +#: ../../enterprise/godmode/modules/configure_local_component.php:484 msgid "Last line must be \"module_end\"" msgstr "最後の行は \"module_end\" でなければいけません" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:172 -#: ../../enterprise/godmode/modules/configure_local_component.php:330 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:195 +#: ../../enterprise/godmode/modules/configure_local_component.php:481 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to " "data configuration" msgstr "名前がありません。データ設定に \"module_name モジュール名\" という行を追加してください。" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:173 -#: ../../enterprise/godmode/modules/configure_local_component.php:331 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:196 +#: ../../enterprise/godmode/modules/configure_local_component.php:482 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to " "data configuration" msgstr "タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追加してください。" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 -#: ../../enterprise/godmode/modules/configure_local_component.php:332 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +#: ../../enterprise/godmode/modules/configure_local_component.php:483 msgid "Type is wrong. Please set a correct type" msgstr "タイプが不正です。正しいタイプを選択してください。" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:176 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:172 -#: ../../enterprise/godmode/modules/configure_local_component.php:334 -#: ../../enterprise/meta/include/functions_wizard_meta.php:569 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:202 +#: ../../enterprise/godmode/modules/configure_local_component.php:485 +#: ../../enterprise/meta/include/functions_wizard_meta.php:698 msgid "There is a line with a unknown token 'token_fail'." msgstr "不明なトークン 'token_fail' を含む行があります。" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:177 -#: ../../enterprise/godmode/modules/configure_local_component.php:335 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +#: ../../enterprise/godmode/modules/configure_local_component.php:486 msgid "Error in the syntax, please check the data configuration." msgstr "書式エラーです。データ設定を確認してください。" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:178 -#: ../../enterprise/godmode/modules/configure_local_component.php:336 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +#: ../../enterprise/godmode/modules/configure_local_component.php:487 msgid "Data configuration are built correctly" msgstr "データ設定が正しく作られました" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 msgid "Synthetic arithmetic" msgstr "統合計算" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:30 msgid "Synthetic average" msgstr "統合平均" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:107 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:112 msgid "Fixed value" msgstr "固定値" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:112 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:117 msgid "Add module to operation as add" msgstr "足し算処理にモジュールを追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:113 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:118 msgid "Add module to operations as deduct" msgstr "引き算処理にモジュールを追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 msgid "Add module to operations as multiplicate " msgstr "掛け算処理にモジュールを追加 " -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:115 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 msgid "Add module to operations as divide" msgstr "割り算処理にモジュールを追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:116 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 msgid "Remove selected modules" msgstr "選択したモジュールの削除" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:126 msgid "Add module to average operation" msgstr "平均処理にモジュールを追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:127 msgid "Remove selected modules from operations stack" msgstr "選択したモジュールをオペレーションスタックから削除する" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:137 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 msgid "Move down selected modules" msgstr "選択したモジュールを下へ" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:138 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 msgid "Move up selected modules" msgstr "選択したモジュールを上へ" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:173 msgid "Select Service" msgstr "サービス選択" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:177 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 msgid "Netflow filter" msgstr "Netflow フィルタ" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:186 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:195 msgid "Select filter" msgstr "フィルタ選択" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:103 -#: ../../enterprise/meta/include/functions_wizard_meta.php:554 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:124 +#: ../../enterprise/meta/include/functions_wizard_meta.php:679 msgid "Load a basic structure on Web Checks" msgstr "ウェブチェックに基本構造を読み込む" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:107 -#: ../../enterprise/meta/include/functions_wizard_meta.php:558 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:132 +#: ../../enterprise/meta/include/functions_wizard_meta.php:687 msgid "Check the correct structure of the WebCheck" msgstr "ウェブチェックの構造確認" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:115 -#: ../../enterprise/meta/include/functions_wizard_meta.php:476 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:144 +#: ../../enterprise/meta/include/functions_wizard_meta.php:592 msgid "Check type" msgstr "チェックタイプ" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:150 msgid "Requests" msgstr "リクエスト" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:124 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:153 msgid "Agent browser id" msgstr "エージェントブラウザID" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:130 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:159 msgid "HTTP auth (login)" msgstr "HTTP 認証 (ログイン)" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:133 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:162 msgid "HTTP auth (password)" msgstr "HTTP 認証(パスワード)" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:140 -#: ../../enterprise/meta/include/functions_wizard_meta.php:950 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1455 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:169 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1086 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1619 msgid "Proxy URL" msgstr "プロキシURL" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:147 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:176 msgid "Proxy auth (login)" msgstr "プロキシ認証(ログイン)" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:151 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:180 msgid "Proxy auth (pass)" msgstr "プロキシ認証(パスワード)" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:158 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:187 msgid "Proxy auth (server)" msgstr "プロキシ認証(サーバ)" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:162 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:191 msgid "Proxy auth (realm)" msgstr "プロキシ認証(レルム)" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:168 -#: ../../enterprise/meta/include/functions_wizard_meta.php:565 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:198 +#: ../../enterprise/meta/include/functions_wizard_meta.php:694 msgid "First line must be \"task_begin\"" msgstr "最初の行は、\"task_begin\" でなければいけません。" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:169 -#: ../../enterprise/meta/include/functions_wizard_meta.php:566 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:199 +#: ../../enterprise/meta/include/functions_wizard_meta.php:695 msgid "Webchecks configuration is empty" msgstr "ウェブチェック設定が空です" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:170 -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:171 -#: ../../enterprise/meta/include/functions_wizard_meta.php:567 -#: ../../enterprise/meta/include/functions_wizard_meta.php:568 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:200 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:201 +#: ../../enterprise/meta/include/functions_wizard_meta.php:696 +#: ../../enterprise/meta/include/functions_wizard_meta.php:697 msgid "Last line must be \"task_end\"" msgstr "最後の行は、\"task_end\" でなければいけません。" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:173 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:203 msgid "There isn't get or post" msgstr "get または post がありません" -#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:174 -#: ../../enterprise/meta/include/functions_wizard_meta.php:570 +#: ../../enterprise/godmode/agentes/module_manager_editor_web.php:204 +#: ../../enterprise/meta/include/functions_wizard_meta.php:699 msgid "Web checks are built correctly" msgstr "ウェブチェックを設定しました" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:89 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:123 msgid "Run performance tests" msgstr "パフォーマンステストの実行" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:94 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:134 msgid "Target web site" msgstr "対象webサイト" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:94 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:136 msgid "" "The url specified in this field is mandatory to retrieve performance stats." msgstr "パフォーマンス統計には、このフィールドの URL 指定は必須です。" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:99 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:150 msgid "target web site (http://...)" msgstr "対象 web サイト(http://...)" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:104 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:157 msgid "Execute tests from" -msgstr "" +msgstr "テスト実行:" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:290 msgid "Paste your selenium test, exported as HTML, here" msgstr "HTML としてエクスポートした Selenium のテストケースをここにペーストしてください" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:131 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:303 msgid "Add file" msgstr "ファイル追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:134 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:310 msgid "Upload your selenium test in html format" -msgstr "" +msgstr "html フォーマットで selenmium テストをアップロード" -#: ../../enterprise/godmode/agentes/plugins_manager.php:67 +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 msgid "Plug-in updated succesfully" msgstr "プラグインを更新しました" -#: ../../enterprise/godmode/agentes/plugins_manager.php:67 +#: ../../enterprise/godmode/agentes/plugins_manager.php:58 msgid "Plug-in cannot be updated" msgstr "プラグインを更新できませんでした" -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +#: ../../enterprise/godmode/agentes/plugins_manager.php:65 msgid "Plug-in deleted succesfully" msgstr "プラグインを削除しました" -#: ../../enterprise/godmode/agentes/plugins_manager.php:74 +#: ../../enterprise/godmode/agentes/plugins_manager.php:65 msgid "Plug-in cannot be deleted" msgstr "プラグインを削除できません" -#: ../../enterprise/godmode/agentes/plugins_manager.php:83 -#: ../../enterprise/godmode/policies/policy_plugins.php:55 +#: ../../enterprise/godmode/agentes/plugins_manager.php:76 +#: ../../enterprise/godmode/policies/policy_plugins.php:67 msgid "Plug-in added succesfully" msgstr "プラグインを追加しました" -#: ../../enterprise/godmode/agentes/plugins_manager.php:83 -#: ../../enterprise/godmode/policies/policy_plugins.php:56 +#: ../../enterprise/godmode/agentes/plugins_manager.php:76 +#: ../../enterprise/godmode/policies/policy_plugins.php:68 msgid "Plug-in cannot be added" msgstr "プラグインを追加できません" -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in disabled succesfully" -msgstr "プラグインを無効化しました" +#: ../../enterprise/godmode/agentes/plugins_manager.php:86 +msgid "Plug-in " +msgstr "" -#: ../../enterprise/godmode/agentes/plugins_manager.php:98 -msgid "Plug-in cannot be disabled" -msgstr "プラグインを無効化できません" +#: ../../enterprise/godmode/agentes/plugins_manager.php:86 +msgid "Plug-in cannot be " +msgstr "" -#: ../../enterprise/godmode/agentes/plugins_manager.php:113 -msgid "Plug-in enabled succesfully" -msgstr "プラグインを有効化しました" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:113 -msgid "Plug-in cannot be enabled" -msgstr "プラグインを有効化できません" - -#: ../../enterprise/godmode/agentes/plugins_manager.php:124 -#: ../../enterprise/godmode/policies/policy_plugins.php:66 +#: ../../enterprise/godmode/agentes/plugins_manager.php:101 +#: ../../enterprise/godmode/policies/policy_plugins.php:85 msgid "New plug-in" msgstr "新規プラグイン" -#: ../../enterprise/godmode/alerts/alert_events.php:45 -#: ../../enterprise/godmode/alerts/alert_events_list.php:55 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:70 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:49 +#: ../../enterprise/godmode/alerts/alert_events.php:47 +#: ../../enterprise/godmode/alerts/alert_events_list.php:57 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:50 msgid "List event alerts" msgstr "イベントアラート一覧" -#: ../../enterprise/godmode/alerts/alert_events.php:50 -#: ../../enterprise/godmode/alerts/alert_events_list.php:59 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:75 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:54 +#: ../../enterprise/godmode/alerts/alert_events.php:52 +#: ../../enterprise/godmode/alerts/alert_events_list.php:61 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:84 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:55 msgid "Builder event alert" msgstr "イベントアラートビルダ" -#: ../../enterprise/godmode/alerts/alert_events.php:58 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:79 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:58 +#: ../../enterprise/godmode/alerts/alert_events.php:60 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:88 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:59 msgid "List event rules" msgstr "イベントルール一覧" -#: ../../enterprise/godmode/alerts/alert_events.php:71 +#: ../../enterprise/godmode/alerts/alert_events.php:84 msgid "Configure event alert" msgstr "イベントアラート設定" -#: ../../enterprise/godmode/alerts/alert_events.php:347 +#: ../../enterprise/godmode/alerts/alert_events.php:394 msgid "Could not be created, please fill alert name" msgstr "作成できませんでした。アラート名を入力してください。" -#: ../../enterprise/godmode/alerts/alert_events.php:463 +#: ../../enterprise/godmode/alerts/alert_events.php:548 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:980 msgid "Rule evaluation mode" msgstr "ルール評価モード" -#: ../../enterprise/godmode/alerts/alert_events.php:467 +#: ../../enterprise/godmode/alerts/alert_events.php:561 msgid "Group by" msgstr "グループ化" -#: ../../enterprise/godmode/alerts/alert_events.php:523 +#: ../../enterprise/godmode/alerts/alert_events.php:645 msgid "Please Read" msgstr "読んでください" -#: ../../enterprise/godmode/alerts/alert_events.php:524 +#: ../../enterprise/godmode/alerts/alert_events.php:645 msgid "" "Since the alert can have multiple actions. You can edit them from the alert " "list of events." msgstr "アラートは複数のアクションを持てます。イベントのアラート一覧から編集することができます。" -#: ../../enterprise/godmode/alerts/alert_events_list.php:67 -#: ../../enterprise/godmode/alerts/alert_events_list.php:114 -#: ../../enterprise/godmode/alerts/alert_events_list.php:129 -#: ../../enterprise/godmode/alerts/alert_events_list.php:144 -#: ../../enterprise/godmode/menu.php:134 -#: ../../enterprise/meta/general/main_header.php:263 +#: ../../enterprise/godmode/alerts/alert_events_list.php:71 +#: ../../enterprise/godmode/alerts/alert_events_list.php:121 +#: ../../enterprise/godmode/alerts/alert_events_list.php:137 +#: ../../enterprise/godmode/alerts/alert_events_list.php:156 +#: ../../enterprise/godmode/menu.php:237 +#: ../../enterprise/meta/general/main_header.php:334 msgid "Event alerts" msgstr "イベントアラート" -#: ../../enterprise/godmode/alerts/alert_events_list.php:328 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:357 +#: ../../enterprise/godmode/alerts/alert_events_list.php:380 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:341 msgid "Error processing action" msgstr "アクション処理エラー" -#: ../../enterprise/godmode/alerts/alert_events_list.php:343 +#: ../../enterprise/godmode/alerts/alert_events_list.php:394 msgid "Error validating alert(s)" msgstr "アラート承諾エラー" -#: ../../enterprise/godmode/alerts/alert_events_list.php:421 +#: ../../enterprise/godmode/alerts/alert_events_list.php:500 msgid "Ac." msgstr "Ac." -#: ../../enterprise/godmode/alerts/alert_events_list.php:426 -msgid "Val." -msgstr "Val." - -#: ../../enterprise/godmode/alerts/alert_events_list.php:486 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 -#: ../../enterprise/meta/include/functions_autoprovision.php:703 +#: ../../enterprise/godmode/alerts/alert_events_list.php:568 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:434 +#: ../../enterprise/meta/include/functions_autoprovision.php:788 msgid "Move up" msgstr "上へ" -#: ../../enterprise/godmode/alerts/alert_events_list.php:498 -#: ../../enterprise/godmode/alerts/alert_events_rules.php:447 -#: ../../enterprise/meta/include/functions_autoprovision.php:712 +#: ../../enterprise/godmode/alerts/alert_events_list.php:580 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:440 +#: ../../enterprise/meta/include/functions_autoprovision.php:796 msgid "Move down" msgstr "下へ" -#: ../../enterprise/godmode/alerts/alert_events_list.php:536 +#: ../../enterprise/godmode/alerts/alert_events_list.php:621 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2691 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3056 msgid "No associated actions" msgstr "関連アクションがありません" -#: ../../enterprise/godmode/alerts/alert_events_list.php:640 +#: ../../enterprise/godmode/alerts/alert_events_list.php:725 msgid "View associated rules" msgstr "関連付けルール表示" -#: ../../enterprise/godmode/alerts/alert_events_list.php:657 +#: ../../enterprise/godmode/alerts/alert_events_list.php:741 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2781 msgid "There are no defined events alerts" msgstr "定義済のイベントアラートがありません" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:91 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:102 msgid "Event rules" msgstr "イベントルール" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:203 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:103 +msgid "" +"This view will be removed in a future version. Please use \"Alert " +"correlation\" instead." +msgstr "この画面は将来のバージョンで削除されます。代わりに \"アラート相関\" を利用してください。" + +#: ../../enterprise/godmode/alerts/alert_events_rules.php:225 msgid "Error creating rule" msgstr "ルール作成エラー" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:208 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:229 msgid "Successfully created rule" msgstr "ルールを作成しました" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:255 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:244 msgid "Error updating rule" msgstr "ルール更新エラー" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:247 msgid "Successfully updating rule" msgstr "ルールを更新しました" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:269 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:257 msgid "Error updating rule operators" msgstr "ルールオペレータの更新エラー" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:272 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:259 msgid "Successfully update rule operators" msgstr "ルールオペレータを更新しました" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:408 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:402 msgid "(Agent)" msgstr "(エージェント)" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:411 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:405 msgid "Operator" msgstr "オペレータ" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:492 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:499 msgid "Logic expression for these rules:" msgstr "これらのルールの論理式:" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:500 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:507 msgid "Update operators" msgstr "オペレータの更新" -#: ../../enterprise/godmode/alerts/alert_events_rules.php:506 +#: ../../enterprise/godmode/alerts/alert_events_rules.php:512 msgid "There are no defined alert event rules" msgstr "定義済のアラートイベントルールがありません" -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:69 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:73 msgid "Configure event rule" msgstr "イベントルール設定" -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:134 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 msgid "User comment" msgstr "ユーザコメント" -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:134 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:137 #: ../../enterprise/godmode/alerts/configure_alert_rule.php:146 #: ../../enterprise/godmode/alerts/configure_alert_rule.php:149 -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:158 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:161 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:164 msgid "This field will be processed with regexp" msgstr "このフィールドは、正規表現で処理されます" -#: ../../enterprise/godmode/alerts/configure_alert_rule.php:140 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:152 msgid "Window" msgstr "ウィンドウ" -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 +#: ../../enterprise/godmode/alerts/configure_alert_rule.php:169 +msgid "Recursion:" +msgstr "" + +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 msgid "Success: create the alerts." msgstr "成功: アラート作成" -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:66 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:71 msgid "Failed: create the alerts for this modules, please check." msgstr "失敗: このモジュールのアラート作成、確認してください。" -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:116 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:115 -msgid "Modules agents in policy" -msgstr "ポリシー内のモジュールエージェント" +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:113 +msgid "Modules in policy" +msgstr "" -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:51 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:59 msgid "Successfully copied " -msgstr "" +msgstr "コピーしました " -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:58 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 msgid " cannot be copied to " -msgstr "" +msgstr " を次へコピーできません: " -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:58 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:66 msgid " policy" msgstr " ポリシー" -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:177 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:206 msgid "To policies" msgstr "ポリシーへ" -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:330 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 msgid "No destiny policies to copy" -msgstr "" +msgstr "コピーするためのポリシーがありません" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 msgid "Success: remove the alerts." msgstr "成功: アラート削除" -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:67 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:74 msgid "Failed: remove the alerts for this modules, please check." msgstr "失敗: このモジュールのアラート削除、確認してください。" -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:166 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:217 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 +msgid "Modules agents in policy" +msgstr "ポリシー内のモジュールエージェント" + +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:181 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:243 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), " "Single value, each Custom OIDs/Datas." msgstr "説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/データ フィールドで検索します。" -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:182 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:200 msgid "SNMP Alerts to be deleted" msgstr "削除するSNMPアラート" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:212 -#: ../../enterprise/godmode/policies/policy_agents.php:403 -#: ../../enterprise/godmode/policies/policy_agents.php:411 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:165 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:445 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:362 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:208 +#: ../../enterprise/godmode/policies/policy_agents.php:517 +#: ../../enterprise/godmode/policies/policy_agents.php:525 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:393 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:169 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:569 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:389 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:232 msgid "Filter agent" msgstr "エージェントのフィルタ" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:215 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:211 msgid "Filter module" msgstr "モジュールのフィルタ" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:334 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:394 msgid "Updated modules on database" msgstr "データベース上のモジュールを更新しました" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:336 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 msgid "Agent configuration files updated" msgstr "エージェント設定ファイルを更新しました" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:354 -#: ../../enterprise/godmode/policies/policy_queue.php:398 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:407 -#: ../../enterprise/meta/advanced/policymanager.queue.php:260 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:414 +#: ../../enterprise/godmode/policies/policy_queue.php:481 +#: ../../enterprise/include/class/Omnishell.class.php:362 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 +#: ../../enterprise/meta/advanced/policymanager.queue.php:261 msgid "Finished" msgstr "完了" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:62 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:62 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:76 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:73 msgid "Successful update the tags" msgstr "タグを更新しました" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:63 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:63 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:77 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:74 msgid "Unsuccessful update the tags" msgstr "タグの更新に失敗しました" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:102 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 msgid "Tags unused" msgstr "未使用タグ" -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:118 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:163 msgid "Tags used" msgstr "使用中タグ" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:186 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:205 #, php-format msgid "Successfully updated alerts (%s / %s)" msgstr "アラートを更新しました (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:190 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:213 #, php-format msgid "Unsuccessfully updated alerts (%s / %s)" msgstr "アラートの更新に失敗しました (%s / %s)" -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:233 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 msgid "SNMP Alerts to be edit" msgstr "編集するSNMPアラート" #: ../../enterprise/godmode/massive/massive_operations.php:27 -#: ../../enterprise/godmode/menu.php:47 +#: ../../enterprise/godmode/menu.php:48 msgid "Satellite operations" msgstr "サテライト操作" -#: ../../enterprise/godmode/massive/massive_operations.php:47 -#: ../../enterprise/godmode/menu.php:35 +#: ../../enterprise/godmode/massive/massive_operations.php:48 +#: ../../enterprise/godmode/menu.php:36 msgid "SNMP operations" msgstr "SNMP 操作" -#: ../../enterprise/godmode/massive/massive_operations.php:67 -#: ../../enterprise/godmode/menu.php:24 +#: ../../enterprise/godmode/massive/massive_operations.php:69 +#: ../../enterprise/godmode/menu.php:25 msgid "Policies operations" msgstr "ポリシー操作" -#: ../../enterprise/godmode/massive/massive_operations.php:78 +#: ../../enterprise/godmode/massive/massive_operations.php:83 msgid "Bulk alerts policy add" msgstr "一括アラートポリシー追加" -#: ../../enterprise/godmode/massive/massive_operations.php:79 +#: ../../enterprise/godmode/massive/massive_operations.php:84 msgid "Bulk alerts policy delete" msgstr "一括アラートポリシー削除" -#: ../../enterprise/godmode/massive/massive_operations.php:80 +#: ../../enterprise/godmode/massive/massive_operations.php:85 msgid "Bulk tags module policy edit" msgstr "一括タグモジュールポリシー編集" -#: ../../enterprise/godmode/massive/massive_operations.php:81 +#: ../../enterprise/godmode/massive/massive_operations.php:86 msgid "Bulk modules policy tags edit" msgstr "一括モジュールポリシータグ編集" -#: ../../enterprise/godmode/massive/massive_operations.php:82 +#: ../../enterprise/godmode/massive/massive_operations.php:87 msgid "Bulk modules policy add from agent" +msgstr "エージェントからのモジュールポリシー一括追加" + +#: ../../enterprise/godmode/massive/massive_operations.php:88 +msgid "Bulk modules policy edit" msgstr "" -#: ../../enterprise/godmode/massive/massive_operations.php:90 +#: ../../enterprise/godmode/massive/massive_operations.php:99 msgid "Bulk alert SNMP delete" msgstr "一括SNMPアラート削除" -#: ../../enterprise/godmode/massive/massive_operations.php:91 +#: ../../enterprise/godmode/massive/massive_operations.php:100 msgid "Bulk alert SNMP edit" msgstr "一括SNMPアラート編集" -#: ../../enterprise/godmode/massive/massive_operations.php:99 +#: ../../enterprise/godmode/massive/massive_operations.php:111 msgid "Bulk Satellite modules edit" msgstr "一括サテライトモジュール編集" -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:100 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:113 msgid "Modules unused" msgstr "未使用モジュール" -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:116 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:151 msgid "Modules used" msgstr "使用中モジュール" @@ -32016,980 +37622,1454 @@ msgstr "使用中モジュール" msgid "Manage Satellite Server" msgstr "サテライトサーバ管理" -#: ../../enterprise/godmode/menu.php:58 ../../enterprise/godmode/menu.php:152 +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:258 msgid "Duplicate config" msgstr "設定の複製" -#: ../../enterprise/godmode/menu.php:66 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:27 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:28 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:47 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -#: ../../enterprise/include/functions_policies.php:3430 +#: ../../enterprise/godmode/menu.php:69 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:68 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:234 +#: ../../enterprise/include/functions_policies.php:3752 +#: ../../enterprise/meta/include/functions_components_meta.php:72 +#: ../../enterprise/meta/include/functions_components_meta.php:105 msgid "Inventory modules" msgstr "インベントリモジュール" -#: ../../enterprise/godmode/menu.php:75 -#: ../../enterprise/meta/include/functions_components_meta.php:52 -#: ../../enterprise/meta/include/functions_components_meta.php:69 +#: ../../enterprise/godmode/menu.php:78 +#: ../../enterprise/meta/include/functions_components_meta.php:60 +#: ../../enterprise/meta/include/functions_components_meta.php:84 msgid "Local components" msgstr "ローカルコンポーネント" -#: ../../enterprise/godmode/menu.php:83 +#: ../../enterprise/godmode/menu.php:87 +#: ../../enterprise/include/functions_policies.php:3708 msgid "Manage policies" msgstr "ポリシー管理" -#: ../../enterprise/godmode/menu.php:109 +#: ../../enterprise/godmode/menu.php:96 +msgid "Manage agent autoconfiguration" +msgstr "エージェント自動設定管理" + +#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/include/class/AgentRepository.class.php:596 +msgid "Software agents repository" +msgstr "ソフトウエアエージェントリポジトリ" + +#: ../../enterprise/godmode/menu.php:152 +msgid "Mysql" +msgstr "" + +#: ../../enterprise/godmode/menu.php:153 +#: ../../enterprise/godmode/setup/setup.php:186 +#: ../../enterprise/include/class/Oracle.app.php:406 +msgid "Oracle" +msgstr "Oracle" + +#: ../../enterprise/godmode/menu.php:154 +#: ../../enterprise/include/class/VMware.app.php:458 +msgid "VMware" +msgstr "VMware" + +#: ../../enterprise/godmode/menu.php:156 +#: ../../enterprise/godmode/wizards/Applications.class.php:154 +#: ../../enterprise/godmode/wizards/Applications.class.php:162 +msgid "Applications" +msgstr "" + +#: ../../enterprise/godmode/menu.php:167 +msgid "Amazon Web Services" +msgstr "" + +#: ../../enterprise/godmode/menu.php:168 +msgid "Microsoft Azure" +msgstr "" + +#: ../../enterprise/godmode/menu.php:169 +#: ../../enterprise/godmode/wizards/Cloud.class.php:182 +#: ../../enterprise/godmode/wizards/Cloud.class.php:191 +#: ../../enterprise/include/class/Aws.cloud.php:94 +#: ../../enterprise/include/class/Aws.cloud.php:141 +#: ../../enterprise/include/class/Azure.cloud.php:139 +#: ../../enterprise/include/class/Azure.cloud.php:183 +msgid "Cloud" +msgstr "クラウド" + +#: ../../enterprise/godmode/menu.php:184 +msgid "New console task" +msgstr "新規コンソールタスク" + +#: ../../enterprise/godmode/menu.php:194 msgid "Enterprise ACL Setup" msgstr "Enterprise ACL 設定" -#: ../../enterprise/godmode/menu.php:116 +#: ../../enterprise/godmode/menu.php:203 msgid "Skins" msgstr "スキン" -#: ../../enterprise/godmode/menu.php:125 -#: ../../enterprise/godmode/servers/manage_export.php:41 -#: ../../enterprise/godmode/servers/manage_export_form.php:56 +#: ../../enterprise/godmode/menu.php:213 +msgid "Manage database HA" +msgstr "データベース HA 管理" + +#: ../../enterprise/godmode/menu.php:223 +#: ../../enterprise/godmode/servers/manage_export.php:43 +#: ../../enterprise/godmode/servers/manage_export_form.php:58 msgid "Export targets" msgstr "エクスポートターゲット" -#: ../../enterprise/godmode/menu.php:145 +#: ../../enterprise/godmode/menu.php:233 +msgid "Alert correlation" +msgstr "アラート相関" + +#: ../../enterprise/godmode/menu.php:249 msgid "Log Collector" msgstr "ログ収集" -#: ../../enterprise/godmode/menu.php:159 +#: ../../enterprise/godmode/menu.php:267 msgid "Password policy" msgstr "パスワードポリシー" -#: ../../enterprise/godmode/modules/configure_local_component.php:135 +#: ../../enterprise/godmode/modules/configure_local_component.php:137 msgid "Update Local Component" msgstr "ローカルコンポーネント更新" -#: ../../enterprise/godmode/modules/configure_local_component.php:138 +#: ../../enterprise/godmode/modules/configure_local_component.php:139 msgid "Create Local Component" msgstr "ローカルコンポーネント作成" -#: ../../enterprise/godmode/modules/configure_local_component.php:176 +#: ../../enterprise/godmode/modules/configure_local_component.php:186 msgid "Throw unknown events" msgstr "不明イベントを発生させる" -#: ../../enterprise/godmode/modules/configure_local_component.php:410 +#: ../../enterprise/godmode/modules/configure_local_component.php:577 msgid "Macros" msgstr "マクロ" -#: ../../enterprise/godmode/modules/local_components.php:89 +#: ../../enterprise/godmode/modules/local_components.php:99 msgid "Local component management" msgstr "ローカルコンポーネント管理" -#: ../../enterprise/godmode/modules/local_components.php:441 +#: ../../enterprise/godmode/modules/local_components.php:486 msgid "Search by name, description or data, list matches." msgstr "名前、説明、データでマッチするものを検索します。" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:67 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:35 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:73 +msgid "" +"This console is not manager of this environment,\n" +" please manage this feature from centralized manager console " +"(Metaconsole)." +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:120 msgid "Successfully created inventory module" msgstr "インベントリモジュールを作成しました" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:71 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:123 +#: ../../enterprise/include/functions_enterprise_api.php:4584 msgid "Error creating inventory module" msgstr "インベントリモジュールの作成エラー" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:86 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:267 +msgid "Successfully created inventory module in the node" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:270 +msgid "Error creating inventory module in the node" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:372 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:114 msgid "Interpreter" msgstr "処理系" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:200 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:381 msgid "No inventory modules defined" msgstr "インベントリモジュールがありません" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:217 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:402 msgid "Local module" msgstr "ローカルモジュール" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:220 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:404 msgid "Remote/Local" msgstr "リモート/ローカル" -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:88 +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:420 +msgid "Deploy to the nodes" +msgstr "" + +#: ../../enterprise/godmode/modules/manage_inventory_modules.php:464 +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 "" + +#: ../../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:90 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 msgid "Block Mode" msgstr "ブロックモード" -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:94 +#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 msgid "separate fields with " msgstr "フィールドセパレータは、 " -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:98 +#: ../../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/policies/configure_policy.php:43 -msgid "Add policy" -msgstr "ポリシー追加" - -#: ../../enterprise/godmode/policies/policies.php:114 +#: ../../enterprise/godmode/policies/policies.php:193 msgid "Policy name already exists" msgstr "ポリシー名が既に存在します" -#: ../../enterprise/godmode/policies/policies.php:170 +#: ../../enterprise/godmode/policies/policies.php:258 msgid "Policies Management" msgstr "ポリシー管理" -#: ../../enterprise/godmode/policies/policies.php:186 +#: ../../enterprise/godmode/policies/policies.php:277 msgid "All policy agents added to delete queue" msgstr "削除キューに全ポリシーエージェントを追加しました" -#: ../../enterprise/godmode/policies/policies.php:187 +#: ../../enterprise/godmode/policies/policies.php:278 msgid "Policy agents cannot be added to the delete queue" msgstr "削除キューにポリシーエージェントを追加できません" -#: ../../enterprise/godmode/policies/policies.php:237 +#: ../../enterprise/godmode/policies/policies.php:352 msgid "a" msgstr "a" -#: ../../enterprise/godmode/policies/policies.php:360 -msgid "Policy updated" -msgstr "ポリシーを更新しました" - -#: ../../enterprise/godmode/policies/policies.php:364 -msgid "Pending update policy only database" -msgstr "データベースのみポリシー更新待ち" - -#: ../../enterprise/godmode/policies/policies.php:368 -msgid "Pending update policy" -msgstr "ポリシー更新待ち" - -#: ../../enterprise/godmode/policies/policies.php:381 -#: ../../enterprise/godmode/policies/policy_linking.php:122 -#: ../../enterprise/include/functions_policies.php:3459 +#: ../../enterprise/godmode/policies/policies.php:517 +#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../enterprise/include/functions_policies.php:3776 msgid "Linking" msgstr "リンク" -#: ../../enterprise/godmode/policies/policies.php:393 +#: ../../enterprise/godmode/policies/policies.php:530 msgid "Agent Wizard" msgstr "エージェントウィザード" -#: ../../enterprise/godmode/policies/policies.php:401 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:37 -#: ../../enterprise/include/functions_policies.php:3449 +#: ../../enterprise/godmode/policies/policies.php:539 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:41 +#: ../../enterprise/include/functions_policies.php:3768 msgid "External alerts" msgstr "外部アラート" -#: ../../enterprise/godmode/policies/policies.php:405 -#: ../../enterprise/godmode/policies/policy.php:46 -#: ../../enterprise/include/functions_policies.php:3477 +#: ../../enterprise/godmode/policies/policies.php:543 +#: ../../enterprise/godmode/policies/policy.php:49 +#: ../../enterprise/include/functions_policies.php:3792 msgid "Queue" msgstr "キュー" -#: ../../enterprise/godmode/policies/policies.php:449 +#: ../../enterprise/godmode/policies/policies.php:607 msgid "A policy with agents cannot be deleted. Purge it first" msgstr "エージェントのあるポリシーは削除できません。先にエージェントを削除してください。" -#: ../../enterprise/godmode/policies/policies.php:455 +#: ../../enterprise/godmode/policies/policies.php:615 msgid "Deleting all policy agents" msgstr "全ポリシーエージェントの削除中" -#: ../../enterprise/godmode/policies/policies.php:458 +#: ../../enterprise/godmode/policies/policies.php:618 msgid "All the policy agents will be deleted" msgstr "全ポリシーエージェントが削除されます" -#: ../../enterprise/godmode/policies/policies.php:462 +#: ../../enterprise/godmode/policies/policies.php:627 msgid "Delete all agents" msgstr "全エージェント削除" -#: ../../enterprise/godmode/policies/policy.php:114 -#: ../../enterprise/godmode/policies/policy.php:137 -#: ../../enterprise/meta/advanced/policymanager.apply.php:142 -#: ../../enterprise/meta/advanced/policymanager.apply.php:146 +#: ../../enterprise/godmode/policies/policy.php:160 +#: ../../enterprise/godmode/policies/policy.php:206 +#: ../../enterprise/meta/advanced/policymanager.apply.php:137 +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 msgid "Operation successfully added to the queue" msgstr "操作をキューに追加しました" -#: ../../enterprise/godmode/policies/policy.php:117 -#: ../../enterprise/godmode/policies/policy.php:138 -#: ../../enterprise/meta/advanced/policymanager.apply.php:150 -#: ../../enterprise/meta/advanced/policymanager.apply.php:154 -#: ../../enterprise/meta/advanced/policymanager.apply.php:158 +#: ../../enterprise/godmode/policies/policy.php:164 +#: ../../enterprise/godmode/policies/policy.php:207 +#: ../../enterprise/include/functions_enterprise_api.php:3338 +#: ../../enterprise/meta/advanced/policymanager.apply.php:145 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 +#: ../../enterprise/meta/advanced/policymanager.apply.php:153 msgid "Operation cannot be added to the queue" msgstr "操作をキューに追加できません" -#: ../../enterprise/godmode/policies/policy.php:120 -#: ../../enterprise/godmode/policies/policy.php:141 -#: ../../enterprise/meta/advanced/policymanager.apply.php:135 +#: ../../enterprise/godmode/policies/policy.php:168 +#: ../../enterprise/godmode/policies/policy.php:210 +#: ../../enterprise/include/functions_enterprise_api.php:3341 +#: ../../enterprise/meta/advanced/policymanager.apply.php:129 msgid "Duplicated or incompatible operation in the queue" msgstr "重複もしくは完了できない操作がキューにあります" -#: ../../enterprise/godmode/policies/policy_agents.php:95 +#: ../../enterprise/godmode/policies/policy_agents.php:114 msgid "" "Successfully added to delete pending agents. Will be deleted in the next " "policy application." msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_agents.php:100 -#: ../../enterprise/godmode/policies/policy_agents.php:122 -#: ../../enterprise/godmode/policies/policy_alerts.php:169 -#: ../../enterprise/godmode/policies/policy_collections.php:73 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:100 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:100 -#: ../../enterprise/godmode/policies/policy_modules.php:1132 -#: ../../enterprise/godmode/policies/policy_plugins.php:42 +#: ../../enterprise/godmode/policies/policy_agents.php:118 +#: ../../enterprise/godmode/policies/policy_agents.php:140 +#: ../../enterprise/godmode/policies/policy_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_collections.php:80 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:111 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:138 +#: ../../enterprise/godmode/policies/policy_modules.php:1339 +#: ../../enterprise/godmode/policies/policy_plugins.php:51 msgid "Successfully reverted deletion" msgstr "削除を取り消しました" -#: ../../enterprise/godmode/policies/policy_agents.php:101 -#: ../../enterprise/godmode/policies/policy_agents.php:123 -#: ../../enterprise/godmode/policies/policy_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_collections.php:74 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:101 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:103 -#: ../../enterprise/godmode/policies/policy_modules.php:1133 -#: ../../enterprise/godmode/policies/policy_plugins.php:43 +#: ../../enterprise/godmode/policies/policy_agents.php:119 +#: ../../enterprise/godmode/policies/policy_agents.php:141 +#: ../../enterprise/godmode/policies/policy_alerts.php:203 +#: ../../enterprise/godmode/policies/policy_collections.php:81 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:112 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:141 +#: ../../enterprise/godmode/policies/policy_modules.php:1340 +#: ../../enterprise/godmode/policies/policy_plugins.php:52 msgid "Could not be reverted" msgstr "取り消しできませんでした" -#: ../../enterprise/godmode/policies/policy_agents.php:117 +#: ../../enterprise/godmode/policies/policy_agents.php:136 msgid "" "Successfully added to delete pending groups. Will be deleted in the next " "policy application." msgstr "削除予約グループへ追加しました。次回のポリシー適用で削除されます。" -#: ../../enterprise/godmode/policies/policy_agents.php:159 -#: ../../enterprise/godmode/policies/policy_agents.php:282 +#: ../../enterprise/godmode/policies/policy_agents.php:189 +#: ../../enterprise/godmode/policies/policy_agents.php:332 msgid "Successfully added to delete queue" msgstr "削除キューに追加しました" -#: ../../enterprise/godmode/policies/policy_agents.php:160 -#: ../../enterprise/godmode/policies/policy_agents.php:283 +#: ../../enterprise/godmode/policies/policy_agents.php:190 +#: ../../enterprise/godmode/policies/policy_agents.php:333 msgid "Could not be added to delete queue" msgstr "削除キューに追加できませんでした" -#: ../../enterprise/godmode/policies/policy_agents.php:195 +#: ../../enterprise/godmode/policies/policy_agents.php:239 msgid "Successfully deleted from delete pending agents" msgstr "削除待ちエージェントから削除しました" -#: ../../enterprise/godmode/policies/policy_agents.php:196 +#: ../../enterprise/godmode/policies/policy_agents.php:240 msgid "Could not be deleted from delete pending agents" msgstr "削除待ちエージェントから削除できませんでした" -#: ../../enterprise/godmode/policies/policy_agents.php:353 +#: ../../enterprise/godmode/policies/policy_agents.php:419 msgid "Apply to" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:420 +#: ../../enterprise/godmode/policies/policy_agents.php:534 msgid "Agents in Policy" msgstr "ポリシー内エージェント" -#: ../../enterprise/godmode/policies/policy_agents.php:437 +#: ../../enterprise/godmode/policies/policy_agents.php:556 msgid "Groups in Policy" msgstr "ポリシー内のグループ" -#: ../../enterprise/godmode/policies/policy_agents.php:517 +#: ../../enterprise/godmode/policies/policy_agents.php:630 msgid "Add agents to policy" msgstr "ポリシーへのエージェント追加" -#: ../../enterprise/godmode/policies/policy_agents.php:523 +#: ../../enterprise/godmode/policies/policy_agents.php:638 msgid "Delete agents from policy" msgstr "ポリシーからエージェント削除" -#: ../../enterprise/godmode/policies/policy_agents.php:563 +#: ../../enterprise/godmode/policies/policy_agents.php:697 msgid "Applied" msgstr "適用済" -#: ../../enterprise/godmode/policies/policy_agents.php:564 +#: ../../enterprise/godmode/policies/policy_agents.php:698 msgid "Not applied" msgstr "未適用" -#: ../../enterprise/godmode/policies/policy_agents.php:573 -#: ../../enterprise/operation/agentes/policy_view.php:304 +#: ../../enterprise/godmode/policies/policy_agents.php:709 +#: ../../enterprise/operation/agentes/policy_view.php:323 msgid "R." msgstr "R." -#: ../../enterprise/godmode/policies/policy_agents.php:575 +#: ../../enterprise/godmode/policies/policy_agents.php:712 msgid "Unlinked modules" msgstr "未リンクモジュール" -#: ../../enterprise/godmode/policies/policy_agents.php:575 +#: ../../enterprise/godmode/policies/policy_agents.php:712 msgid "U." msgstr "U." -#: ../../enterprise/godmode/policies/policy_agents.php:578 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/operation/agentes/policy_view.php:50 +#: ../../enterprise/godmode/policies/policy_agents.php:715 +#: ../../enterprise/godmode/policies/policy_agents.php:1078 +#: ../../enterprise/operation/agentes/policy_view.php:52 msgid "Last application" msgstr "最後の適用" -#: ../../enterprise/godmode/policies/policy_agents.php:579 -#: ../../enterprise/godmode/policies/policy_agents.php:823 +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:1080 msgid "Add to delete queue" msgstr "削除キューへの追加" -#: ../../enterprise/godmode/policies/policy_agents.php:631 +#: ../../enterprise/godmode/policies/policy_agents.php:716 +#: ../../enterprise/godmode/policies/policy_agents.php:1080 +msgid "D." +msgstr "削除" + +#: ../../enterprise/godmode/policies/policy_agents.php:788 msgid "This agent can not be remotely configured" msgstr "このエージェントはリモート設定できません" -#: ../../enterprise/godmode/policies/policy_agents.php:656 -#: ../../enterprise/godmode/policies/policy_agents.php:893 -#: ../../enterprise/godmode/policies/policy_queue.php:180 +#: ../../enterprise/godmode/policies/policy_agents.php:827 +#: ../../enterprise/godmode/policies/policy_agents.php:1169 +msgid "Process deletion" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:838 +#: ../../enterprise/godmode/policies/policy_agents.php:1180 +#: ../../enterprise/godmode/policies/policy_queue.php:235 msgid "Add to apply queue" msgstr "適用キューへ追加" -#: ../../enterprise/godmode/policies/policy_agents.php:684 -#: ../../enterprise/godmode/policies/policy_agents.php:925 -#: ../../enterprise/godmode/policies/policy_alerts.php:417 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:252 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:264 -#: ../../enterprise/godmode/policies/policy_modules.php:1295 +#: ../../enterprise/godmode/policies/policy_agents.php:871 +#: ../../enterprise/godmode/policies/policy_agents.php:1222 +#: ../../enterprise/godmode/policies/policy_alerts.php:464 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:288 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:280 +#: ../../enterprise/godmode/policies/policy_modules.php:1590 msgid "Undo deletion" msgstr "削除取り消し" -#: ../../enterprise/godmode/policies/policy_agents.php:698 -#: ../../enterprise/godmode/policies/policy_agents.php:864 -#: ../../enterprise/operation/agentes/policy_view.php:62 +#: ../../enterprise/godmode/policies/policy_agents.php:889 +#: ../../enterprise/godmode/policies/policy_agents.php:1123 +#: ../../enterprise/operation/agentes/policy_view.php:66 msgid "Policy applied" msgstr "適用済ポリシー" -#: ../../enterprise/godmode/policies/policy_agents.php:702 -#: ../../enterprise/godmode/policies/policy_agents.php:868 +#: ../../enterprise/godmode/policies/policy_agents.php:895 +#: ../../enterprise/godmode/policies/policy_agents.php:1129 msgid "Need apply" msgstr "要適用" -#: ../../enterprise/godmode/policies/policy_agents.php:710 -#: ../../enterprise/godmode/policies/policy_agents.php:875 +#: ../../enterprise/godmode/policies/policy_agents.php:905 +#: ../../enterprise/godmode/policies/policy_agents.php:1138 msgid "Applying policy" msgstr "ポリシー適用中" -#: ../../enterprise/godmode/policies/policy_agents.php:716 -#: ../../enterprise/godmode/policies/policy_agents.php:879 +#: ../../enterprise/godmode/policies/policy_agents.php:915 +#: ../../enterprise/godmode/policies/policy_agents.php:1146 msgid "Deleting from policy" msgstr "ポリシーから削除中" -#: ../../enterprise/godmode/policies/policy_agents.php:795 +#: ../../enterprise/godmode/policies/policy_agents.php:1026 msgid "Add groups to policy" msgstr "ポリシーへグループ追加" -#: ../../enterprise/godmode/policies/policy_agents.php:801 +#: ../../enterprise/godmode/policies/policy_agents.php:1034 msgid "Delete groups from policy" msgstr "ポリシーからグループ削除" -#: ../../enterprise/godmode/policies/policy_agents.php:821 +#: ../../enterprise/godmode/policies/policy_agents.php:1077 msgid "Total agents in policy group" msgstr "ポリシーグループ内の全エージェント" -#: ../../enterprise/godmode/policies/policy_agents.php:821 +#: ../../enterprise/godmode/policies/policy_agents.php:1077 msgid "T." +msgstr "種類" + +#: ../../enterprise/godmode/policies/policy_alerts.php:192 +msgid " created successfuly" msgstr "" -#: ../../enterprise/godmode/policies/policy_alerts.php:148 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:73 -msgid "Created successfuly" -msgstr "作成しました" +#: ../../enterprise/godmode/policies/policy_alerts.php:192 +msgid " could not be created" +msgstr "" -#: ../../enterprise/godmode/policies/policy_alerts.php:164 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:95 +#: ../../enterprise/godmode/policies/policy_alerts.php:198 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:107 msgid "" "Successfully added to delete pending alerts. Will be deleted in the next " "policy application." msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_alerts.php:188 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:120 +#: ../../enterprise/godmode/policies/policy_alerts.php:223 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:155 msgid "Added action successfuly" msgstr "アクションを追加しました" -#: ../../enterprise/godmode/policies/policy_alerts.php:206 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:140 +#: ../../enterprise/godmode/policies/policy_alerts.php:240 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:134 msgid "Deleted action successfuly" msgstr "アクションを削除しました" -#: ../../enterprise/godmode/policies/policy_alerts.php:511 +#: ../../enterprise/godmode/policies/policy_alerts.php:548 +msgid "There is not alerts configured in this policy." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_alerts.php:587 msgid "Policy module" msgstr "ポリシーモジュール" -#: ../../enterprise/godmode/policies/policy_collections.php:68 +#: ../../enterprise/godmode/policies/policy_collections.php:76 msgid "" "Successfully added to delete the collection. Will be deleted in the next " "policy application." msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_collections.php:161 -#: ../../enterprise/godmode/policies/policy_collections.php:213 -#: ../../enterprise/operation/agentes/collection_view.php:102 -#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/godmode/policies/policy_collections.php:204 +#: ../../enterprise/godmode/policies/policy_collections.php:277 +#: ../../enterprise/operation/agentes/collection_view.php:111 +#: ../../enterprise/operation/agentes/collection_view.php:112 +#: ../../enterprise/operation/agentes/policy_view.php:172 msgid "Outdate" msgstr "期限切れ" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 +#: ../../enterprise/godmode/policies/policy_collections.php:221 +msgid "Collections in policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:225 +msgid "Collections to add" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_collections.php:296 +msgid "No available collection to add" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:94 +msgid "Created successfuly" +msgstr "作成しました" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:98 msgid "Duplicated alert" msgstr "アラートが重複しています" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:170 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:299 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +msgid "Modules in policy per agents" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +msgid "There is not external alerts configured in this policy" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:342 msgid "Modules in policy agents" msgstr "ポリシーエージェント内のモジュール" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 +msgid "The complete and exact name of the module must be specified" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_external_alerts.php:370 msgid "Alert Template" msgstr "アラートテンプレート" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:65 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 msgid "Module is not selected" msgstr "モジュールが選択されていません" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:93 -#: ../../enterprise/godmode/policies/policy_modules.php:1113 -#: ../../enterprise/godmode/policies/policy_modules.php:1127 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:132 +#: ../../enterprise/godmode/policies/policy_modules.php:1322 +#: ../../enterprise/godmode/policies/policy_modules.php:1335 msgid "" "Successfully added to delete pending modules. Will be deleted in the next " "policy application." msgstr "削除待ちモジュールに追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:186 -msgid "Select inventory module" -msgstr "インベントリモジュールの選択" - -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:235 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:247 msgid "There are no defined inventory modules" msgstr "定義済のインベントリモジュールがありません" -#: ../../enterprise/godmode/policies/policy_linking.php:26 +#: ../../enterprise/godmode/policies/policy_linking.php:28 msgid "Linking modules" msgstr "リンク中モジュール" -#: ../../enterprise/godmode/policies/policy_linking.php:53 +#: ../../enterprise/godmode/policies/policy_linking.php:87 msgid "Error: Update linking modules to policy" msgstr "エラー: ポリシーへのモジュールリンク更新" -#: ../../enterprise/godmode/policies/policy_linking.php:56 +#: ../../enterprise/godmode/policies/policy_linking.php:89 msgid "Success: Update linking modules to policy" msgstr "成功: ポリシーへのモジュールリンク更新" -#: ../../enterprise/godmode/policies/policy_linking.php:66 +#: ../../enterprise/godmode/policies/policy_linking.php:99 msgid "Free text for filter (*)" msgstr "フィルタテキスト (*)" -#: ../../enterprise/godmode/policies/policy_linking.php:67 +#: ../../enterprise/godmode/policies/policy_linking.php:100 msgid "Free text for filter" msgstr "フィルタテキスト" #: ../../enterprise/godmode/policies/policy_linking.php:110 -msgid "List of modules unlinked" -msgstr "未リンクモジュール一覧" +msgid "Cannot retrieve unlinked modules" +msgstr "" -#: ../../enterprise/godmode/policies/policy_linking.php:143 +#: ../../enterprise/godmode/policies/policy_linking.php:112 msgid "There are no defined modules unlinked" msgstr "定義済の未リンクモジュールがありません" -#: ../../enterprise/godmode/policies/policy_modules.php:262 +#: ../../enterprise/godmode/policies/policy_linking.php:114 +msgid "List of modules unlinked" +msgstr "未リンクモジュール一覧" + +#: ../../enterprise/godmode/policies/policy_modules.php:295 msgid "" "If you change this description, you must change into the text of Data " "configuration." msgstr "この説明を変更すると、データ設定のテキストを変更する必要があります。" -#: ../../enterprise/godmode/policies/policy_modules.php:320 -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1417 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:101 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:87 +#: ../../enterprise/godmode/policies/policy_modules.php:368 +msgid "Invalid module type." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:376 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 #: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 msgid "Edit module" msgstr "モジュールの編集" -#: ../../enterprise/godmode/policies/policy_modules.php:351 -msgid "Module macros" -msgstr "モジュールマクロ" - -#: ../../enterprise/godmode/policies/policy_modules.php:448 +#: ../../enterprise/godmode/policies/policy_modules.php:521 msgid "Could not be added module(s). You must select a policy" msgstr "モジュールを追加できません。ポリシーを選択する必要があります。" -#: ../../enterprise/godmode/policies/policy_modules.php:476 +#: ../../enterprise/godmode/policies/policy_modules.php:554 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "モジュール (%s/%s) を、ポリシー %s に追加しました" -#: ../../enterprise/godmode/policies/policy_modules.php:478 +#: ../../enterprise/godmode/policies/policy_modules.php:560 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "モジュール (%s/%s) をポリシー %s に追加できませんでした" -#: ../../enterprise/godmode/policies/policy_modules.php:768 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1908 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2002 +#: ../../enterprise/godmode/policies/policy_modules.php:909 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2105 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2200 msgid "Successfully added module." msgstr "モジュールを追加しました。" -#: ../../enterprise/godmode/policies/policy_modules.php:769 +#: ../../enterprise/godmode/policies/policy_modules.php:910 msgid "Could not be added module." msgstr "モジュールを追加できませんでした。" -#: ../../enterprise/godmode/policies/policy_modules.php:1083 +#: ../../enterprise/godmode/policies/policy_modules.php:1288 msgid "" "The module type in Data configuration is empty, take from combo box of form." msgstr "データ設定内のモジュールタイプが空です。フォームから選択してください。" -#: ../../enterprise/godmode/policies/policy_modules.php:1086 +#: ../../enterprise/godmode/policies/policy_modules.php:1292 msgid "" "The module name in Data configuration is empty, take from text field of form." msgstr "データ設定内のモジュール名が空です。テキストフィールドに入力してください。" -#: ../../enterprise/godmode/policies/policy_modules.php:1117 +#: ../../enterprise/godmode/policies/policy_modules.php:1326 msgid "Could not be added to deleted all modules." msgstr "削除済の全モジュールへの追加ができませんでした。" -#: ../../enterprise/godmode/policies/policy_modules.php:1203 +#: ../../enterprise/godmode/policies/policy_modules.php:1431 msgid "Successfully duplicate the module." msgstr "モジュールを複製しました。" -#: ../../enterprise/godmode/policies/policy_modules.php:1263 +#: ../../enterprise/godmode/policies/policy_modules.php:1519 msgid "Local component" msgstr "ローカルコンポーネント" -#: ../../enterprise/godmode/policies/policy_modules.php:1329 +#: ../../enterprise/godmode/policies/policy_modules.php:1534 +#: ../../enterprise/godmode/policies/policy_modules.php:1535 +msgid "Disabled module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1541 +#: ../../enterprise/godmode/policies/policy_modules.php:1542 +msgid "Enabled module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_modules.php:1636 msgid "There are no defined modules" msgstr "定義済のモジュールがありません" -#: ../../enterprise/godmode/policies/policy_modules.php:1347 +#: ../../enterprise/godmode/policies/policy_modules.php:1656 msgid "Copy selected modules to policy: " msgstr "選択したモジュールをポリシーへコピー: " -#: ../../enterprise/godmode/policies/policy_modules.php:1525 +#: ../../enterprise/godmode/policies/policy_modules.php:1859 msgid "Are you sure to copy modules into policy?\\n" msgstr "モジュールをポリシーにコピーしますか?\\n" -#: ../../enterprise/godmode/policies/policy_modules.php:1545 +#: ../../enterprise/godmode/policies/policy_modules.php:1879 msgid "Please select any module to copy" msgstr "コピーするモジュールを選択してください" -#: ../../enterprise/godmode/policies/policy_plugins.php:33 +#: ../../enterprise/godmode/policies/policy_queue.php:62 +#: ../../enterprise/meta/advanced/policymanager.queue.php:58 +msgid "Operation successfully deleted from the queue" +msgstr "キューから操作を削除しました" + +#: ../../enterprise/godmode/policies/policy_queue.php:63 +#: ../../enterprise/meta/advanced/policymanager.queue.php:59 +msgid "Operation cannot be deleted from the queue" +msgstr "キューから操作を削除できません" + +#: ../../enterprise/godmode/policies/policy_queue.php:108 +msgid "Operations successfully deleted from the queue" +msgstr "キューから操作を削除しました" + +#: ../../enterprise/godmode/policies/policy_queue.php:109 +msgid "Operations cannot be deleted from the queue" +msgstr "キューから操作を削除できません" + +#: ../../enterprise/godmode/policies/policy_queue.php:185 +#, php-format +msgid "Some nodes (%s) are unreachebles. Some information may be missing." +msgstr "" + +#: ../../enterprise/godmode/policies/policy_queue.php:220 +msgid "Update pending" +msgstr "更新待ち" + +#: ../../enterprise/godmode/policies/policy_queue.php:222 +msgid "Update pending agents" +msgstr "更新待ちエージェント" + +#: ../../enterprise/godmode/policies/policy_queue.php:238 +msgid "Add to apply queue only for database" +msgstr "データベースにのみ適用キューを追加" + +#: ../../enterprise/godmode/policies/policy_queue.php:245 +msgid "Update pending groups" +msgstr "ペンディンググループの更新" + +#: ../../enterprise/godmode/policies/policy_queue.php:252 +msgid "Link pending modules" +msgstr "リンク待ちモジュール" + +#: ../../enterprise/godmode/policies/policy_queue.php:257 +msgid "Will be linked in the next policy application" +msgstr "次回のポリシー適用でリンクされます" + +#: ../../enterprise/godmode/policies/policy_queue.php:260 +msgid "Unlink pending modules" +msgstr "リンク解除待ちモジュール" + +#: ../../enterprise/godmode/policies/policy_queue.php:265 +msgid "Will be unlinked in the next policy application" +msgstr "次回のポリシー適用でリンクが解除されます" + +#: ../../enterprise/godmode/policies/policy_queue.php:270 +msgid "Delete pending" +msgstr "削除待ち" + +#: ../../enterprise/godmode/policies/policy_queue.php:272 +msgid "Delete pending agents" +msgstr "削除待ちエージェント" + +#: ../../enterprise/godmode/policies/policy_queue.php:277 +#: ../../enterprise/godmode/policies/policy_queue.php:285 +#: ../../enterprise/godmode/policies/policy_queue.php:293 +#: ../../enterprise/godmode/policies/policy_queue.php:301 +#: ../../enterprise/godmode/policies/policy_queue.php:309 +#: ../../enterprise/godmode/policies/policy_queue.php:317 +#: ../../enterprise/godmode/policies/policy_queue.php:325 +#: ../../enterprise/godmode/policies/policy_queue.php:333 +msgid "Will be deleted in the next policy application" +msgstr "次回のポリシー適用で削除されます" + +#: ../../enterprise/godmode/policies/policy_queue.php:280 +msgid "Delete pending groups" +msgstr "ペンディンググループの削除" + +#: ../../enterprise/godmode/policies/policy_queue.php:288 +msgid "Delete pending modules" +msgstr "削除待ちモジュール" + +#: ../../enterprise/godmode/policies/policy_queue.php:296 +msgid "Delete pending inventory modules" +msgstr "削除待ちインベントリモジュール" + +#: ../../enterprise/godmode/policies/policy_queue.php:304 +msgid "Delete pending alerts" +msgstr "削除待ちアラート" + +#: ../../enterprise/godmode/policies/policy_queue.php:312 +msgid "Delete pending external alerts" +msgstr "削除待ち外部アラート" + +#: ../../enterprise/godmode/policies/policy_queue.php:320 +msgid "Delete pending file collections" +msgstr "削除待ちファイルコレクション" + +#: ../../enterprise/godmode/policies/policy_queue.php:328 +msgid "Delete pending plugins" +msgstr "削除待ちプラグイン" + +#: ../../enterprise/godmode/policies/policy_queue.php:339 +msgid "Advices" +msgstr "アドバイス" + +#: ../../enterprise/godmode/policies/policy_queue.php:342 +msgid "Queue summary" +msgstr "キューサマリ" + +#: ../../enterprise/godmode/policies/policy_queue.php:420 +#: ../../enterprise/meta/advanced/policymanager.queue.php:218 +msgid "Apply (database and files)" +msgstr "適用 (データベースおよびファイル)" + +#: ../../enterprise/godmode/policies/policy_queue.php:421 +#: ../../enterprise/godmode/policies/policy_queue.php:511 +#: ../../enterprise/meta/advanced/policymanager.queue.php:219 +#: ../../enterprise/meta/advanced/policymanager.queue.php:311 +msgid "Apply (only database)" +msgstr "適用 (データベースのみ)" + +#: ../../enterprise/godmode/policies/policy_queue.php:431 +#: ../../enterprise/meta/advanced/policymanager.queue.php:229 +msgid "Complete" +msgstr "完了" + +#: ../../enterprise/godmode/policies/policy_queue.php:432 +#: ../../enterprise/meta/advanced/policymanager.queue.php:230 +msgid "Incomplete" +msgstr "未完了" + +#: ../../enterprise/godmode/policies/policy_queue.php:447 +msgid "Queue filter" +msgstr "キューフィルタ" + +#: ../../enterprise/godmode/policies/policy_queue.php:541 +#: ../../enterprise/meta/advanced/policymanager.queue.php:337 +msgid "Delete from queue" +msgstr "キューから削除" + +#: ../../enterprise/godmode/policies/policy_queue.php:555 +msgid "Empty queue" +msgstr "キューが空です" + +#: ../../enterprise/godmode/policies/policy_queue.php:572 +msgid "This operation could take a long time" +msgstr "この操作は時間がかかります" + +#: ../../enterprise/godmode/policies/policy_queue.php:583 +msgid "Apply all" +msgstr "すべて適用" + +#: ../../enterprise/godmode/policies/policy_queue.php:591 +msgid "Delete all" +msgstr "すべて削除" + +#: ../../enterprise/godmode/policies/policy_plugins.php:37 msgid "" "Successfully added to delete pending plugins. Will be deleted in the next " "policy application." msgstr "削除待ちプラグインを追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_plugins.php:34 +#: ../../enterprise/godmode/policies/policy_plugins.php:38 msgid "Cannot be added to delete pending plugins." msgstr "削除待ちプラグインを追加できません。" -#: ../../enterprise/godmode/policies/policy_plugins.php:116 +#: ../../enterprise/godmode/policies/policy_plugins.php:145 msgid "There are no defined plugins" msgstr "定義済のプラグインがありません" -#: ../../enterprise/godmode/policies/policy_queue.php:59 -#: ../../enterprise/meta/advanced/policymanager.queue.php:60 -msgid "Operation successfully deleted from the queue" -msgstr "キューから操作を削除しました" +#: ../../enterprise/godmode/reporting/aws_view.php:53 +msgid "Instance" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:60 -#: ../../enterprise/meta/advanced/policymanager.queue.php:61 -msgid "Operation cannot be deleted from the queue" -msgstr "キューから操作を削除できません" +#: ../../enterprise/godmode/reporting/aws_view.php:55 +msgid "IO read" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:101 -msgid "Operations successfully deleted from the queue" -msgstr "キューから操作を削除しました" +#: ../../enterprise/godmode/reporting/aws_view.php:56 +msgid "IO write" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:102 -msgid "Operations cannot be deleted from the queue" -msgstr "キューから操作を削除できません" +#: ../../enterprise/godmode/reporting/aws_view.php:57 +msgid "Disk read" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:164 -msgid "Update pending" -msgstr "更新待ち" +#: ../../enterprise/godmode/reporting/aws_view.php:58 +msgid "Disk write" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:166 -msgid "Update pending agents" -msgstr "更新待ちエージェント" +#: ../../enterprise/godmode/reporting/aws_view.php:59 +msgid "Network in" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:184 -msgid "Add to apply queue only for database" -msgstr "データベースにのみ適用キューを追加" +#: ../../enterprise/godmode/reporting/aws_view.php:60 +msgid "Network out" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:190 -msgid "Update pending groups" -msgstr "ペンディンググループの更新" +#: ../../enterprise/godmode/reporting/aws_view.php:106 +#: ../../enterprise/godmode/reporting/aws_view.php:133 +#: ../../enterprise/operation/menu.php:45 +msgid "AWS View" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:198 -msgid "Link pending modules" -msgstr "リンク待ちモジュール" +#: ../../enterprise/godmode/reporting/aws_view.php:128 +msgid "Failed to retrieve AWS information using selected account." +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:204 -msgid "Will be linked in the next policy application" -msgstr "次回のポリシー適用でリンクされます" +#: ../../enterprise/godmode/reporting/aws_view.php:141 +msgid "AWS credentials not validated." +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:207 -msgid "Unlink pending modules" -msgstr "リンク解除待ちモジュール" +#: ../../enterprise/godmode/reporting/aws_view.php:145 +msgid "Discovery Cloud: AWS" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:213 -msgid "Will be unlinked in the next policy application" -msgstr "次回のポリシー適用でリンクが解除されます" +#: ../../enterprise/godmode/reporting/aws_view.php:150 +msgid "Please, select an account: " +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:218 -msgid "Delete pending" -msgstr "削除待ち" +#: ../../enterprise/godmode/reporting/aws_view.php:159 +msgid "CREATE CLOUD MONITORING DISCOVERY TASK" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:220 -msgid "Delete pending agents" -msgstr "削除待ちエージェント" +#: ../../enterprise/godmode/reporting/aws_view.php:162 +msgid "" +"Within this view you will find information collected using Discovery Cloud " +"AWS task. You will be able to see the most relevant information about your " +"infrastructure, such as the current cost of your contracted services, the " +"number of instances per region or resource usage metrics. In order to " +"collect this information you must create a Cloud Monitoring Discovery task." +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:226 -#: ../../enterprise/godmode/policies/policy_queue.php:234 -#: ../../enterprise/godmode/policies/policy_queue.php:243 -#: ../../enterprise/godmode/policies/policy_queue.php:252 -#: ../../enterprise/godmode/policies/policy_queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:270 -#: ../../enterprise/godmode/policies/policy_queue.php:279 -#: ../../enterprise/godmode/policies/policy_queue.php:288 -msgid "Will be deleted in the next policy application" -msgstr "次回のポリシー適用で削除されます" +#: ../../enterprise/godmode/reporting/aws_view.php:165 +msgid "Press the create button to begin." +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:229 -msgid "Delete pending groups" -msgstr "ペンディンググループの削除" +#: ../../enterprise/godmode/reporting/aws_view.php:194 +msgid "Instance table" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:237 -msgid "Delete pending modules" -msgstr "削除待ちモジュール" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:29 +msgid "Cluster edit" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:246 -msgid "Delete pending inventory modules" -msgstr "削除待ちインベントリモジュール" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:31 +msgid "Cluster" +msgstr "クラスタ" -#: ../../enterprise/godmode/policies/policy_queue.php:255 -msgid "Delete pending alerts" -msgstr "削除待ちアラート" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:35 +msgid "Select at least two agents." +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:264 -msgid "Delete pending external alerts" -msgstr "削除待ち外部アラート" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:39 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:798 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:603 +msgid "Please set agent distinct than " +msgstr "エージェントを次のもの以外で明確にしてください: " -#: ../../enterprise/godmode/policies/policy_queue.php:273 -msgid "Delete pending file collections" -msgstr "削除待ちファイルコレクション" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:61 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:65 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:69 +msgid "Cluster settings" +msgstr "クラスタ設定" -#: ../../enterprise/godmode/policies/policy_queue.php:282 -msgid "Delete pending plugins" -msgstr "削除待ちプラグイン" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:87 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:92 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:96 +msgid "Cluster agents" +msgstr "クラスタエージェント" -#: ../../enterprise/godmode/policies/policy_queue.php:294 -msgid "Advices" -msgstr "アドバイス" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:114 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:119 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:123 +msgid "A/A modules" +msgstr "A/A モジュール" -#: ../../enterprise/godmode/policies/policy_queue.php:297 -msgid "Queue summary" -msgstr "キューサマリ" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:141 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:146 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:150 +msgid "A/A modules limits" +msgstr "Act/Act モジュール制限" -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -msgid "Apply (database and files)" -msgstr "適用 (データベースおよびファイル)" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:199 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:204 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:208 +msgid "A/P modules" +msgstr "Act/Stb モジュール" -#: ../../enterprise/godmode/policies/policy_queue.php:364 -#: ../../enterprise/godmode/policies/policy_queue.php:438 -#: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/meta/advanced/policymanager.queue.php:309 -msgid "Apply (only database)" -msgstr "適用 (データベースのみ)" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:226 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:231 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:235 +msgid "Critical A/P modules" +msgstr "Act/Stb 障害モジュール" -#: ../../enterprise/godmode/policies/policy_queue.php:370 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -msgid "Complete" -msgstr "完了" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:278 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:351 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:460 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:931 +#: ../../enterprise/godmode/reporting/cluster_list.php:187 +msgid "Cluster name" +msgstr "クラスタ名" -#: ../../enterprise/godmode/policies/policy_queue.php:370 -#: ../../enterprise/meta/advanced/policymanager.queue.php:224 -msgid "Incomplete" -msgstr "未完了" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:278 +msgid "" +"An agent with the same name of the cluster will be created, as well a " +"special service with the same name" +msgstr "クラスタと同じ名前のエージェントが作成され、同じ名前の特別なサービスが作成されます" -#: ../../enterprise/godmode/policies/policy_queue.php:384 -msgid "Queue filter" -msgstr "キューフィルタ" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:281 +msgid "Should not be empty" +msgstr "空にできません" -#: ../../enterprise/godmode/policies/policy_queue.php:466 -#: ../../enterprise/meta/advanced/policymanager.queue.php:334 -msgid "Delete from queue" -msgstr "キューから削除" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:287 +msgid "Cluster type" +msgstr "クラスタタイプ" -#: ../../enterprise/godmode/policies/policy_queue.php:479 -msgid "Empty queue" -msgstr "キューが空です" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:292 +msgid "Active - Active" +msgstr "" -#: ../../enterprise/godmode/policies/policy_queue.php:496 -msgid "This operation could take a long time" -msgstr "この操作は時間がかかります" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:293 +msgid "Active - Pasive" +msgstr "アクティブ - スタンバイ" -#: ../../enterprise/godmode/policies/policy_queue.php:507 -msgid "Apply all" -msgstr "すべて適用" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:336 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:445 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:583 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1067 +msgid "Update and view cluster" +msgstr "更新およびクラスタ表示" -#: ../../enterprise/godmode/policies/policy_queue.php:513 -msgid "Delete all" -msgstr "すべて削除" +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:356 +msgid "Adding agents to the cluster" +msgstr "クラスタにエージェントを追加中" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:73 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:363 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:375 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:472 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:484 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:943 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:955 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:635 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:637 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:410 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:420 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:140 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:145 +msgid "Select all" +msgstr "全てを選択" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:378 +msgid "Agents in Cluster" +msgstr "クラスタ内エージェント" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:428 +msgid "Add agents to cluster" +msgstr "クラスタにエージェントを追加" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:430 +msgid "Drop agents to cluster" +msgstr "" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:443 +msgid "Update and next" +msgstr "更新して次へ" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:465 +msgid "Adding common modules" +msgstr "共通モジュールを追加中" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:475 +msgid "Common in agents" +msgstr "エージェントで共通" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:487 +msgid "Added common modules" +msgstr "共通モジュールを追加しました" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:524 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:991 +msgid "Add modules to cluster" +msgstr "クラスタへのモジュール追加" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:526 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:993 +msgid "Drop modules to cluster" +msgstr "" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:538 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:581 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1005 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1065 +msgid "Update and Next" +msgstr "更新して次へ" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:552 +#: ../../enterprise/godmode/reporting/cluster_name_agents.php:25 +#: ../../enterprise/godmode/reporting/cluster_view.php:398 +msgid "Common modules" +msgstr "共通モジュール" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:553 +msgid "Critical if equal or greater than" +msgstr "次と同じまたは大きければ障害:" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:554 +msgid "Warning if equal or greater than" +msgstr "次の同じまたは大きければ警告" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:936 +msgid "Adding balanced modules" +msgstr "バランスモジュールを追加中" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:958 +msgid "Added balanced modules" +msgstr "バランスモジュールを追加しました" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1031 +msgid "Balanced modules settings" +msgstr "バランスモジュール設定" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1036 +msgid "Balanced module" +msgstr "バランスモジュール" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1037 +msgid "is critical module" +msgstr "は障害モジュールです" + +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1660 +#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1674 +msgid "Cluster Builder Information" +msgstr "" + +#: ../../enterprise/godmode/reporting/cluster_builder.php:43 +#: ../../enterprise/godmode/reporting/cluster_view.php:35 +msgid "Clusters list" +msgstr "クラスタ一覧" + +#: ../../enterprise/godmode/reporting/cluster_builder.php:49 +msgid "Cluster view" +msgstr "クラスタ表示" + +#: ../../enterprise/godmode/reporting/cluster_list.php:279 +msgid "Create cluster" +msgstr "クラスタ作成" + +#: ../../enterprise/godmode/reporting/cluster_name_agents.php:23 +#: ../../enterprise/godmode/reporting/cluster_view.php:320 +msgid "Balanced modules" +msgstr "バランスモジュール" + +#: ../../enterprise/godmode/reporting/cluster_name_agents.php:191 +#: ../../enterprise/meta/monitoring/custom_fields_csv.php:132 +msgid "No init" +msgstr "未初期化" + +#: ../../enterprise/godmode/reporting/cluster_view.php:42 +msgid "Cluster editor" +msgstr "クラスタ編集" + +#: ../../enterprise/godmode/reporting/cluster_view.php:46 +msgid "Cluster detail" +msgstr "クラスタ詳細" + +#: ../../enterprise/godmode/reporting/cluster_view.php:147 +msgid "Cluster status" +msgstr "クラスタ状態" + +#: ../../enterprise/godmode/reporting/cluster_view.php:205 +msgid "Reload cluster" +msgstr "クラスタの再読み込み" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:43 +msgid "Not created. Blank name" +msgstr "" + +#: ../../enterprise/godmode/reporting/graph_template_editor.php:78 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:49 msgid "Graph template editor" msgstr "グラフテンプレートエディタ" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:136 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:141 msgid "Template updated successfully" msgstr "テンプレートを更新しました" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:137 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:142 msgid "Error updating template" msgstr "テンプレート更新エラー" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:183 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:187 msgid "3 hours" msgstr "3時間" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:188 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:192 msgid "4 days" msgstr "4日" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:149 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2133 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2197 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2364 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2748 -#: ../../enterprise/operation/log/log_viewer.php:181 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 +msgid "2 months" +msgstr "2ヶ月" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:156 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:210 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3149 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3224 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3378 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3449 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3854 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3999 +#: ../../enterprise/operation/log/log_viewer.php:337 msgid "Exact match" msgstr "完全一致" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:165 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 msgid "Decrease Weight" msgstr "ウエイトを減らす" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:168 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:173 msgid "Increase Weight" msgstr "ウエイトを増やす" -#: ../../enterprise/godmode/reporting/graph_template_list.php:73 +#: ../../enterprise/godmode/reporting/graph_template_list.php:79 msgid "Graph template management" msgstr "グラフテンプレート管理" -#: ../../enterprise/godmode/reporting/graph_template_list.php:166 +#: ../../enterprise/godmode/reporting/graph_template_list.php:195 msgid "There are no defined graph templates" msgstr "定義済のグラフテンプレートがありません" -#: ../../enterprise/godmode/reporting/graph_template_list.php:171 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:118 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:389 +#: ../../enterprise/godmode/reporting/graph_template_list.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:137 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 +#: ../../enterprise/godmode/reporting/visual_console_template.php:180 msgid "Create template" msgstr "テンプレートの作成" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:64 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:151 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:140 msgid "Cleanup sucessfully" msgstr "整理しました" #: ../../enterprise/godmode/reporting/graph_template_wizard.php:67 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:154 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:143 msgid "Cleanup error" msgstr "整理エラー" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:100 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:103 msgid "Wizard template" msgstr "ウィザードテンプレート" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:145 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:257 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:149 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:259 msgid "Clean up template" msgstr "整理テンプレート" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:176 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:463 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:382 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:635 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:413 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:249 msgid "Agents available" msgstr "存在するエージェント" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:176 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:464 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:381 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:387 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:323 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:331 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:402 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:410 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:555 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:563 -msgid "Select all" -msgstr "全てを選択" - -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:466 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:388 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:637 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:160 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:423 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:255 msgid "Agents to apply" msgstr "適用するエージェント" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:409 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:445 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:272 msgid "Add agents to template" msgstr "テンプレートにエージェントを追加" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:413 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:215 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:449 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:274 msgid "Undo agents to template" msgstr "エージェントをテンプレートから外します" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:431 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:467 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:292 msgid "Apply template" msgstr "テンプレート適用" -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:392 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:424 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:756 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:787 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:395 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:427 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:825 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:599 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:629 msgid "Please set template distinct than " msgstr "次より明確なテンプレートを指定してください: " -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:419 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:782 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:422 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:624 msgid "" "This will be delete all reports created in previous template applications. " "Do you want to continue?" msgstr "以前のテンプレート内の全レポートを削除します。続けますか?" -#: ../../enterprise/godmode/reporting/mysql_builder.php:28 -#: ../../enterprise/godmode/reporting/mysql_builder.php:122 +#: ../../enterprise/godmode/reporting/mysql_builder.php:53 +#: ../../enterprise/godmode/reporting/mysql_builder.php:144 msgid "Custom Mysql template builder" msgstr "カスタム Mysql テンプレートビルダ" -#: ../../enterprise/godmode/reporting/mysql_builder.php:59 +#: ../../enterprise/godmode/reporting/mysql_builder.php:87 msgid "Create custom SQL" msgstr "カスタム SQL 作成" -#: ../../enterprise/godmode/reporting/mysql_builder.php:70 +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 msgid ": Create new custom" msgstr ": 新規カスタム作成" -#: ../../enterprise/godmode/reporting/mysql_builder.php:90 +#: ../../enterprise/godmode/reporting/mysql_builder.php:115 msgid "Create new custom" msgstr "設定の新規作成" -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 msgid "Successfully operation" msgstr "操作が完了しました" -#: ../../enterprise/godmode/reporting/mysql_builder.php:125 +#: ../../enterprise/godmode/reporting/mysql_builder.php:147 msgid "Could not be operation" msgstr "操作を完了できませんでした" -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:68 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:77 msgid "Advance Reporting" msgstr "拡張レポート" +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 +msgid "Page orientation" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 +#: ../../enterprise/meta/advanced/metasetup.visual.php:546 +msgid "" +"The path of custom logos is 'images/custom_logo' in the console " +"installation. You can upload more files (ONLY JPEG AND PNG) with the upload " +"tool." +msgstr "" + #: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 -#: ../../enterprise/include/functions_reporting.php:39 +#: ../../enterprise/include/functions_reporting.php:42 msgid "Global" msgstr "全体" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:169 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:302 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:205 msgid "Elements to apply" msgstr "適用する要素" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:298 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1726 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:419 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2290 msgid ">=" msgstr ">=" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:300 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1728 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:421 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2297 msgid "<" msgstr "<" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:318 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1759 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2429 msgid "" "Show a resume table with max, min, average of total modules on the report " "bottom" msgstr "レポートの下に、全モジュールの最大、最小、平均とともに、復旧表を表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:81 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:90 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:134 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:102 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:153 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:123 msgid "Edit template" msgstr "テンプレートの編集" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:130 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:148 msgid "List templates" msgstr "テンプレート一覧" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:291 -#: ../../enterprise/operation/reporting/custom_reporting.php:17 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:378 +#: ../../enterprise/operation/reporting/custom_reporting.php:14 msgid "PDF" msgstr "PDF" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:292 -#: ../../enterprise/operation/reporting/custom_reporting.php:19 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:379 +#: ../../enterprise/operation/reporting/custom_reporting.php:16 msgid "JSON" msgstr "JSON" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:346 -#: ../../enterprise/operation/reporting/custom_reporting.php:50 -msgid "Export to PDF" -msgstr "PDF にエクスポート" - -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:348 -#: ../../enterprise/operation/reporting/custom_reporting.php:54 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:436 +#: ../../enterprise/operation/reporting/custom_reporting.php:61 msgid "Export to JSON" msgstr "JSONへエクスポート" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:384 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:482 msgid "You haven't created templates yet." msgstr "テンプレートが作成されていません。" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:397 -msgid "Generate a dynamic report\"" -msgstr "ダイナミックレポートの生成" +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 +msgid "Generate a dynamic report" +msgstr "" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:579 +msgid "Period " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:585 +msgid "Set start and end date" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:660 +#: ../../enterprise/include/class/Omnishell.class.php:844 msgid "Add agents" msgstr "エージェント追加" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:478 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 msgid "Undo agents" msgstr "エージェント追加取り消し" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:486 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:703 +msgid "RegEx agent filter" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:704 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:161 +msgid "" +"Case insensitive regular expression for agent alias. For example: Network.* " +"will match with the following agent alias: network_agent1, NetworK CHECKS" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:719 msgid "Generate" msgstr "生成" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:769 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:760 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1015 -msgid "Please set agent distinct than " -msgstr "エージェントを次のもの以外で明確にしてください: " +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1043 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1065 +msgid "Please set agent or agent regex distinct than " +msgstr "" -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:105 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1073 +msgid "No agent matches regular expression " +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:115 msgid "Advance Options" msgstr "拡張オプション" -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:121 -#: ../../enterprise/meta/advanced/metasetup.visual.php:294 -msgid "" -"The dir of custom logos is in your www Pandora Console in " -"\"images/custom_logo\". You can upload more files (ONLY JPEG) in upload tool " -"in console." -msgstr "" -"カスタムロゴのディレクトリは、Pandora コンソールの \"images/custom_logo\" " -"です。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードできます。" +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1779 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1793 +msgid "Select server" +msgstr "サーバ選択" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1534 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1878 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " "will match with the following agent names: network_agent1, NetworK CHECKS" @@ -32997,9 +39077,9 @@ msgstr "" "エージェント名に対して大文字小文字を区別しない正規表現です。例: Network.* は、network_agent1, NetworKCHECKS " "というエージェント名にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1548 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2414 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1902 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3276 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3506 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 " @@ -33011,62 +39091,68 @@ msgstr "" "を有効にしてこのフィールドを使った場合は、モジュール名の文字列そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* " "は、cpu_usage、vram usage in machine 1 にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1559 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1924 msgid "Module exact match" msgstr "モジュール完全一致" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1559 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2180 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2245 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2343 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2418 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1925 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3209 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3284 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3431 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 msgid "Check it if you want to match module name literally" msgstr "モジュール名の文字列通りにマッチさせたい場合にチェックします" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1568 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1940 msgid "Hide items without data" msgstr "データの無い要素を隠す" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1568 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1941 msgid "Check it if you want not show items without data" msgstr "データの無い要素を表示したくない場合はチェックします" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1608 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1998 msgid "Query SQL" msgstr "SQL クエリ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1632 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2001 +msgid "" +"This query should always return a field called label and a field called " +"value. Example: SELECT alias AS label, total_count AS value FROM tagente" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2064 msgid "SQL preview" msgstr "SQL プレビュー" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1712 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:385 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2250 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:569 msgid "" "If this option was checked, only adding in elements that type of modules " "support this option." msgstr "このオプションをチェックすると、このオプションをサポートするモジュールタイプの要素のみ追加できます。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1893 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2805 msgid "Modules to match" msgstr "マッチするモジュール" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1895 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 msgid "Select the modules to match when create a report for agents" msgstr "エージェントのレポートを作成する時にマッチするモジュールを選択します" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1973 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2907 msgid "Modules to match (Free text)" msgstr "マッチするモジュール (任意のテキスト)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1975 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2909 msgid "Free text to filter the modules of agents when apply this template." msgstr "このテンプレートを適用する時のエージェントのモジュールフィルタテキスト" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1989 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2926 msgid "Create a graph for each agent" msgstr "それぞれのエージェントのグラフ作成" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1991 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2928 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." @@ -33074,19 +39160,25 @@ msgstr "" "チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチします。そうでなければ、全エージェントの全モジュールの大きなグラフを生成します" "。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2145 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2969 +msgid "" +"Lapses of time in which the period is divided to make more precise " +"calculations" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3181 msgid "Please save the SLA template for start to add items in this list." msgstr "この一覧へのアイテム追加を開始するには、SLA テンプレートを保存してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2194 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2361 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2652 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2751 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3222 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3447 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3863 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4008 msgid "Not literally" msgstr "存在しません" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2238 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2408 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3267 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3497 msgid "" "Case insensitive regular expression for agent name. For example: Network* " "will match with the following agent names: network_agent1, NetworK CHECKS" @@ -33094,659 +39186,629 @@ msgstr "" "エージェント名に対して大文字小文字を区別しない正規表現です。例: Network* は、network_agent1、NetworKCHECKS " "というエージェント名にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3283 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3512 +msgid "Literal module name forced" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3403 msgid "Please save the template to start adding items into the list." msgstr "一覧へのアイテム追加を開始するには、テンプレートを保存してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2671 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3889 msgid "Name and SLA limit should not be empty" msgstr "名前と SLA 制限は空にできません" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:188 +msgid "No item could be applied to report." +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:124 msgid "Sucessfully applied" msgstr "適用しました" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 msgid "reports" msgstr "レポート" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 msgid "items" msgstr "アイテム" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:197 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:193 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:126 msgid "Could not be applied" msgstr "適用できません" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:214 msgid "Create template report wizard" msgstr "レポートウィザードテンプレート作成" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:264 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 msgid "Create report per agent" msgstr "エージェントごとのレポート作成" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:275 msgid "" "Left in blank if you want to use default name: Template name - agents (num " "agents) - Date" msgstr "デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利用したい場合は、空白にしてください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:279 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:281 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:204 msgid "Target group" msgstr "対象グループ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:306 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:321 msgid "Filter by" msgstr "フィルタ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:369 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:396 msgid "Filter tag" msgstr "タグフィルタ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:245 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:373 msgid "Order:" msgstr "並び順:" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:265 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:409 msgid "" "Show a resume table with max, min, average of total modules on the report " "bottom:" msgstr "レポートの下に全モジュールの最大、最小、平均を含む復旧表を表示:" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:280 -msgid "Show address instead module name" -msgstr "モジュール名の代わりにアドレスを表示" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:89 -#: ../../enterprise/include/functions_reporting.php:36 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:104 +#: ../../enterprise/include/functions_reporting.php:38 msgid "Wizard SLA" msgstr "SLAウィザード" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:115 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:130 msgid "hourly S.L.A." msgstr "時間ごとの S.L.A." -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:116 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:131 msgid "Availability Graph S.L.A." msgstr "S.L.A. 可用性グラフ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:203 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:254 msgid "SLA min value" msgstr "SLA 最小値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:255 msgid "SLA min Value" msgstr "SLA 最小値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:260 msgid "SLA max value" msgstr "SLA 最大値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:208 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:261 msgid "SLA max Value" msgstr "SLA 最大値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:266 msgid "SLA Limit %" msgstr "SLA 制限 %" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:212 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:267 msgid "SLA Limit Value" msgstr "SLA 制限値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:325 -msgid "SLA min value is needed" -msgstr "SLA 最小値が必要です" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:272 +msgid "Dynamic SLA" +msgstr "" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:329 -msgid "SLA max value is needed" -msgstr "SLA 最大値が必要です" +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:279 +msgid "Inverse SLA" +msgstr "" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:333 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:414 +msgid "Please introduce a SLA max value higher than the SLA min value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:538 +msgid "Dynamic SLA can not be Inverse" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:543 +msgid "Check Dynamic SLA or introduce a max and min SLA value" +msgstr "" + +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:547 msgid "SLA Limit value is needed" msgstr "SLA 制限値が必要です" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:104 -msgid "Available" -msgstr "利用可能" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:113 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:135 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 msgid "Push the selected services into the list" msgstr "選択したサービスを一覧に入れる" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:118 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:145 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:146 msgid "Remove the services from the list" msgstr "一覧からサービスを削除" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:172 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:201 msgid "Icon preview" msgstr "アイコンプレビュー" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:238 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:267 msgid "The services list is empty" msgstr "サービス一覧が空です" -#: ../../enterprise/godmode/reporting/cluster_view.php:29 -#: ../../enterprise/godmode/reporting/cluster_builder.php:40 -msgid "Clusters list" -msgstr "クラスタ一覧" - -#: ../../enterprise/godmode/reporting/cluster_view.php:34 -msgid "Cluster editor" -msgstr "クラスタ編集" - -#: ../../enterprise/godmode/reporting/cluster_view.php:36 -msgid "Cluster detail" -msgstr "クラスタ詳細" - -#: ../../enterprise/godmode/reporting/cluster_view.php:102 -msgid "Node running with" +#: ../../enterprise/godmode/reporting/visual_console_template.php:109 +#: ../../enterprise/godmode/reporting/visual_console_template.php:123 +msgid "visual console has not been selected" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_view.php:103 -msgid "balanced modules" -msgstr "バランスモジュール" +#: ../../enterprise/godmode/reporting/visual_console_template.php:115 +msgid "Error. Error created template" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_view.php:118 -msgid "Cluster status" -msgstr "クラスタ状態" +#: ../../enterprise/godmode/reporting/visual_console_template.php:117 +msgid "Successfully created template" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_view.php:172 -msgid "Reload cluster" -msgstr "クラスタの再読み込み" +#: ../../enterprise/godmode/reporting/visual_console_template.php:129 +msgid "Error. Error delete template" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_view.php:292 -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:22 -msgid "Balanced modules" -msgstr "バランスモジュール" +#: ../../enterprise/godmode/reporting/visual_console_template.php:131 +msgid "Successfully delete template" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_view.php:369 -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:25 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:480 -msgid "Common modules" -msgstr "共通モジュール" +#: ../../enterprise/godmode/reporting/visual_console_template.php:153 +msgid "Create From" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.php:46 -msgid "Cluster view" -msgstr "クラスタ表示" +#: ../../enterprise/godmode/reporting/visual_console_template.php:156 +msgid "There is not any visual console created. Please, create one firstly." +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.php:144 -#: ../../enterprise/godmode/reporting/cluster_builder.php:191 -#: ../../enterprise/godmode/reporting/cluster_builder.php:300 -#: ../../enterprise/godmode/reporting/cluster_builder.php:369 -#: ../../enterprise/godmode/reporting/cluster_builder.php:497 -#: ../../enterprise/godmode/reporting/cluster_builder.php:543 -msgid "Cluster" -msgstr "クラスタ" +#: ../../enterprise/godmode/reporting/visual_console_template.php:186 +msgid "Create New Template" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_name_agents.php:199 -msgid "No init" -msgstr "未初期化" +#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +#: ../../enterprise/godmode/services/services.service.php:447 +msgid "Favourite" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:46 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:52 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:57 -msgid "Cluster settings" -msgstr "クラスタ設定" +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:168 +msgid "Visual console name" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:76 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:82 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:87 -msgid "Cluster agents" -msgstr "クラスタエージェント" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:107 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:113 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:118 -msgid "A/A modules" -msgstr "A/A モジュール" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:140 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:146 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:151 -msgid "A/A modules limits" -msgstr "Act/Act モジュール制限" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:176 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:182 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:187 -msgid "A/P modules" -msgstr "Act/Stb モジュール" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:208 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:214 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:219 -msgid "Critical A/P modules" -msgstr "Act/Stb 障害モジュール" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:240 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:313 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:392 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:545 -#: ../../enterprise/godmode/reporting/cluster_list.php:155 -msgid "Cluster name" -msgstr "クラスタ名" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:240 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:168 msgid "" -"An agent with the same name of the cluster will be created, as well a " -"special service with the same name" -msgstr "クラスタと同じ名前のエージェントが作成され、同じ名前の特別なサービスが作成されます" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:244 -msgid "Should not be empty" -msgstr "空にできません" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:253 -msgid "Cluster type" -msgstr "クラスタタイプ" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:258 -msgid "Active - Active" -msgstr "アクティブ - アクティブ" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:259 -msgid "Active - Pasive" -msgstr "アクティブ - スタンバイ" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:296 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:373 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:515 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:687 -msgid "Update and view cluster" -msgstr "更新およびクラスタ表示" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:318 -msgid "Adding agents to the cluster" +"You can use macro _agentalias_ here. Left in blank if you want to use " +"default name: Template name - agent alias" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:332 -msgid "Agents in Cluster" -msgstr "クラスタ内エージェント" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:355 -msgid "Add agents to cluster" -msgstr "クラスタにエージェントを追加" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:357 -msgid "Drop agents to cluster" +#: ../../enterprise/godmode/servers/HA_cluster.php:48 +msgid "View nodes" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:370 -msgid "Update and next" -msgstr "更新して次へ" +#: ../../enterprise/godmode/servers/HA_cluster.php:59 +msgid "Manage Pandora DB HA" +msgstr "Pandora DB HA 管理" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:397 -msgid "Adding common modules" +#: ../../enterprise/godmode/servers/HA_cluster.php:97 +msgid "" +"Make the cluster forget failed operations from history of\n" +" the resource and re-detect its current state. This can be\n" +" useful to purge knowledge of past failures that have since\n" +" been resolved. If a resource id is not specified then all\n" +" resources / stonith devices will be cleaned up. If a node\n" +" is not specified then resources / stonith devices on all\n" +" nodes will be cleaned up" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:403 -msgid "Common in agents" +#: ../../enterprise/godmode/servers/HA_cluster.php:123 +msgid "Node label" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:411 -msgid "Added common modules" +#: ../../enterprise/godmode/servers/HA_cluster.php:125 +msgid "DB Repl." msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:448 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:601 -msgid "Add modules to cluster" -msgstr "クラスタへのモジュール追加" +#: ../../enterprise/godmode/servers/HA_cluster.php:126 +msgid "DB Status" +msgstr "DB の状態" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:450 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:603 -msgid "Drop modules to cluster" +#: ../../enterprise/godmode/servers/HA_cluster.php:127 +#: ../../enterprise/include/functions_setup.php:171 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:621 +#: ../../enterprise/meta/advanced/policymanager.sync.php:328 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:340 +#: ../../enterprise/meta/advanced/synchronizing.component.php:318 +#: ../../enterprise/meta/advanced/synchronizing.group.php:223 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:93 +#: ../../enterprise/meta/advanced/synchronizing.os.php:89 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:106 +#: ../../enterprise/meta/advanced/synchronizing.user.php:660 +msgid "Sync" +msgstr "同期" + +#: ../../enterprise/godmode/servers/HA_cluster.php:129 +msgid "Role" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:462 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:512 -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:615 -msgid "Update and Next" -msgstr "更新して次へ" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:481 -msgid "Critical if equal or greater than" +#: ../../enterprise/godmode/servers/HA_cluster.php:131 +msgid "Seconds behind master" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:482 -msgid "Warning if equal or greater than" +#: ../../enterprise/godmode/servers/HA_cluster.php:132 +msgid "Virtual IP" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:550 -msgid "Adding balanced modules" +#: ../../enterprise/godmode/servers/HA_cluster.php:133 +msgid "SQL version" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:564 -msgid "Added balanced modules" +#: ../../enterprise/godmode/servers/HA_cluster.php:134 +msgid "DB version" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:647 -msgid "Balanced modules settings" -msgstr "バランスモジュール設定" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:652 -msgid "Balanced module" -msgstr "バランスモジュール" - -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:653 -msgid "is critical module" +#: ../../enterprise/godmode/servers/HA_cluster.php:136 +msgid "Pending action" msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:684 -msgid "Update and Finish" -msgstr "更新して終了" +#: ../../enterprise/godmode/servers/HA_cluster.php:259 +msgid "Show/ edit node" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_builder.main.php:1011 -msgid "Select at least two agents " -msgstr "少なくとも 2つのエージェントを選択 " +#: ../../enterprise/godmode/servers/HA_cluster.php:274 +msgid "Put node into standby status" +msgstr "" -#: ../../enterprise/godmode/reporting/cluster_list.php:270 -msgid "Create cluster" -msgstr "クラスタ作成" +#: ../../enterprise/godmode/servers/HA_cluster.php:288 +msgid "Force node resync" +msgstr "" -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:30 +#: ../../enterprise/godmode/servers/HA_cluster.php:314 +msgid "Put node into online status" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:328 +msgid "Show cluster details" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:345 +msgid "Remove node from this list" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:368 +msgid "Register node" +msgstr "" + +#: ../../enterprise/godmode/servers/HA_cluster.php:405 +msgid "" +"Target node will be erased from this list but not removed from cluster. Do " +"you want to continue?" +msgstr "" + +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:34 msgid "Credential Boxes List" -msgstr "" +msgstr "資格一覧" -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:33 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:39 msgid "Credential Boxes" -msgstr "" +msgstr "資格" -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:374 -#: ../../enterprise/godmode/servers/list_satellite.php:69 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:290 +#: ../../enterprise/godmode/servers/list_satellite.php:68 msgid "No Data" msgstr "データなし" -#: ../../enterprise/godmode/servers/list_satellite.php:26 +#: ../../enterprise/godmode/servers/list_satellite.php:27 msgid "Satellite Server" msgstr "サテライトサーバ" #: ../../enterprise/godmode/servers/manage_credential_boxes.php:20 msgid "Add Credential Box" -msgstr "" +msgstr "資格の追加" -#: ../../enterprise/godmode/servers/manage_export.php:61 +#: ../../enterprise/godmode/servers/manage_export.php:69 msgid "Error updating export target" msgstr "エクスポートターゲットの更新に失敗しました。" -#: ../../enterprise/godmode/servers/manage_export.php:64 +#: ../../enterprise/godmode/servers/manage_export.php:71 msgid "Successfully updated export target" msgstr "エクスポートターゲットを更新しました。" -#: ../../enterprise/godmode/servers/manage_export.php:73 +#: ../../enterprise/godmode/servers/manage_export.php:82 msgid "Error deleting export target" msgstr "エクスポートターゲットの削除に失敗しました。" -#: ../../enterprise/godmode/servers/manage_export.php:76 -msgid "Successfully deleted export target" -msgstr "エクスポートターゲットを削除しました。" +#: ../../enterprise/godmode/servers/manage_export.php:84 +msgid "" +"Successfully deleted export target. All the linked modules will be " +"automatically unattached" +msgstr "" -#: ../../enterprise/godmode/servers/manage_export.php:98 +#: ../../enterprise/godmode/servers/manage_export.php:107 msgid "" "Can't be created export target: User and password must be filled with FTP " "mode" msgstr "エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力する必要があります" -#: ../../enterprise/godmode/servers/manage_export.php:121 +#: ../../enterprise/godmode/servers/manage_export.php:126 msgid "There are no defined export targets" msgstr "定義済のエクスポートターゲットがありません" -#: ../../enterprise/godmode/servers/manage_export.php:131 -#: ../../enterprise/godmode/servers/manage_export_form.php:76 +#: ../../enterprise/godmode/servers/manage_export.php:138 +#: ../../enterprise/godmode/servers/manage_export_form.php:85 msgid "Preffix" msgstr "プレフィックス" -#: ../../enterprise/godmode/servers/manage_export_form.php:109 +#: ../../enterprise/godmode/servers/manage_export.php:141 +#: ../../enterprise/godmode/servers/manage_export_form.php:97 +msgid "Transfer mode" +msgstr "転送モード" + +#: ../../enterprise/godmode/servers/manage_export_form.php:119 msgid "Target directory" msgstr "対象ディレクトリ" -#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/godmode/servers/manage_export_form.php:123 msgid "Extra options" msgstr "拡張オプション" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:130 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:136 msgid "Error: The conf file of server is not readble." msgstr "エラー: サービスの設定ファイルを読めません。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:135 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:140 msgid "Error: The conf file of server is not writable." msgstr "エラー: サービスの設定ファイルに書き込めません。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:160 -msgid "Delete remote conf server files in Pandora" -msgstr "Pandora が保持しているリモートコンフィグファイルを削除します" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:166 +msgid "Delete remote conf server files" +msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:164 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:167 msgid "" -"Delete this conf file implies that Pandora will send back local config to " +"Delete this conf file implies that server will send back local config to " "console" -msgstr "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送します" +msgstr "" -#: ../../enterprise/godmode/services/services.elements.php:70 -#: ../../enterprise/godmode/services/services.service.php:306 +#: ../../enterprise/godmode/services/services.elements.php:81 +#: ../../enterprise/godmode/services/services.service.php:407 msgid "" "This values are by default because the service is auto calculate mode." msgstr "サービスが自動計算モードのため、デフォルト値です。" -#: ../../enterprise/godmode/services/services.elements.php:82 +#: ../../enterprise/godmode/services/services.elements.php:95 msgid "Invalid service" msgstr "不正なサービスです" -#: ../../enterprise/godmode/services/services.elements.php:96 -#: ../../enterprise/godmode/services/services.service.php:215 -#: ../../enterprise/operation/services/services.service.php:55 -#: ../../enterprise/operation/services/services.service_map.php:63 -#: ../../enterprise/operation/services/services.table_services.php:39 +#: ../../enterprise/godmode/services/services.elements.php:117 +#: ../../enterprise/godmode/services/services.service.php:288 +#: ../../enterprise/operation/services/services.list.php:46 +#: ../../enterprise/operation/services/services.service.php:62 +#: ../../enterprise/operation/services/services.service_map.php:70 +#: ../../enterprise/operation/services/services.table_services.php:43 +#: ../../enterprise/operation/services/services.treeview_services.php:45 msgid "Services list" msgstr "サービス一覧" -#: ../../enterprise/godmode/services/services.elements.php:102 -#: ../../enterprise/godmode/services/services.service.php:221 -#: ../../enterprise/operation/services/services.service.php:61 -#: ../../enterprise/operation/services/services.service_map.php:69 -msgid "Services table view" +#: ../../enterprise/godmode/services/services.elements.php:127 +#: ../../enterprise/godmode/services/services.service.php:296 +#: ../../enterprise/operation/services/services.service.php:72 +#: ../../enterprise/operation/services/services.service_map.php:80 +msgid "Services tree view" msgstr "" -#: ../../enterprise/godmode/services/services.elements.php:109 -#: ../../enterprise/godmode/services/services.service.php:226 -#: ../../enterprise/operation/services/services.service.php:66 -#: ../../enterprise/operation/services/services.service_map.php:75 +#: ../../enterprise/godmode/services/services.elements.php:137 +#: ../../enterprise/godmode/services/services.service.php:304 +#: ../../enterprise/operation/services/services.service.php:82 +#: ../../enterprise/operation/services/services.service_map.php:90 +msgid "Services table view" +msgstr "サービス表表示" + +#: ../../enterprise/godmode/services/services.elements.php:146 +#: ../../enterprise/godmode/services/services.service.php:312 +#: ../../enterprise/operation/services/services.service.php:91 +#: ../../enterprise/operation/services/services.service_map.php:102 msgid "Config Service" msgstr "サービス設定" -#: ../../enterprise/godmode/services/services.elements.php:115 -#: ../../enterprise/godmode/services/services.service.php:231 -#: ../../enterprise/operation/services/services.service.php:71 -#: ../../enterprise/operation/services/services.service_map.php:81 +#: ../../enterprise/godmode/services/services.elements.php:154 +#: ../../enterprise/godmode/services/services.service.php:320 +#: ../../enterprise/operation/services/services.service.php:95 +#: ../../enterprise/operation/services/services.service_map.php:110 msgid "Config Elements" msgstr "要素編集" -#: ../../enterprise/godmode/services/services.elements.php:123 -#: ../../enterprise/godmode/services/services.service.php:236 -#: ../../enterprise/operation/services/services.service.php:79 -#: ../../enterprise/operation/services/services.service_map.php:87 +#: ../../enterprise/godmode/services/services.elements.php:164 +#: ../../enterprise/godmode/services/services.service.php:328 +#: ../../enterprise/operation/services/services.service.php:103 +#: ../../enterprise/operation/services/services.service_map.php:122 msgid "View Service" msgstr "サービス参照" -#: ../../enterprise/godmode/services/services.elements.php:130 -#: ../../enterprise/godmode/services/services.service.php:241 -#: ../../enterprise/operation/services/services.service.php:85 -#: ../../enterprise/operation/services/services.service_map.php:93 -msgid "Service map" -msgstr "サービスマップ" - -#: ../../enterprise/godmode/services/services.elements.php:142 -#: ../../enterprise/include/functions_services.php:1736 +#: ../../enterprise/godmode/services/services.elements.php:196 +#: ../../enterprise/include/functions_services.php:2740 msgid "Edit service elements" msgstr "サービス要素編集" -#: ../../enterprise/godmode/services/services.elements.php:156 +#: ../../enterprise/godmode/services/services.elements.php:211 msgid "Error empty module" msgstr "モジュールが空です" -#: ../../enterprise/godmode/services/services.elements.php:165 +#: ../../enterprise/godmode/services/services.elements.php:222 msgid "Error empty agent" msgstr "エージェントが空です" -#: ../../enterprise/godmode/services/services.elements.php:174 +#: ../../enterprise/godmode/services/services.elements.php:233 msgid "Error empty service" msgstr "サービスが空です" -#: ../../enterprise/godmode/services/services.elements.php:196 +#: ../../enterprise/godmode/services/services.elements.php:241 +msgid "Error unknown type" +msgstr "" + +#: ../../enterprise/godmode/services/services.elements.php:266 msgid "Service element created successfully" msgstr "サービス要素を作成しました" -#: ../../enterprise/godmode/services/services.elements.php:197 +#: ../../enterprise/godmode/services/services.elements.php:267 msgid "Error creating service element" msgstr "サービス要素の作成エラー" -#: ../../enterprise/godmode/services/services.elements.php:271 +#: ../../enterprise/godmode/services/services.elements.php:438 msgid "Service element updated successfully" msgstr "サービス要素を更新しました" -#: ../../enterprise/godmode/services/services.elements.php:272 +#: ../../enterprise/godmode/services/services.elements.php:439 msgid "Error updating service element" msgstr "サービス要素の更新エラー" -#: ../../enterprise/godmode/services/services.elements.php:279 +#: ../../enterprise/godmode/services/services.elements.php:552 msgid "Service element deleted successfully" msgstr "サービス要素を削除しました" -#: ../../enterprise/godmode/services/services.elements.php:280 +#: ../../enterprise/godmode/services/services.elements.php:553 msgid "Error deleting service element" msgstr "サービス要素の削除エラー" -#: ../../enterprise/godmode/services/services.elements.php:324 +#: ../../enterprise/godmode/services/services.elements.php:609 msgid "Edit element service" msgstr "サービス要素編集" -#: ../../enterprise/godmode/services/services.elements.php:327 +#: ../../enterprise/godmode/services/services.elements.php:653 msgid "Create element service" msgstr "サービス要素作成" -#: ../../enterprise/godmode/services/services.elements.php:377 +#: ../../enterprise/godmode/services/services.elements.php:722 msgid "First select an agent" msgstr "最初にエージェントを選択" -#: ../../enterprise/godmode/services/services.elements.php:389 -msgid "Critical weight" -msgstr "障害ウエイト" - -#: ../../enterprise/godmode/services/services.elements.php:393 -msgid "Warning weight" -msgstr "警告ウエイト" - -#: ../../enterprise/godmode/services/services.elements.php:397 +#: ../../enterprise/godmode/services/services.elements.php:743 msgid "Unknown weight" msgstr "不明ウエイト" -#: ../../enterprise/godmode/services/services.elements.php:401 +#: ../../enterprise/godmode/services/services.elements.php:747 msgid "Ok weight" msgstr "正常ウエイト" -#: ../../enterprise/godmode/services/services.elements.php:408 +#: ../../enterprise/godmode/services/services.elements.php:753 msgid "" "Only the critical elements are relevant to calculate the service status" msgstr "障害状態のもののみがサービス状態の計算に使われます" -#: ../../enterprise/godmode/services/services.service.php:54 -#: ../../enterprise/operation/services/services.list.php:507 -#: ../../enterprise/operation/services/services.table_services.php:375 +#: ../../enterprise/godmode/services/services.service.php:58 +#: ../../enterprise/operation/services/services.list.php:568 +#: ../../enterprise/operation/services/services.table_services.php:418 +#: ../../enterprise/operation/services/services.treeview_services.php:114 msgid "Create Service" msgstr "サービスの作成" -#: ../../enterprise/godmode/services/services.service.php:65 -#: ../../enterprise/godmode/services/services.service.php:112 +#: ../../enterprise/godmode/services/services.service.php:85 +#: ../../enterprise/godmode/services/services.service.php:148 msgid "No name and description specified for the service" msgstr "サービスに名前と説明がありません" -#: ../../enterprise/godmode/services/services.service.php:70 -#: ../../enterprise/godmode/services/services.service.php:117 +#: ../../enterprise/godmode/services/services.service.php:93 +#: ../../enterprise/godmode/services/services.service.php:156 msgid "No name specified for the service" msgstr "サービスに名前がありません" -#: ../../enterprise/godmode/services/services.service.php:75 -#: ../../enterprise/godmode/services/services.service.php:122 +#: ../../enterprise/godmode/services/services.service.php:101 +#: ../../enterprise/godmode/services/services.service.php:164 msgid "No description specified for the service" msgstr "サービスに説明がありません" -#: ../../enterprise/godmode/services/services.service.php:82 +#: ../../enterprise/godmode/services/services.service.php:110 msgid "Error creating service" msgstr "サービス作成エラー" -#: ../../enterprise/godmode/services/services.service.php:86 +#: ../../enterprise/godmode/services/services.service.php:117 msgid "Service created successfully" msgstr "サービスを作成しました" -#: ../../enterprise/godmode/services/services.service.php:153 +#: ../../enterprise/godmode/services/services.service.php:204 msgid "Error updating service" msgstr "サービスの更新エラー" -#: ../../enterprise/godmode/services/services.service.php:157 +#: ../../enterprise/godmode/services/services.service.php:211 msgid "Service updated successfully" msgstr "サービスを更新しました" -#: ../../enterprise/godmode/services/services.service.php:170 -#: ../../enterprise/godmode/services/services.service.php:197 -#: ../../enterprise/operation/services/services.service.php:37 -#: ../../enterprise/operation/services/services.service_map.php:44 -msgid "Not found" -msgstr "見つかりません" - -#: ../../enterprise/godmode/services/services.service.php:174 +#: ../../enterprise/godmode/services/services.service.php:234 msgid "New Service" msgstr "新規サービス" -#: ../../enterprise/godmode/services/services.service.php:269 +#: ../../enterprise/godmode/services/services.service.php:375 msgid "No Services or concrete action" msgstr "サービスまたは具体的なアクションがありません" -#: ../../enterprise/godmode/services/services.service.php:280 +#: ../../enterprise/godmode/services/services.service.php:379 msgid "General Data" msgstr "一般データ" -#: ../../enterprise/godmode/services/services.service.php:296 +#: ../../enterprise/godmode/services/services.service.php:390 +msgid "Text shown in the service map is the description, not the name" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:398 msgid "You should set the weights manually" msgstr "手動でウエイトを設定する必要があります" -#: ../../enterprise/godmode/services/services.service.php:299 +#: ../../enterprise/godmode/services/services.service.php:401 msgid "The weights have default values" msgstr "ウエイトはデフォルト値です" -#: ../../enterprise/godmode/services/services.service.php:301 -#: ../../enterprise/operation/services/services.list.php:191 -#: ../../enterprise/operation/services/services.table_services.php:160 +#: ../../enterprise/godmode/services/services.service.php:403 +#: ../../enterprise/operation/services/services.list.php:229 +#: ../../enterprise/operation/services/services.table_services.php:208 msgid "Simple" msgstr "シンプル" -#: ../../enterprise/godmode/services/services.service.php:302 +#: ../../enterprise/godmode/services/services.service.php:404 msgid "" "Only the elements configured as 'critical element' are used to calculate the " "service status" msgstr "'障害' として設定されているもののみサービスの状態計算に利用されます。" -#: ../../enterprise/godmode/services/services.service.php:322 +#: ../../enterprise/godmode/services/services.service.php:423 msgid "Agent to store data" msgstr "データを保存するエージェント" -#: ../../enterprise/godmode/services/services.service.php:345 +#: ../../enterprise/godmode/services/services.service.php:440 +msgid "" +"If active, no alerts will be triggered and no service events will be " +"generated." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:443 +msgid "Cascade Protection" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:444 +msgid "" +"If active, no alerts will be triggered and no events will be generated from " +"the items belonging to this service." +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:459 +msgid "Calculate continuous SLA for this service" +msgstr "" + +#: ../../enterprise/godmode/services/services.service.php:462 msgid "S.L.A. interval" msgstr "SLA 間隔" -#: ../../enterprise/godmode/services/services.service.php:350 +#: ../../enterprise/godmode/services/services.service.php:473 msgid "S.L.A. limit" msgstr "SLA 制限" -#: ../../enterprise/godmode/services/services.service.php:352 +#: ../../enterprise/godmode/services/services.service.php:474 msgid "Please set limit between 0 to 100." msgstr "制限は、0 と 100 の間で設定してください。" -#: ../../enterprise/godmode/services/services.service.php:358 -msgid "Update service" -msgstr "サービス更新" - -#: ../../enterprise/godmode/services/services.service.php:365 +#: ../../enterprise/godmode/services/services.service.php:488 msgid "" "Here are described the alert templates, which will use their default " "actions.\n" @@ -33756,236 +39818,287 @@ msgstr "" "アラートテンプレートの説明です。デフォルトのアクションで利用されます。\n" "\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントでアラートを編集することによりデフォルトの動作を変更できます。" -#: ../../enterprise/godmode/services/services.service.php:379 +#: ../../enterprise/godmode/services/services.service.php:505 msgid "Warning Service alert" msgstr "警告サービスアラート" -#: ../../enterprise/godmode/services/services.service.php:390 +#: ../../enterprise/godmode/services/services.service.php:526 msgid "Critical Service alert" msgstr "障害サービスアラート" -#: ../../enterprise/godmode/services/services.service.php:408 +#: ../../enterprise/godmode/services/services.service.php:545 msgid "SLA critical service alert" msgstr "SLA 障害サービスアラート" -#: ../../enterprise/godmode/services/services.service.php:422 -msgid "Update alerts" -msgstr "アラート更新" +#: ../../enterprise/godmode/services/services.service.php:654 +msgid "" +"This change in the service configuration will delete the history of the " +"service modules. Do you wish to continue?" +msgstr "" -#: ../../enterprise/godmode/setup/edit_skin.php:42 -#: ../../enterprise/godmode/setup/setup_skins.php:36 +#: ../../enterprise/godmode/services/services.service.php:656 +msgid "" +"This change in the service configuration will prevent the SLA modules from " +"being created. Do you wish to continue?" +msgstr "" + +#: ../../enterprise/godmode/setup/edit_skin.php:41 +#: ../../enterprise/godmode/setup/setup_skins.php:35 msgid "Skins configuration" msgstr "スキン設定" -#: ../../enterprise/godmode/setup/edit_skin.php:45 +#: ../../enterprise/godmode/setup/edit_skin.php:44 msgid "Successfully updated skin" msgstr "スキンを更新しました" -#: ../../enterprise/godmode/setup/edit_skin.php:48 -#: ../../enterprise/godmode/setup/edit_skin.php:60 +#: ../../enterprise/godmode/setup/edit_skin.php:46 +#: ../../enterprise/godmode/setup/edit_skin.php:64 msgid "Error updating skin" msgstr "スキン更新エラー" -#: ../../enterprise/godmode/setup/edit_skin.php:171 +#: ../../enterprise/godmode/setup/edit_skin.php:194 msgid "Error creating skin" msgstr "スキン作成エラー" -#: ../../enterprise/godmode/setup/edit_skin.php:176 +#: ../../enterprise/godmode/setup/edit_skin.php:198 msgid "Successfully created skin" msgstr "スキンを作成しました" -#: ../../enterprise/godmode/setup/edit_skin.php:216 -#: ../../enterprise/godmode/setup/setup_skins.php:118 +#: ../../enterprise/godmode/setup/edit_skin.php:238 +#: ../../enterprise/godmode/setup/setup_skins.php:120 msgid "Relative path" msgstr "相対パス" -#: ../../enterprise/godmode/setup/edit_skin.php:217 +#: ../../enterprise/godmode/setup/edit_skin.php:239 msgid "" "Zip file with skin subdirectory. The name of the zip file only can have " "alphanumeric characters." msgstr "skin サブディレクトリを持った zip ファイル。zip ファイル名に使える文字は、アルファベットのみです。" -#: ../../enterprise/godmode/setup/edit_skin.php:239 +#: ../../enterprise/godmode/setup/edit_skin.php:264 msgid "Group/s" msgstr "グループ" -#: ../../enterprise/godmode/setup/setup.php:38 +#: ../../enterprise/godmode/setup/setup.php:48 +msgid "Yes and change status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:56 +msgid "Yes without changing status" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:79 msgid "" "Before activating this option check your ACL Setup. You may lose access to " "the console." msgstr "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのアクセスができなくなる可能性があります。" -#: ../../enterprise/godmode/setup/setup.php:48 +#: ../../enterprise/godmode/setup/setup.php:101 +#: ../../enterprise/meta/advanced/metasetup.setup.php:282 msgid " Bytes" msgstr " バイト" -#: ../../enterprise/godmode/setup/setup.php:64 +#: ../../enterprise/godmode/setup/setup.php:127 msgid "Seconds" msgstr "秒" -#: ../../enterprise/godmode/setup/setup.php:72 +#: ../../enterprise/godmode/setup/setup.php:143 msgid "" "Limit the number of events that are replicated metaconsole each specified " "range." msgstr "指定した範囲でメタコンソールへ複製するイベントの数を制限します。" -#: ../../enterprise/godmode/setup/setup.php:78 +#: ../../enterprise/godmode/setup/setup.php:151 msgid "Last replication at" msgstr "最新の複製" -#: ../../enterprise/godmode/setup/setup.php:80 +#: ../../enterprise/godmode/setup/setup.php:153 msgid "No replication yet" msgstr "複製されていません" -#: ../../enterprise/godmode/setup/setup.php:90 +#: ../../enterprise/godmode/setup/setup.php:167 msgid "Only validated events" msgstr "承諾済イベントのみ" -#: ../../enterprise/godmode/setup/setup.php:96 +#: ../../enterprise/godmode/setup/setup.php:182 msgid "Metaconsole DB engine" msgstr "メタコンソール DB エンジン" -#: ../../enterprise/godmode/setup/setup.php:97 +#: ../../enterprise/godmode/setup/setup.php:185 +#: ../../enterprise/include/class/MySQL.app.php:419 msgid "MySQL" msgstr "MySQL" -#: ../../enterprise/godmode/setup/setup.php:97 -msgid "Oracle" -msgstr "Oracle" - -#: ../../enterprise/godmode/setup/setup.php:103 +#: ../../enterprise/godmode/setup/setup.php:200 msgid "Metaconsole DB host" msgstr "メタコンソール DB ホスト" -#: ../../enterprise/godmode/setup/setup.php:110 +#: ../../enterprise/godmode/setup/setup.php:214 msgid "Metaconsole DB name" msgstr "メタコンソール DB 名" -#: ../../enterprise/godmode/setup/setup.php:117 +#: ../../enterprise/godmode/setup/setup.php:228 msgid "Metaconsole DB user" msgstr "メタコンソール DB ユーザ" -#: ../../enterprise/godmode/setup/setup.php:124 +#: ../../enterprise/godmode/setup/setup.php:242 msgid "Metaconsole DB password" msgstr "メタコンソール DB パスワード" -#: ../../enterprise/godmode/setup/setup.php:131 +#: ../../enterprise/godmode/setup/setup.php:256 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:532 msgid "Metaconsole DB port" msgstr "メタコンソール DB ポート" -#: ../../enterprise/godmode/setup/setup.php:147 +#: ../../enterprise/godmode/setup/setup.php:281 +msgid "Events Configuration Information" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:283 +msgid "" +" If you are replicating events, events validated or deleted on the " +"metaconsole WILL NOT be deleted or validated here. This option is just to " +"allow local pandora users to see events, but not to operate with them. " +"Operation, when event replication is enabled, should be done only in " +"metaconsole" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:290 msgid "" "The inventory modules included in the changes blacklist will not generate " "events when change." msgstr "ブラックリストに含まれるインベントリモジュールは、変更が発生してもイベントを生成しません。" -#: ../../enterprise/godmode/setup/setup.php:178 +#: ../../enterprise/godmode/setup/setup.php:355 msgid "Out of black list" msgstr "ブラックリスト対象外" -#: ../../enterprise/godmode/setup/setup.php:180 +#: ../../enterprise/godmode/setup/setup.php:357 msgid "In black list" msgstr "ブラックリスト対象" -#: ../../enterprise/godmode/setup/setup.php:186 +#: ../../enterprise/godmode/setup/setup.php:362 msgid "Push selected modules into blacklist" msgstr "選択したモジュールをブラックリストへ追加" -#: ../../enterprise/godmode/setup/setup.php:190 +#: ../../enterprise/godmode/setup/setup.php:364 msgid "Pop selected modules out of blacklist" msgstr "選択したモジュールをブラックリストから削除" -#: ../../enterprise/godmode/setup/setup.php:216 +#: ../../enterprise/godmode/setup/setup.php:388 +#: ../../enterprise/meta/advanced/metasetup.setup.php:273 +#: ../../enterprise/meta/include/functions_meta.php:523 +msgid "Enable update manager" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:400 +msgid "Disable newsletter" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:412 +msgid "Critical threshold for occupied addresses" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:414 +#: ../../enterprise/godmode/setup/setup.php:430 +msgid "Threshold for IPAM supernet map" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:428 +msgid "Warning threshold for occupied addresses" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:461 msgid "Enterprise options" msgstr "Enterprise オプション" -#: ../../enterprise/godmode/setup/setup.php:236 -#: ../../enterprise/meta/advanced/metasetup.mail.php:79 -msgid "Mail configuration" -msgstr "メール設定" - -#: ../../enterprise/godmode/setup/setup.php:293 -#: ../../enterprise/meta/advanced/metasetup.password.php:85 +#: ../../enterprise/godmode/setup/setup.php:516 +#: ../../enterprise/meta/advanced/metasetup.password.php:102 msgid " Caracters" msgstr " 文字" -#: ../../enterprise/godmode/setup/setup.php:306 -#: ../../enterprise/meta/advanced/metasetup.password.php:101 +#: ../../enterprise/godmode/setup/setup.php:538 +#: ../../enterprise/meta/advanced/metasetup.password.php:105 msgid "Set 0 if never expire." msgstr "0 に設定すると期限切れは発生しません" -#: ../../enterprise/godmode/setup/setup.php:307 -#: ../../enterprise/meta/advanced/metasetup.password.php:102 +#: ../../enterprise/godmode/setup/setup.php:546 +#: ../../enterprise/meta/advanced/metasetup.password.php:106 msgid " Days" msgstr " 日" -#: ../../enterprise/godmode/setup/setup.php:316 -#: ../../enterprise/meta/advanced/metasetup.password.php:113 +#: ../../enterprise/godmode/setup/setup.php:566 +#: ../../enterprise/meta/advanced/metasetup.password.php:110 msgid " Minutes" msgstr " 分" -#: ../../enterprise/godmode/setup/setup.php:320 -#: ../../enterprise/meta/advanced/metasetup.password.php:117 +#: ../../enterprise/godmode/setup/setup.php:570 +#: ../../enterprise/meta/advanced/metasetup.password.php:113 msgid "Two attempts minimum" msgstr "最小は 2回です" -#: ../../enterprise/godmode/setup/setup.php:321 -#: ../../enterprise/meta/advanced/metasetup.password.php:118 +#: ../../enterprise/godmode/setup/setup.php:578 +#: ../../enterprise/meta/advanced/metasetup.password.php:114 msgid " Attempts" msgstr " 回" -#: ../../enterprise/godmode/setup/setup.php:361 +#: ../../enterprise/godmode/setup/setup.php:622 msgid "Enterprise password policy" msgstr "Enterprise パスワードポリシー" -#: ../../enterprise/godmode/setup/setup.php:362 +#: ../../enterprise/godmode/setup/setup.php:622 msgid "" "Rules applied to the management of passwords. This policy applies to all " "users except the administrator." msgstr "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適用されます。" -#: ../../enterprise/godmode/setup/setup_acl.php:40 +#: ../../enterprise/godmode/setup/setup_acl.php:43 msgid "Enterprise ACL setup" msgstr "Enterprise ACL 設定" -#: ../../enterprise/godmode/setup/setup_acl.php:309 +#: ../../enterprise/godmode/setup/setup_acl.php:330 msgid "This record already exists in the database" msgstr "このレコードはすでにデータベースにあります" -#: ../../enterprise/godmode/setup/setup_acl.php:356 -#: ../../enterprise/godmode/setup/setup_acl.php:388 +#: ../../enterprise/godmode/setup/setup_acl.php:374 +#: ../../enterprise/godmode/setup/setup_acl.php:449 msgid "Add new ACL element to profile" msgstr "プロファイルへの新ACL要素の追加" -#: ../../enterprise/godmode/setup/setup_acl.php:361 -#: ../../enterprise/godmode/setup/setup_acl.php:433 +#: ../../enterprise/godmode/setup/setup_acl.php:379 +#: ../../enterprise/godmode/setup/setup_acl.php:494 msgid "Section" msgstr "セクション" -#: ../../enterprise/godmode/setup/setup_acl.php:366 -#: ../../enterprise/godmode/setup/setup_acl.php:522 +#: ../../enterprise/godmode/setup/setup_acl.php:386 +#: ../../enterprise/godmode/setup/setup_acl.php:596 msgid "Mobile" msgstr "モバイル" -#: ../../enterprise/godmode/setup/setup_acl.php:370 -#: ../../enterprise/godmode/setup/setup_acl.php:434 +#: ../../enterprise/godmode/setup/setup_acl.php:390 +#: ../../enterprise/godmode/setup/setup_acl.php:592 +msgid "Head search" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_acl.php:407 +#: ../../enterprise/godmode/setup/setup_acl.php:495 msgid "Section 2" msgstr "セクション 2" -#: ../../enterprise/godmode/setup/setup_acl.php:375 -#: ../../enterprise/godmode/setup/setup_acl.php:435 +#: ../../enterprise/godmode/setup/setup_acl.php:424 +#: ../../enterprise/godmode/setup/setup_acl.php:496 msgid "Section 3" msgstr "セクション 3" -#: ../../enterprise/godmode/setup/setup_acl.php:387 +#: ../../enterprise/godmode/setup/setup_acl.php:448 msgid "Hidden" msgstr "隠す" -#: ../../enterprise/godmode/setup/setup_acl.php:393 +#: ../../enterprise/godmode/setup/setup_acl.php:454 msgid "Page" msgstr "ページ" -#: ../../enterprise/godmode/setup/setup_acl.php:412 +#: ../../enterprise/godmode/setup/setup_acl.php:473 msgid "Filter by profile" msgstr "プロファイルによるフィルタ" @@ -33994,31 +40107,33 @@ msgid "Active directory" msgstr "アクティブディレクトリ" #: ../../enterprise/godmode/setup/setup_auth.php:32 -msgid "Remote Pandora FMS" -msgstr "リモートの Pandora FMS" - -#: ../../enterprise/godmode/setup/setup_auth.php:33 -msgid "Remote Integria" -msgstr "リモートの Integria" - -#: ../../enterprise/godmode/setup/setup_auth.php:34 msgid "SAML" msgstr "SAML" -#: ../../enterprise/godmode/setup/setup_auth.php:78 +#: ../../enterprise/godmode/setup/setup_auth.php:79 msgid "" -"by activating this option, the LDAP password will be stored in the database" -msgstr "このオプションを有効化することにより、LDAP パスワードがデータベースに保存されます" +"By activating this option, the LDAP password will be stored in the database." +msgstr "" -#: ../../enterprise/godmode/setup/setup_auth.php:87 +#: ../../enterprise/godmode/setup/setup_auth.php:84 +msgid "Force automatically create profile user" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:84 +msgid "" +"By activating this option, whenever an user logs in, their profile will be " +"changed for the automatically create profile" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:89 msgid "Local command" msgstr "ローカルコマンド" -#: ../../enterprise/godmode/setup/setup_auth.php:90 +#: ../../enterprise/godmode/setup/setup_auth.php:92 msgid "PHP function" msgstr "PHP 機能" -#: ../../enterprise/godmode/setup/setup_auth.php:102 +#: ../../enterprise/godmode/setup/setup_auth.php:103 msgid "" "Enable this option to assign profiles, groups and tags to users from " "specific LDAP Attributes (updated at the next login)" @@ -34026,263 +40141,312 @@ msgstr "" "特定の LDAP " "アトリビュートから、プロファイル、グループ、タグをユーザに割り当てるには、このオプションを有効化します。(次回のログイン時に更新されます)" -#: ../../enterprise/godmode/setup/setup_auth.php:138 -#: ../../enterprise/godmode/setup/setup_auth.php:182 +#: ../../enterprise/godmode/setup/setup_auth.php:167 +#: ../../enterprise/godmode/setup/setup_auth.php:925 +msgid "Profiles selected" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:168 +#: ../../enterprise/godmode/setup/setup_auth.php:926 +msgid "Groups selected" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:171 +#: ../../enterprise/godmode/setup/setup_auth.php:228 msgid "LDAP Attributes" msgstr "LDAP アトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:185 -#: ../../enterprise/godmode/setup/setup_auth.php:780 +#: ../../enterprise/godmode/setup/setup_auth.php:237 +#: ../../enterprise/godmode/setup/setup_auth.php:988 msgid "Select profile" msgstr "プロファイルを選択" -#: ../../enterprise/godmode/setup/setup_auth.php:195 -#: ../../enterprise/godmode/setup/setup_auth.php:789 +#: ../../enterprise/godmode/setup/setup_auth.php:281 +#: ../../enterprise/godmode/setup/setup_auth.php:1025 msgid "Add new permissions" msgstr "新規の権限を追加" -#: ../../enterprise/godmode/setup/setup_auth.php:235 -#: ../../enterprise/godmode/setup/setup_auth.php:699 -#: ../../enterprise/meta/include/functions_meta.php:774 -#: ../../enterprise/meta/include/functions_meta.php:784 +#: ../../enterprise/godmode/setup/setup_auth.php:329 +#: ../../enterprise/godmode/setup/setup_auth.php:857 +#: ../../enterprise/meta/include/functions_meta.php:840 +#: ../../enterprise/meta/include/functions_meta.php:851 msgid "Auto enable node access" -msgstr "" +msgstr "ノードアクセスの自動有効化" -#: ../../enterprise/godmode/setup/setup_auth.php:236 -#: ../../enterprise/godmode/setup/setup_auth.php:700 +#: ../../enterprise/godmode/setup/setup_auth.php:329 +#: ../../enterprise/godmode/setup/setup_auth.php:857 msgid "New users will be able to log in to the nodes." msgstr "新規ユーザはノードへログインできます。" -#: ../../enterprise/godmode/setup/setup_auth.php:342 -#: ../../enterprise/godmode/setup/setup_auth.php:443 +#: ../../enterprise/godmode/setup/setup_auth.php:450 +#: ../../enterprise/godmode/setup/setup_auth.php:551 msgid "You must select a profile from the list of profiles." msgstr "プロファイル一覧からぷらファイルを選択する必要があります。" -#: ../../enterprise/godmode/setup/setup_auth.php:656 +#: ../../enterprise/godmode/setup/setup_auth.php:455 +#: ../../enterprise/godmode/setup/setup_auth.php:556 +msgid "You must select a group from the list of groups." +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:775 msgid "SimpleSAML path" msgstr "SimpleSAML パス" -#: ../../enterprise/godmode/setup/setup_auth.php:656 +#: ../../enterprise/godmode/setup/setup_auth.php:775 msgid "" "Select the path where SimpleSAML has been installed (by default '/opt/')" msgstr "SimpleSAML がインストールされているパスを選択 (デフォルトは '/opt/')" -#: ../../enterprise/godmode/setup/setup_auth.php:665 +#: ../../enterprise/godmode/setup/setup_auth.php:779 +msgid "SAML source" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:784 +msgid "SAML user id attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:789 +msgid "SAML mail attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:794 +msgid "SAML group name attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:799 +msgid "Simple attribute / Multivalue attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:804 +msgid "SAML profiles and tag attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:809 +msgid "Profile attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:814 +msgid "Tag attribute" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:819 +msgid "SAML profile and tags prefix" +msgstr "" + +#: ../../enterprise/godmode/setup/setup_auth.php:827 msgid "" "Enable this option to assign profiles, groups and tags to users from " "specific AD groups (updated at the next login)" msgstr "" "特定の AD グループから、プロファイル、グループ、タグをユーザに割り当てるには、このオプションを有効化します。(次回のログイン時に更新されます)" -#: ../../enterprise/godmode/setup/setup_auth.php:737 -#: ../../enterprise/godmode/setup/setup_auth.php:778 +#: ../../enterprise/godmode/setup/setup_auth.php:928 +#: ../../enterprise/godmode/setup/setup_auth.php:980 msgid "AD Groups" msgstr "ADグループ" -#: ../../enterprise/godmode/setup/setup_history.php:49 +#: ../../enterprise/godmode/setup/setup_history.php:45 msgid "Enable event history" msgstr "イベントヒストリの有効化" -#: ../../enterprise/godmode/setup/setup_history.php:49 +#: ../../enterprise/godmode/setup/setup_history.php:45 msgid "" "Event history is ONLY used for event reports, is not used in graphs or event " "viewer." msgstr "イベントヒストリはイベントレポートにのみ利用されます。グラフやグラフ表示には利用されません。" -#: ../../enterprise/godmode/setup/setup_history.php:68 +#: ../../enterprise/godmode/setup/setup_history.php:63 msgid "Number of days before data is transfered to history database." msgstr "ヒストリデータベースへのデータ転送を行わない日数" -#: ../../enterprise/godmode/setup/setup_history.php:71 +#: ../../enterprise/godmode/setup/setup_history.php:66 msgid "" "Data size of mechanism used to transfer data (similar to a data buffer.)" msgstr "データ転送に利用するデータサイズ (データバッファのようなもの)" -#: ../../enterprise/godmode/setup/setup_history.php:74 +#: ../../enterprise/godmode/setup/setup_history.php:69 msgid "Time interval between data transfer." msgstr "データ転送の時間間隔" -#: ../../enterprise/godmode/setup/setup_history.php:77 +#: ../../enterprise/godmode/setup/setup_history.php:72 msgid "Event days" msgstr "イベント日数" -#: ../../enterprise/godmode/setup/setup_history.php:77 +#: ../../enterprise/godmode/setup/setup_history.php:72 msgid "Number of days before events is transfered to history database." msgstr "イベントをヒストリデータベースへ転送するまでの日数です。" -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 msgid "ElasticSearch IP" msgstr "ElasticSearch IP" -#: ../../enterprise/godmode/setup/setup_log_collector.php:45 +#: ../../enterprise/godmode/setup/setup_log_collector.php:38 msgid "IP of ElasticSearch server" msgstr "ElasticSearch サーバの IP" -#: ../../enterprise/godmode/setup/setup_log_collector.php:47 +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 msgid "ElasticSearch Port" msgstr "ElasticSearch ポート" -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 msgid "Port of ElasticSearch server" msgstr "ElasticSearch サーバのポート" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:29 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:28 msgid "Metaconsole setup" msgstr "メタコンソール設定" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:76 -#: ../../enterprise/meta/advanced/metasetup.auth.php:53 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:138 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:82 +#: ../../enterprise/meta/advanced/metasetup.auth.php:51 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:153 #: ../../enterprise/meta/advanced/metasetup.password.php:53 -#: ../../enterprise/meta/advanced/metasetup.performance.php:53 -#: ../../enterprise/meta/advanced/metasetup.setup.php:85 -#: ../../enterprise/meta/advanced/metasetup.visual.php:56 +#: ../../enterprise/meta/advanced/metasetup.performance.php:51 +#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.visual.php:54 msgid "Successfully update" msgstr "更新しました" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:77 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:139 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:83 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:154 msgid "Could not be update" msgstr "更新できませんでした" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:168 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:301 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 msgid "Pandora FMS Metaconsole item edition" msgstr "Pandora FMS メタコンソールアイテム編集" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:310 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 msgid "Auth token" msgstr "認証トークン" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:175 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:312 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:199 msgid "" "Token previously configured on the destination Pandora console in order to " "use delegated authentification." msgstr "認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークンです。" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:179 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:248 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:315 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:389 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:203 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:271 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:624 msgid "Console URL" msgstr "コンソール URL" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:188 -#: ../../enterprise/godmode/setup/setup_metaconsole.php:249 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:321 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:390 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:212 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:272 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:427 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:625 msgid "DB Host" msgstr "DB ホスト" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:192 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:324 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:216 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:436 msgid "DB Name" msgstr "DB 名" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:197 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:327 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:221 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:445 msgid "DB User" msgstr "DB ユーザ" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:201 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:330 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:225 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:454 msgid "DB Password" msgstr "DB パスワード" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:206 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:336 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:230 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:408 msgid "Console User" msgstr "コンソールユーザ" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:339 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:234 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:417 msgid "Console Password" msgstr "コンソールパスワード" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:244 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:381 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:267 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:616 msgid "DB" msgstr "DB" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:245 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:268 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:617 msgid "API" msgstr "API" -#: ../../enterprise/godmode/setup/setup_metaconsole.php:246 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:383 +#: ../../enterprise/godmode/setup/setup_metaconsole.php:269 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:618 msgid "Compatibility" msgstr "互換性" -#: ../../enterprise/godmode/setup/setup_skins.php:71 +#: ../../enterprise/godmode/setup/setup_skins.php:74 msgid "Error deleting skin" msgstr "スキン削除エラー" -#: ../../enterprise/godmode/setup/setup_skins.php:74 +#: ../../enterprise/godmode/setup/setup_skins.php:76 msgid "Successfully deleted skin" msgstr "スキンを削除しました" -#: ../../enterprise/godmode/setup/setup_skins.php:117 +#: ../../enterprise/godmode/setup/setup_skins.php:119 msgid "Skin name" msgstr "スキン名" -#: ../../enterprise/godmode/setup/setup_skins.php:143 +#: ../../enterprise/godmode/setup/setup_skins.php:147 msgid "There are no defined skins" msgstr "定義済のスキンがありません" -#: ../../enterprise/godmode/setup/setup_skins.php:148 +#: ../../enterprise/godmode/setup/setup_skins.php:153 msgid "Create skin" msgstr "スキン作成" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:174 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:187 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:199 msgid "Successfully added trap custom values" msgstr "トラップカスタム値を追加しました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:177 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:190 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:189 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:201 msgid "Error adding trap custom values" msgstr "トラップカスタム値の追加エラー" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:194 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:256 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:204 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 msgid "This custom OID is preexistent." msgstr "このカスタム OID はすでに存在します。" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:225 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:245 msgid "No change in data" msgstr "データに変更がありません" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:228 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:247 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:274 msgid "Successfully updated trap custom values" msgstr "トラップカスタム値を更新しました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:231 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:252 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:249 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:276 msgid "Error updating trap custom values" msgstr "トラップカスタム値の更新エラー" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:268 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:289 msgid "Successfully deleted trap custom values" msgstr "トラップカスタム値を削除しました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:272 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:292 msgid "Error deleting trap custom values" msgstr "トラップカスタム値の削除エラー" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:279 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 #, php-format msgid "Uploaded %s/%s traps" msgstr "%s/%s トラップをアップロードしました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:283 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:302 msgid "Fail uploaded file" msgstr "ファイルのアップロードに失敗しました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:287 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:307 msgid "" "MIB files will be loaded and searched for SNMP trap definitions. They will " "not be installed on the system! You can use the MIB uploader for that " @@ -34290,264 +40454,2232 @@ msgid "" msgstr "" "MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストールされません。MIB アップローダはこの目的の範囲で利用できます。" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:296 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:316 msgid "Load MIB" msgstr "MIBのロード" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:298 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:318 msgid "Upload MIB" msgstr "MIBをアップロード" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:319 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:65 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:339 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:64 msgid "Custom OID" msgstr "カスタム OID" -#: ../../enterprise/include/ajax/dashboard.ajax.php:311 -msgid "Only one service map widget is supported at this moment" -msgstr "(現時点でサポートされるサービスマップウィジェットは一つだけです" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:251 -msgid "Error accesing to API, auth error." -msgstr "APIアクセス認証エラー" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:255 -msgid "Error accesing to API." -msgstr "APIアクセスエラー。" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:259 -msgid "Error could not resolve the host." -msgstr "エラー。ホストの名前解決ができません。" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:270 -msgid "Database credentials not found" -msgstr "データベースの認証情報がありません" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:274 -msgid "Error connecting to the specified host" -msgstr "指定したホストへの接続エラー" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:278 -msgid "Connected to the host, but cannot found the specified database" -msgstr "ホストへ接続しましたが、指定されたデータベースが見つかりません。" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:289 -#: ../../enterprise/include/ajax/metaconsole.ajax.php:313 -msgid "Server connection failed" -msgstr "サーバの接続に失敗しました。" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:293 +#: ../../enterprise/godmode/wizards/Applications.class.php:177 +#: ../../enterprise/godmode/wizards/Cloud.class.php:206 msgid "" -"\"Translate string\" extension is missed in the server. This extension is " -"mandatory to be configured on metaconsole." -msgstr "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が必須です。" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:297 -msgid "" -"Server name doesnt match. Check the node server name and configure the same " -"one on metasetup" -msgstr "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか確認してください" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:308 -msgid "Last event replication" -msgstr "最新のイベント複製" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:322 -msgid "Agent cache activated" -msgstr "エージェントキャッシュが有効" - -#: ../../enterprise/include/ajax/metaconsole.ajax.php:326 -msgid "Agent cache failed" -msgstr "エージェントキャッシュが無効" - -#: ../../enterprise/include/ajax/transactional.ajax.php:178 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:151 -msgid "The phase does not have a defined script" -msgstr "フェーズは決まったスクリプトを持っていません" - -#: ../../enterprise/include/ajax/transactional.ajax.php:217 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:201 -msgid "Edit Data" -msgstr "データ編集" - -#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:34 -msgid "Global time: " +"All company names used here are for identification purposes only. Use of " +"these names, logos, and brands does not imply endorsement." msgstr "" -#: ../../enterprise/include/ajax/clustermap.php:254 +#: ../../enterprise/godmode/wizards/Cloud.class.php:232 +#: ../../enterprise/godmode/wizards/Cloud.class.php:240 +#, php-format +msgid "%s credentials" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:264 +msgid "Manage accounts" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:276 +msgid "Cloud tool full path" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:284 +msgid "Account" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:337 +msgid "Select a set of credentials from the list" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:350 +#, php-format +msgid "Path %s is not executable." +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:353 +msgid "Invalid username or password" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:395 +msgid "Account disconnected" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:397 +msgid "Failed disconnecting account" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:471 +msgid "Credentials successfully updated" +msgstr "" + +#: ../../enterprise/godmode/wizards/Cloud.class.php:473 +msgid "Failed updating credentials process" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:199 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:261 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:350 +#: ../../enterprise/meta/advanced/cron_main.php:144 +#: ../../enterprise/meta/advanced/cron_main.php:188 +#: ../../enterprise/meta/advanced/cron_main.php:276 +msgid "Path doesn't exists or is not writable" +msgstr "パスが存在しないか書き込みできません" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:211 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:224 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:272 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:285 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:365 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 +msgid "Failed to create task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:230 +#: ../../enterprise/meta/advanced/cron_main.php:156 +msgid "Only administrator users can create this type of functions" +msgstr "管理者ユーザのみがこの機能を作成できます。" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:335 +#: ../../enterprise/meta/advanced/cron_main.php:224 +#: ../../enterprise/meta/advanced/cron_main.php:258 +msgid "Edit job" +msgstr "ジョブ編集" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:391 +msgid "I do not know what you want to do" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:408 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:577 +msgid "You have no access to manage console tasks." +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:422 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:490 +msgid "Create new console task" +msgstr "新規コンソールタスクの作成" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:465 +msgid "Updating console task" +msgstr "" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 +#: ../../enterprise/meta/advanced/cron_main.php:84 +msgid "Add new job" +msgstr "新規ジョブ追加" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:613 +msgid "Next Execution" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:74 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 +msgid "Group name" +msgstr "グループ名" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:99 +msgid "OS name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:111 +msgid "Custom field name" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:113 +msgid "Custom field value" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:120 +msgid "IP Network range" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:126 +msgid "Script" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 +msgid "Arguments" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:134 +msgid "Unknown form" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:170 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 +msgid "Create rule" +msgstr "ルールの作成" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:212 +msgid "IP range" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +msgid "Script output (> 0)" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:431 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:540 +msgid "Script path" +msgstr "" + +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:544 +msgid "Script argument" +msgstr "" + +#: ../../enterprise/include/ajax/clustermap.php:41 +msgid "No IP" +msgstr "IPなし" + +#: ../../enterprise/include/ajax/clustermap.php:266 msgid "Common modules list" msgstr "共通モジュール一覧" -#: ../../enterprise/include/ajax/clustermap.php:465 +#: ../../enterprise/include/ajax/clustermap.php:486 msgid "Balanced modules list" msgstr "バランスモジュール一覧" -#: ../../enterprise/include/process_reset_pass.php:106 -#: ../../enterprise/meta/include/process_reset_pass.php:83 -msgid "Repeat password" +#: ../../enterprise/include/ajax/dashboard.ajax.php:356 +msgid "Only one service map widget is supported at this moment" +msgstr "(現時点でサポートされるサービスマップウィジェットは一つだけです" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:41 +msgid "Capture regexp" msgstr "" -#: ../../enterprise/include/process_reset_pass.php:109 -#: ../../enterprise/meta/include/process_reset_pass.php:86 -msgid "Change password" -msgstr "パスワード変更" +#: ../../enterprise/include/ajax/log_viewer.ajax.php:51 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1078 +#: ../../enterprise/meta/event/custom_events.php:160 +msgid "Fields" +msgstr "フィールド" -#: ../../enterprise/include/process_reset_pass.php:112 -#: ../../enterprise/meta/include/process_reset_pass.php:89 -#: ../../enterprise/meta/index.php:500 ../../index.php:620 -msgid "Passwords must be the same" -msgstr "パスワードは同じでなければいけません" +#: ../../enterprise/include/ajax/metaconsole.ajax.php:72 +msgid "Error accesing to API, auth error." +msgstr "APIアクセス認証エラー" -#: ../../enterprise/include/process_reset_pass.php:120 -#: ../../enterprise/include/reset_pass.php:110 -#: ../../enterprise/meta/general/noaccess.php:17 -#: ../../enterprise/meta/include/process_reset_pass.php:97 -#: ../../enterprise/meta/include/reset_pass.php:86 -msgid "Back to login" -msgstr "ログインに戻る" +#: ../../enterprise/include/ajax/metaconsole.ajax.php:77 +msgid "Error accesing to API." +msgstr "APIアクセスエラー。" -#: ../../enterprise/include/functions_alert_event.php:925 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:82 +msgid "Error could not resolve the host." +msgstr "エラー。ホストの名前解決ができません。" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:87 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:113 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:134 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:156 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:173 +msgid "Unknown error" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:98 +msgid "Database credentials not found" +msgstr "データベースの認証情報がありません" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:103 +msgid "Error connecting to the specified host" +msgstr "指定したホストへの接続エラー" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:108 +msgid "Connected to the host, but cannot found the specified database" +msgstr "ホストへ接続しましたが、指定されたデータベースが見つかりません。" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:124 +#: ../../enterprise/include/ajax/metaconsole.ajax.php:151 +msgid "Server connection failed" +msgstr "サーバの接続に失敗しました。" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:129 +msgid "MR versions does not match" +msgstr "" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:145 +msgid "Last event replication" +msgstr "最新のイベント複製" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:163 +msgid "Agent cache activated" +msgstr "エージェントキャッシュが有効" + +#: ../../enterprise/include/ajax/metaconsole.ajax.php:168 +msgid "Agent cache failed" +msgstr "エージェントキャッシュが無効" + +#: ../../enterprise/include/ajax/transactional.ajax.php:174 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:179 +msgid "The phase does not have a defined script" +msgstr "フェーズは決まったスクリプトを持っていません" + +#: ../../enterprise/include/ajax/transactional.ajax.php:211 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:233 +msgid "Edit Data" +msgstr "データ編集" + +#: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 +msgid "Global time: " +msgstr "グローバルの時間: " + +#: ../../enterprise/include/class/AgentRepository.class.php:259 +#: ../../enterprise/include/class/DeploymentCenter.class.php:911 +msgid "Deploying" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:348 +#: ../../enterprise/include/class/AgentRepository.class.php:614 +#: ../../enterprise/include/class/AgentRepository.class.php:664 +#: ../../enterprise/include/class/DeploymentCenter.class.php:716 +#: ../../enterprise/include/class/DeploymentCenter.class.php:781 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1256 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 +msgid "Architecture" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:368 +msgid "Installation file" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:407 +msgid "Agent version is required" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:413 +#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +msgid "Target OS is required" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:415 +#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +msgid "Target architecture is required" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:422 +msgid "Cannot create target dir [" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:443 +#, php-format +msgid "Invalid installation file for %s" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:471 +msgid "Installation files not modified" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:492 +msgid "Installation files updated" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:495 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2307 +msgid "Agent successfully updated" +msgstr "エージェントを更新しました" + +#: ../../enterprise/include/class/AgentRepository.class.php:499 +msgid "You must provide installation files to create a new entry." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:519 +msgid "This agent has been already defined." +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:537 +msgid "Agent successfully registered and uploaded" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:574 +#: ../../enterprise/include/class/DeploymentCenter.class.php:334 +msgid "Target successfully deleted" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:616 +msgid "Uploaded by" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:617 +msgid "Upload date" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:696 +msgid "Add new software" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:883 +msgid "Add new Software agent" +msgstr "" + +#: ../../enterprise/include/class/AgentRepository.class.php:886 +msgid "Update Software agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:342 +#: ../../enterprise/include/class/Omnishell.class.php:214 +msgid "Please follow the wizard." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:355 +#: ../../enterprise/include/class/Omnishell.class.php:226 +msgid "You have no acess to edit this command." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:401 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:460 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:502 +msgid "Alert not found." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:489 +msgid "JSON decoding error. Please call support." +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:812 +msgid "Pass" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:813 +msgid "Drop" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:820 +#: ../../enterprise/include/functions_alert_event.php:1133 msgid "Module alert" msgstr "モジュールアラート" -#: ../../enterprise/include/functions_backup.php:135 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:858 +msgid "Days a week" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:910 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:940 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3153 +msgid "from" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:937 +msgid "Execute alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:960 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3171 +msgid "times in" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:970 +msgid "threshold" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:997 +msgid "Grouped by" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1045 +msgid "Available items" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1046 +msgid "Block" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1090 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:967 +msgid "Log content" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1095 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:970 +msgid "Log source" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1100 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:973 +msgid "Log agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1158 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:979 +msgid "Event content" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1163 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:976 +msgid "Event user comment" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1168 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:982 +msgid "Event agent" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1173 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:985 +msgid "Event module" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1178 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:988 +msgid "Event module alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1183 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:991 +msgid "Event group" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1188 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:994 +msgid "Event group Recursive" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1193 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:997 +msgid "Event severity" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1198 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1000 +msgid "Event tag" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1203 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1003 +msgid "Event user" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1232 +msgid "Operators" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1289 +msgid "Variables" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1301 +msgid "Doble click for assing value" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1308 +msgid "Modifiers" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1313 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1012 +msgid "Time window" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1388 +msgid "Rule definition" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1574 +#: ../../enterprise/include/functions_HA_cluster.php:64 +msgid "Cleanup" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1711 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1713 +msgid "Triggering Condition" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2023 +msgid "Every time that the alert is triggered" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2026 +msgid "Opions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2125 +msgid "There are no defined actions for this alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2185 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3150 +msgid "Number of alerts match" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2280 +msgid "" +"Select the desired action and mode to view the Triggering fields for this " +"action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2365 +msgid "Alerts fields" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2367 +msgid "Triggering fields configured in Alerts" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2445 +msgid "Correlated alerts" +msgstr "関連付け" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2468 +msgid "Alert succesfully deleted" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2477 +msgid "Alerts validated" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2480 +msgid "Failed to process validation" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2625 +msgid "Matched" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2648 +msgid "Sort elements" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2721 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2736 +msgid "Add Actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2916 +msgid "Are you sure you want to disable the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2922 +msgid "Are you sure you want to enable the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2929 +msgid "Disabled Alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2968 +msgid "Are you sure you want to standby the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2975 +msgid "Are you sure you want to activate the alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2983 +msgid "Standby Alert" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3054 +msgid "Delete Actions" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3230 +msgid "Successfully added action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3268 +msgid "Successfully delete action" +msgstr "" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3389 +msgid "Choosetime" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:92 +#: ../../enterprise/include/class/Azure.cloud.php:137 +msgid "Cloud message" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:280 +msgid "Recon" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:281 +msgid "Costs" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:283 +msgid "Instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:373 +msgid "Amazon EC2" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:378 +msgid "Amazon RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:421 +msgid "Recon task name" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:490 +msgid "Total cost" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:507 +msgid "Cost by region" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:521 +msgid "Cost interval" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:550 +#: ../../enterprise/include/class/Azure.cloud.php:852 +msgid "Scan and general monitoring." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:567 +#: ../../enterprise/include/class/Azure.cloud.php:865 +msgid "Cpu performance summary" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:577 +#: ../../enterprise/include/class/Azure.cloud.php:873 +msgid "IOPS performance summary" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:587 +#: ../../enterprise/include/class/Azure.cloud.php:881 +msgid "Disk performance summary" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:597 +#: ../../enterprise/include/class/Azure.cloud.php:889 +msgid "Network performance summary" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:621 +#: ../../enterprise/include/class/Aws.cloud.php:1159 +#: ../../enterprise/include/class/Azure.cloud.php:796 +msgid "No instances found." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:655 +msgid "Select EC2 instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:674 +msgid "Storage" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:684 +msgid "Elastic IP Adresses" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:867 +msgid "You must select at least one RDS instance." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:872 +msgid "" +"You cannot monitor RDS instances from different types. Please define several " +"tasks for several types." +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:879 +msgid "Discovery.Cloud.AWS.RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1045 +msgid "RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1050 +msgid "DB monitoring" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1060 +msgid "AWS RDS" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1119 +#: ../../enterprise/include/class/MySQL.app.php:474 +#: ../../enterprise/include/class/Oracle.app.php:472 +#: ../../enterprise/include/class/SAP.app.php:620 +#: ../../enterprise/include/class/VMware.app.php:656 +msgid "This group will be used also to classify discovered agents" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1134 +msgid "Global DB User" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1144 +msgid "Global DB password" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1228 +#: ../../enterprise/include/class/MySQL.app.php:581 +#: ../../enterprise/include/class/Oracle.app.php:562 +#: ../../enterprise/include/class/SAP.app.php:519 +#: ../../enterprise/include/class/SAPView.class.php:244 +#: ../../enterprise/include/class/SAPView.class.php:281 +#: ../../enterprise/include/class/VMware.app.php:586 +msgid "The minimum recomended interval is 5 minutes" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1234 +msgid "Select RDS instances" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1375 +#: ../../enterprise/include/class/Azure.cloud.php:344 +#, php-format +msgid "%s not found or not executable" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1591 +msgid "Cannot update the recon database" +msgstr "" + +#: ../../enterprise/include/class/Aws.cloud.php:1613 +msgid "Engine not supported" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:237 +msgid "Task details" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:238 +msgid "Instance explorer" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:239 +msgid "Metrics" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:296 +msgid "Microsoft Compute" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:572 +#: ../../enterprise/include/class/Azure.cloud.php:620 +msgid "Unauthorized access" +msgstr "" + +#: ../../enterprise/include/class/Azure.cloud.php:833 +msgid "Select target virtual machines" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:121 +msgid "The CSV file must have the fields in the following order:" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:122 +msgid "Agent alias, IP address, OS id, Interval, Group id, Description" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:177 +msgid "Alias as name" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:242 +msgid "No data or wrong separator" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:248 +#, php-format +msgid "Agent %s duplicated." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:255 +#, php-format +msgid "Id group %s doesn't exist in %s" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:263 +msgid "General failure." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:284 +msgid "No input file detected" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:373 +msgid "Agent processed successfully" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:379 +msgid "Some errors while processing CSV." +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:382 +msgid "All agents processed correctly" +msgstr "" + +#: ../../enterprise/include/class/CSVImportAgents.class.php:389 +#, php-format +msgid "Line %s" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:133 +#: ../../enterprise/include/class/DatabaseHA.class.php:237 +#: ../../enterprise/include/class/DatabaseHA.class.php:420 +#: ../../enterprise/include/class/DatabaseHA.class.php:429 +#: ../../enterprise/include/class/DatabaseHA.class.php:537 +#: ../../enterprise/include/class/DatabaseHA.class.php:546 +msgid "Error, please refresh page" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:138 +msgid "Action already scheduled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:144 +msgid "Unavailable action" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:156 +msgid "" +"A node is already being synchronized, please wait until process finish." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:168 +msgid "Please verify resync configuration is set before use this feature." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:186 +msgid "Successfully scheduled" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:216 +msgid "Uninitialized" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:472 +msgid "This is not a cluster node" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:476 +msgid "Failed to retrieve master position" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:489 +msgid "Failed to retrieve slave information" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:513 +msgid "Master" +msgstr "マスタ" + +#: ../../enterprise/include/class/DatabaseHA.class.php:515 +msgid "Slave" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:682 +msgid "Failed to update" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:709 +#: ../../enterprise/include/class/DatabaseHA.class.php:868 +msgid "DB Replication user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:716 +#: ../../enterprise/include/class/DatabaseHA.class.php:877 +msgid "DB Replication user password" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:723 +msgid "Resync data dir" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:730 +msgid "Resync tmp directory" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:737 +msgid "Resync MySQL user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:744 +msgid "Resync MySQL group" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:802 +msgid "IP or FQDN" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:803 +msgid "" +"This action only registers an already configured node. This action does not " +"configure any resource." +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:813 +msgid "Cluster node label (pcs)" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:821 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:463 +msgid "DB port" +msgstr "DB ポート" + +#: ../../enterprise/include/class/DatabaseHA.class.php:829 +msgid "SSH user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:837 +msgid "SSH port" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:845 +msgid "SSH key" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:853 +msgid "SSH public key" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:905 +msgid "Missed parameters" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:952 +msgid "You must specify a host" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:954 +msgid "DB port must be a positive integer" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:956 +msgid "SSH port must be a positive integer" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:958 +msgid "You must specify a SSH user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:960 +msgid "You must specify a replication DB user" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:962 +msgid "You must specify a replication DB pass" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:964 +msgid "You must specify a public key path" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:966 +msgid "You must specify a private path" +msgstr "" + +#: ../../enterprise/include/class/DatabaseHA.class.php:1016 +msgid "Successfully " +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +msgid "IP address is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +msgid "Credentials to use are required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +msgid "Desired agent version is required" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +msgid "Target already defined." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +msgid "Target successfully added" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +msgid "Target successfully updated" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:351 +msgid "You should specify a Discovery server" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:353 +msgid "You must select some targets to deploy" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:383 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 +msgid "Failed to schedule" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:398 +msgid "Deploy scheduled" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:424 +msgid "CSV file is needed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:580 +msgid "Deployment center" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:596 +msgid "There are no targets defined yet, please add some." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:603 +#, php-format +msgid "Please set %s to make software available for targets." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:616 +#: ../../enterprise/include/class/SAP.app.php:350 +msgid "here" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:615 +#, php-format +msgid "" +"There are no software agents in your repository yet, please add some %s." +msgstr "リポジトリにソフトウエアエージェントがありません。%s を追加してください。" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:634 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1696 +msgid "Scan for targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:643 +msgid "Add target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:652 +msgid "Load targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:717 +msgid "Key identifier" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:718 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1177 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1314 +msgid "Target server IP" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:719 +msgid "Agent version installed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:720 +msgid "Agent version desired" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:721 +msgid "Installation date" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:722 +msgid "Last error" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:767 +msgid "Server IP" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:792 +msgid "State" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:824 +msgid "Deploy agent to targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:997 +msgid "You must define a network." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:999 +msgid "You must select at least one credential to test." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1001 +msgid "You must select a Discovery server." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1003 +msgid "Please select a desired software agent version." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1005 +msgid "Please specify a server IP." +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1025 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1058 +msgid "Discovery task list" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1024 +#, php-format +msgid "This network is already being scanned. See progress at %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1057 +#, php-format +msgid "Network scheduled to be scanned. You can see progress at %s" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1090 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1093 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1220 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1223 +#: ../../enterprise/include/class/SAP.app.php:580 +#: ../../enterprise/include/class/SAP.app.php:583 +msgid "No credentials available" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1091 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1221 +#: ../../enterprise/include/class/SAP.app.php:581 +msgid "Manage credentials" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1105 +msgid "Network/mask" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1114 +msgid "Scan from" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1133 +msgid "Credentials to try with" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1167 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1304 +msgid "Desired agent version" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 +msgid "Target agent version" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1352 +msgid "Target server ip" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1371 +msgid "CSV file" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1431 +msgid "Select desired targets to be deployed" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1434 +msgid "Deploy from" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1449 +msgid "Available targets" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1624 +msgid "Add new target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1627 +msgid "Update target" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 +msgid "Import targets from CSV" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1697 +msgid "Scan" +msgstr "" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:1728 +msgid "Select targets" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:172 +msgid "" +"This MySQL configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:215 +msgid "You must provide a valid MySQL server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:220 +msgid "You must provide a valid port number." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:232 +msgid "Discovery.Application.MySQL" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:284 +msgid "Failed to find discovery MySQL task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:402 +#: ../../enterprise/include/class/Oracle.app.php:388 +#: ../../enterprise/include/class/SAP.app.php:315 +#: ../../enterprise/include/class/VMware.app.php:441 +msgid "Application" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:489 +msgid "MySQL server IP" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:490 +msgid "Comma separated, as many targets as you need." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:509 +msgid "MySQL server Port" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:654 +#: ../../enterprise/include/class/Oracle.app.php:635 +msgid "Target agent" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:655 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use server IP address/ FQDN." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:674 +#: ../../enterprise/include/class/Oracle.app.php:655 +msgid "Custom module prefix" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:675 +#: ../../enterprise/include/class/Oracle.app.php:656 +msgid "" +"Defines a custom prefix to be concatenated before module names generated by " +"this task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:696 +msgid "Scan databases" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:712 +msgid "Create agent per database" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:733 +msgid "Custom database agent prefix" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:734 +msgid "" +"Defines a custom prefix to be concatenated before database agent names " +"generated by this task." +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:755 +#: ../../enterprise/include/class/Oracle.app.php:674 +msgid "Check engine uptime" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:771 +#: ../../enterprise/include/class/Oracle.app.php:690 +msgid "Retrieve query statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:787 +#: ../../enterprise/include/class/Oracle.app.php:706 +msgid "Analyze connections" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:803 +msgid "Retrieve InnoDB statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:819 +#: ../../enterprise/include/class/Oracle.app.php:754 +msgid "Retrieve cache statistics" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:835 +#: ../../enterprise/include/class/Oracle.app.php:770 +msgid "Execute custom queries" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:887 +#: ../../enterprise/include/class/Oracle.app.php:924 +msgid "Custom queries" +msgstr "" + +#: ../../enterprise/include/class/MySQL.app.php:888 +#: ../../enterprise/include/class/Oracle.app.php:925 +msgid "Define here your custom queries." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:261 +msgid "Failed to save command." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:272 +msgid "Command not found." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:349 +#: ../../enterprise/include/class/Omnishell.class.php:610 +msgid "You must install php-yaml in order to use this feature." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:364 +msgid "Not Started" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:442 +msgid "Commands status" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:487 +msgid "Create command" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:506 +msgid "Selected command definitions will be erased" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:688 +msgid "Time out" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:697 +msgid "Retries " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:708 +msgid "Preconditions " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:709 +msgid "" +"All commands defined line per line must success to execute main commands" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:721 +msgid "Execute commands " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:722 +msgid "Define as many lines as commands you want to execute" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:734 +msgid "Postconditions " +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:735 +msgid "" +"All commands defined line per line must success to consider command success" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:856 +msgid "Remove agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:866 +msgid "Selected agents" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1105 +msgid "Selected command definition will be erased" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1190 +msgid "Command viewer" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1198 +msgid "Detailed view" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1339 +msgid "Not an array of ids" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1397 +msgid "There are no targets for this remote command" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1404 +msgid "Command does not exist" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1500 +msgid "success" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1503 +msgid "timed out" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1506 +msgid "failed" +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1522 +msgid "Waiting results..." +msgstr "" + +#: ../../enterprise/include/class/Omnishell.class.php:1541 +msgid "RCMD does not exist" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:165 +msgid "" +"This Oracle configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:207 +msgid "You must provide a valid Oracle server IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:219 +msgid "Discovery.Application.Oracle" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:272 +msgid "Failed to find discovery Oracle task." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:487 +msgid "Oracle target strings" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "" +"SERVER:PORT/SID, comma separated or line by line, as many targets as you " +"need." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:488 +msgid "Use # symbol to comment a line." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:636 +msgid "" +"Defines a target agent where this task will store data detected, if you have " +"defined multiple targets, define a comma separated list of names here or " +"leave in blank to use target as name." +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:722 +msgid "Calculate fragmentation ratio" +msgstr "" + +#: ../../enterprise/include/class/Oracle.app.php:738 +msgid "Monitor tablespaces" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:155 +msgid "" +"This SAP configuration has been already defined. Please edit it or create a " +"new one." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:196 +msgid "You must specify at last one SAP hostname." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:207 +msgid "Discovery.Application.SAP" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:263 +msgid "Failed to find discovery SAP task." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:270 +msgid "Select at least a module." +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:333 +msgid "SAP R3" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:526 +msgid "SAP Hostname" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:550 +msgid "SAP Client" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:563 +msgid "SAP System Number" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:593 +#: ../../enterprise/include/class/SAP.app.php:607 +msgid "SAP Credentials" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:593 +#: ../../enterprise/include/class/SAP.app.php:607 +msgid "Optional" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:708 +msgid "Average time of SAPGUI response" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:710 +msgid "Dialog Logged users" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:735 +msgid "Available modules" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:771 +msgid "Add monitors" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:783 +msgid "Remove monitors" +msgstr "" + +#: ../../enterprise/include/class/SAP.app.php:793 +msgid "Selected modules" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:146 +msgid "SAP data not found." +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:179 +msgid "SAP View" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:243 +msgid "Refresh Every" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:280 +msgid "Graph Interval" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:619 +msgid "" +"SAP view offers you to see the most important modules Discovery Server is " +"usually configured to retry. You have not configured a Discovery SAP R3 task " +"yet, please visit" +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:619 +msgid "to start monitoring your SAP infrastructure." +msgstr "" + +#: ../../enterprise/include/class/SAPView.class.php:626 +msgid "Discover SAP" +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:177 +msgid "Failed to connect" +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:229 +#, php-format +msgid "Unable to open public key file %s" +msgstr "" + +#: ../../enterprise/include/class/SSH.class.php:248 +msgid "Failed to login to target" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:207 +msgid "" +"This VMware configuration has been already defined. Please edit it or create " +"a new one." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:251 +msgid "You must provide a valid V-Center IP or FQDN." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:262 +msgid "Discovery.Application.VMware" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:326 +msgid "Failed to find discovery VMware task." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:341 +msgid "Threads must be equal or greater than 1." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:549 +msgid "Datacenter user" +msgstr "データセンターユーザ" + +#: ../../enterprise/include/class/VMware.app.php:600 +msgid "V-Center IP" +msgstr "V-Center IP" + +#: ../../enterprise/include/class/VMware.app.php:611 +msgid "Datacenter name" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:612 +msgid "" +"This name must match with the name wich appears when you log in you VMware " +"manager" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:642 +msgid "Encrypt passwords" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:759 +msgid "Max threads" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:768 +msgid "Re-scan interval" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:769 +msgid "Enables re-scan entities process every interval defined." +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:802 +msgid "Retry send" +msgstr "再送" + +#: ../../enterprise/include/class/VMware.app.php:812 +msgid "Event mode" +msgstr "イベントモード" + +#: ../../enterprise/include/class/VMware.app.php:822 +msgid "Virtual network monitoring" +msgstr "" + +#: ../../enterprise/include/class/VMware.app.php:847 +msgid "Extra settings" +msgstr "拡張設定" + +#: ../../enterprise/include/class/VMware.app.php:848 +msgid "This RAW block will be directly added to config file." +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:49 +msgid "Recover" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:52 +msgid "Promote" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:55 +msgid "Demote" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:67 +msgid "Resync" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:261 +msgid "Public Key Authentication Failed" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:268 +msgid "Connection failed" +msgstr "" + +#: ../../enterprise/include/functions_HA_cluster.php:491 +msgid "Register" +msgstr "登録" + +#: ../../enterprise/include/functions_HA_cluster.php:493 +msgid "Register new node" +msgstr "" + +#: ../../enterprise/include/functions_visual_map.php:203 +#: ../../enterprise/include/functions_visual_map.php:268 +msgid "Crit:" +msgstr "障害:" + +#: ../../enterprise/include/functions_visual_map.php:207 +#: ../../enterprise/include/functions_visual_map.php:272 +msgid "Warn:" +msgstr "警告:" + +#: ../../enterprise/include/functions_visual_map.php:211 +#: ../../enterprise/include/functions_visual_map.php:276 +msgid "Ok:" +msgstr "正常:" + +#: ../../enterprise/include/functions_visual_map.php:215 +#: ../../enterprise/include/functions_visual_map.php:280 +#: ../../enterprise/meta/include/functions_autoprovision.php:737 +msgid "Value:" +msgstr "値:" + +#: ../../enterprise/include/functions_visual_map.php:671 +msgid "None of the services was added" +msgstr "サービスが追加されませんでした" + +#: ../../enterprise/include/functions_visual_map.php:673 +#, php-format +msgid "%d services couldn't be added" +msgstr "%d サービスを追加できませんでした" + +#: ../../enterprise/include/functions_visual_map.php:679 +msgid "There was an error retrieving the visual map information" +msgstr "ビジュアルマップ情報の取得エラー" + +#: ../../enterprise/include/functions_visual_map.php:682 +msgid "No services selected" +msgstr "サービスが選択されていません" + +#: ../../enterprise/include/functions_aws.php:381 +msgid "$" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:491 +msgid "Current deployments" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:525 +msgid "Cost analysis" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:528 +msgid "Current cost estimation" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:530 +msgid "Previous period cost" +msgstr "" + +#: ../../enterprise/include/functions_aws.php:589 +msgid "Reservation status" +msgstr "" + +#: ../../enterprise/include/functions_backup.php:169 msgid "No description" msgstr "説明がありません" -#: ../../enterprise/include/functions_backup.php:242 -#: ../../enterprise/include/functions_backup.php:324 +#: ../../enterprise/include/functions_backup.php:292 msgid "Restoring a backup" msgstr "バックアップのリストア中" -#: ../../enterprise/include/functions_backup.php:244 -#: ../../enterprise/include/functions_backup.php:326 -msgid "Restoring a Pandora database backup must be done manually" -msgstr "Pandora データベースバックアップのリストは、手動実行する必要があります" +#: ../../enterprise/include/functions_backup.php:294 +#, php-format +msgid "Restoring a %s database backup must be done manually." +msgstr "" -#: ../../enterprise/include/functions_backup.php:245 -#: ../../enterprise/include/functions_backup.php:327 +#: ../../enterprise/include/functions_backup.php:295 msgid "" "It's a complex operation that needs human intervation to avoid system " "failures and data loosing" msgstr "システム不整合およびデータ消失を防ぐために、人よる操作が必要な複雑な作業です。" -#: ../../enterprise/include/functions_backup.php:246 -#: ../../enterprise/include/functions_backup.php:328 +#: ../../enterprise/include/functions_backup.php:296 msgid "To restore the selected backup, please follow these steps" msgstr "選択したバックアップをリストアするには、これらの手順に従ってください" -#: ../../enterprise/include/functions_backup.php:252 -#: ../../enterprise/include/functions_backup.php:334 +#: ../../enterprise/include/functions_backup.php:302 msgid "Open a root shell in your system located at " msgstr "次の場所にある root のシェルを開いてください: " -#: ../../enterprise/include/functions_backup.php:256 +#: ../../enterprise/include/functions_backup.php:306 msgid "Connect to MySQL database using the following command" msgstr "次のコマンドで MySQL データベースへ接続します" -#: ../../enterprise/include/functions_backup.php:263 +#: ../../enterprise/include/functions_backup.php:313 msgid "Create a new database" msgstr "新規データベースを作成します" -#: ../../enterprise/include/functions_backup.php:276 +#: ../../enterprise/include/functions_backup.php:330 msgid "Restore the backup" msgstr "バックアップをリストアします" -#: ../../enterprise/include/functions_backup.php:284 -#: ../../enterprise/include/functions_backup.php:349 +#: ../../enterprise/include/functions_backup.php:338 msgid "Modify console configuration to use this new database" msgstr "新たなデータベースを使うようにコンソール設定を修正します" -#: ../../enterprise/include/functions_backup.php:285 -#: ../../enterprise/include/functions_backup.php:350 +#: ../../enterprise/include/functions_backup.php:339 msgid "Open configuration file" msgstr "設定ファイルを開きます" -#: ../../enterprise/include/functions_backup.php:289 -#: ../../enterprise/include/functions_backup.php:301 -#: ../../enterprise/include/functions_backup.php:354 -#: ../../enterprise/include/functions_backup.php:366 +#: ../../enterprise/include/functions_backup.php:343 +#: ../../enterprise/include/functions_backup.php:355 msgid "Find" msgstr "以下をみつけ" -#: ../../enterprise/include/functions_backup.php:291 -#: ../../enterprise/include/functions_backup.php:304 -#: ../../enterprise/include/functions_backup.php:356 -#: ../../enterprise/include/functions_backup.php:369 +#: ../../enterprise/include/functions_backup.php:345 +#: ../../enterprise/include/functions_backup.php:358 msgid "and replace with" msgstr "次の通り書き換えます" -#: ../../enterprise/include/functions_backup.php:298 -#: ../../enterprise/include/functions_backup.php:363 +#: ../../enterprise/include/functions_backup.php:352 msgid "Modify servers configuration to use this new database" msgstr "新たなデータベースを使うようにサーバ設定を修正します" -#: ../../enterprise/include/functions_backup.php:299 -#: ../../enterprise/include/functions_backup.php:364 +#: ../../enterprise/include/functions_backup.php:353 msgid "Find servers configuration file and replace the following lines" msgstr "サーバ設定ファイルを見つけ、次の行を書き換えます" -#: ../../enterprise/include/functions_backup.php:311 -#: ../../enterprise/include/functions_backup.php:376 +#: ../../enterprise/include/functions_backup.php:365 msgid "Restart the servers and login again into the console" msgstr "サーバを再起動し、コンソールからログインしなおします" -#: ../../enterprise/include/functions_backup.php:341 -msgid "Run import command using the following command" -msgstr "次のコマンドを使って、インポートコマンドを実行します" +#: ../../enterprise/include/lib/AlertCorrelation.class.php:180 +msgid "There was a problem creating Alert" +msgstr "" -#: ../../enterprise/include/functions_backup.php:345 -msgid "Into your destination database." -msgstr "対象データベースに入ります。" +#: ../../enterprise/include/lib/AlertCorrelation.class.php:256 +msgid "There was a problem deleting Alert" +msgstr "" -#: ../../enterprise/include/functions_collection.php:42 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:707 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:721 +msgid "There was a problem creating Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:758 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:771 +msgid "There was a problem updating Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:807 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:821 +msgid "There was a problem deleting Action" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:862 +msgid "There was a problem standby alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:877 +msgid "There was a problem standby off alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:921 +msgid "There was a problem disabled alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:937 +msgid "There was a problem enabled alert" +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1397 +msgid "Failed to cleanup old rules." +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1406 +msgid "Failed to apply rule." +msgstr "" + +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1538 +msgid "any" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:203 +msgid "You do not have grants to access this feature" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:541 +msgid "There was a problem creating RCMD" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:686 +#: ../../enterprise/include/lib/RCMDFile.class.php:710 +msgid "There was a problem deleting RCMD" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:858 +msgid "No agent configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:866 +msgid "you don't have write permissions in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:907 +msgid "This agent is already a target" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:938 +#, php-format +msgid "You do not have grants to access in this agent %s" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1004 +msgid "There was a problem creating RCMD files" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1051 +msgid "There was a problem creating target" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1085 +msgid "There was a problem adding items in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1111 +#: ../../enterprise/include/lib/RCMDFile.class.php:1278 +msgid "No agent has been selected" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1144 +msgid "Target doesn't exist" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1216 +msgid "There was a problem deleting tokens in the configuration file" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1252 +msgid "There was a problem deleting target from DB" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1410 +msgid "Yaml is empty" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1419 +msgid "Doesn't have a valid YAML format" +msgstr "" + +#: ../../enterprise/include/lib/RCMDFile.class.php:1437 +#, php-format +msgid "%s field is not allowed" +msgstr "" + +#: ../../enterprise/include/functions_collection.php:47 #, php-format msgid "Fail create the directory: %s" msgstr "ディレクトリ作成に失敗しました: %s" -#: ../../enterprise/include/functions_collection.php:69 +#: ../../enterprise/include/functions_collection.php:73 msgid "No files in collection" msgstr "コレクションにファイルがありません" -#: ../../enterprise/include/functions_collection.php:77 +#: ../../enterprise/include/functions_collection.php:81 msgid "File of collection is bigger than the limit (" msgstr "ファイルコレクションが制限を越えています (" -#: ../../enterprise/include/functions_dashboard.php:408 +#: ../../enterprise/include/process_reset_pass.php:110 +#: ../../enterprise/meta/include/process_reset_pass.php:112 +msgid "Repeat password" +msgstr "パスワード(確認)" + +#: ../../enterprise/include/process_reset_pass.php:116 +#: ../../enterprise/meta/include/process_reset_pass.php:118 +msgid "Change password" +msgstr "パスワード変更" + +#: ../../enterprise/include/process_reset_pass.php:119 +#: ../../enterprise/meta/include/process_reset_pass.php:121 +#: ../../enterprise/meta/index.php:582 ../../index.php:769 +msgid "Passwords must be the same" +msgstr "パスワードは同じでなければいけません" + +#: ../../enterprise/include/process_reset_pass.php:127 +#: ../../enterprise/include/reset_pass.php:107 +#: ../../enterprise/meta/general/noaccess.php:17 +#: ../../enterprise/meta/include/process_reset_pass.php:129 +#: ../../enterprise/meta/include/reset_pass.php:105 +msgid "Back to login" +msgstr "ログインに戻る" + +#: ../../enterprise/include/functions_cron.php:174 +#: ../../enterprise/include/functions_cron.php:243 +#: ../../enterprise/include/functions_cron.php:280 +#: ../../enterprise/include/functions_cron.php:309 +#: ../../enterprise/include/functions_cron.php:353 +#: ../../enterprise/include/functions_cron.php:415 +msgid "Report to build" +msgstr "生成するレポート" + +#: ../../enterprise/include/functions_cron.php:182 +#: ../../enterprise/include/functions_cron.php:227 +#: ../../enterprise/operation/reporting/custom_reporting.php:96 +msgid "Send to emails (separated by comma)" +msgstr "メール送信 (カンマ区切り)" + +#: ../../enterprise/include/functions_cron.php:195 +msgid "Report Type" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:202 +#: ../../enterprise/include/functions_cron.php:331 +msgid "Template to build" +msgstr "作成するテンプレート" + +#: ../../enterprise/include/functions_cron.php:251 +#: ../../enterprise/include/functions_cron.php:265 +#: ../../enterprise/include/functions_cron.php:288 +#: ../../enterprise/include/functions_cron.php:354 +#: ../../enterprise/include/functions_cron.php:416 +msgid "Save to disk into path" +msgstr "保存先パス" + +#: ../../enterprise/include/functions_cron.php:252 +#: ../../enterprise/include/functions_cron.php:289 +msgid "The apache user should have read-write access on this folder. Ex: " +msgstr "apache ユーザはこのフォルダに読み書き権限が必要です。: " + +#: ../../enterprise/include/functions_cron.php:310 +#: ../../enterprise/include/functions_cron.php:332 +msgid "Send to email" +msgstr "送信先メールアドレス" + +#: ../../enterprise/include/functions_cron.php:311 +msgid "Send custom report by email" +msgstr "カスタムレポートをメールで送信" + +#: ../../enterprise/include/functions_cron.php:333 +msgid "Send custom report (from template) by email" +msgstr "(テンプレートから) email でカスタムレポートを送信" + +#: ../../enterprise/include/functions_cron.php:355 +#: ../../enterprise/include/functions_cron.php:417 +msgid "Save custom report to disk" +msgstr "カスタムレポートをディスクに保存" + +#: ../../enterprise/include/functions_cron.php:375 +msgid "Backup Pandora database" +msgstr "Pandora データベースバックアップ" + +#: ../../enterprise/include/functions_cron.php:395 +msgid "Execute custom script" +msgstr "カスタムスクリプト実行" + +#: ../../enterprise/include/functions_cron.php:418 +msgid "Save custom xml report to disk" +msgstr "カスタム XML レポートをディスクへ保存" + +#: ../../enterprise/include/functions_cron.php:464 +msgid "Not scheduled" +msgstr "スケジュールされていません" + +#: ../../enterprise/include/functions_cron.php:469 +msgid "Yearly" +msgstr "年次" + +#: ../../enterprise/include/functions_cron.php:757 +#: ../../enterprise/include/functions_cron.php:781 +#: ../../enterprise/operation/reporting/custom_reporting.php:107 +#: ../../enterprise/operation/reporting/custom_reporting.php:115 +msgid "This is an optional field" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1162 +#: ../../enterprise/include/functions_cron.php:1330 +msgid "Greetings" +msgstr "挨拶" + +#: ../../enterprise/include/functions_cron.php:1164 +#: ../../enterprise/include/functions_cron.php:1332 +msgid "Attached to this email there's a PDF file of the" +msgstr "" + +#: ../../enterprise/include/functions_cron.php:1165 +#: ../../enterprise/include/functions_cron.php:1333 +msgid "report" +msgstr "レポート" + +#: ../../enterprise/include/functions_cron.php:1170 +#: ../../enterprise/include/functions_cron.php:1338 +msgid "Thanks for your time." +msgstr "お時間いただきありがとうございます。" + +#: ../../enterprise/include/functions_cron.php:1172 +#: ../../enterprise/include/functions_cron.php:1340 +msgid "Best regards, Pandora FMS" +msgstr "よろしくお願いします。Pandora FMS" + +#: ../../enterprise/include/functions_cron.php:1174 +#: ../../enterprise/include/functions_cron.php:1342 +msgid "" +"This is an automatically generated email from Pandora FMS, please do not " +"reply." +msgstr "これは、Pandora FMS から自動生成されたメールです。返信しないでください。" + +#: ../../enterprise/include/functions_cron.php:1870 +#: ../../enterprise/include/functions_cron.php:1880 +#: ../../enterprise/include/functions_cron.php:1889 +msgid "Error while executing task: " +msgstr "" + +#: ../../enterprise/include/reset_pass.php:96 +#: ../../enterprise/meta/include/reset_pass.php:94 +msgid "User to reset password" +msgstr "パスワードリセットするユーザ" + +#: ../../enterprise/include/reset_pass.php:100 +#: ../../enterprise/meta/include/reset_pass.php:98 +#: ../../enterprise/meta/index.php:655 ../../index.php:835 +msgid "Reset password" +msgstr "パスワードをリセット" + +#: ../../enterprise/include/reset_pass.php:158 +#: ../../enterprise/include/reset_pass.php:161 +#: ../../enterprise/meta/include/reset_pass.php:141 +#: ../../enterprise/meta/include/reset_pass.php:144 +msgid "Reset password failed" +msgstr "パスワードのリセットに失敗" + +#: ../../enterprise/include/functions_dashboard.php:514 #, php-format msgid "Copy of %s" msgstr "%s のコピー" -#: ../../enterprise/include/functions_dashboard.php:822 +#: ../../enterprise/include/functions_dashboard.php:990 msgid "Change every" msgstr "変更周期" -#: ../../enterprise/include/functions_dashboard.php:838 -#: ../../enterprise/operation/agentes/transactional_map.php:307 +#: ../../enterprise/include/functions_dashboard.php:1006 +#: ../../enterprise/operation/agentes/transactional_map.php:365 msgid "Stop" msgstr "停止" -#: ../../enterprise/include/functions_dashboard.php:845 +#: ../../enterprise/include/functions_dashboard.php:1014 msgid "Pause" msgstr "一時停止" -#: ../../enterprise/include/functions_enterprise.php:298 +#: ../../enterprise/include/functions_enterprise.php:325 msgid "Tree view by tags" msgstr "タグごとのツリー表示" -#: ../../enterprise/include/functions_enterprise.php:321 +#: ../../enterprise/include/functions_enterprise.php:355 msgid "" "If the interval of days until events data purge is shorter than the events " "data history storage interval, data will be lost. It is recommended that the " "storage frequency is higher than the purge frequency." msgstr "" +"イベントデータ削除までの日数がヒストリデータベースへの保存タイミングより短い場合はデータが失われます。ヒストリデータベースへの保存は、データ削除タイミング" +"より前にしてください。" -#: ../../enterprise/include/functions_enterprise.php:323 +#: ../../enterprise/include/functions_enterprise.php:357 msgid "" "Problems with event days purge and event days that pass data to history DB." msgstr "イベントの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" -#: ../../enterprise/include/functions_enterprise.php:331 +#: ../../enterprise/include/functions_enterprise.php:368 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 " @@ -34556,230 +42688,675 @@ msgstr "" "ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失します。データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてく" "ださい。" -#: ../../enterprise/include/functions_enterprise.php:333 +#: ../../enterprise/include/functions_enterprise.php:370 msgid "Problems with days purge and days that pass data to history DB" msgstr "データの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" -#: ../../enterprise/include/functions_visual_map.php:182 -#: ../../enterprise/include/functions_visual_map.php:235 -msgid "Crit:" -msgstr "障害:" +#: ../../enterprise/include/functions_services.php:27 +msgid "There is no information about" +msgstr "次に関する情報がありません:" -#: ../../enterprise/include/functions_visual_map.php:184 -#: ../../enterprise/include/functions_visual_map.php:237 -msgid "Warn:" -msgstr "警告:" +#: ../../enterprise/include/functions_services.php:32 +msgid "Service does not exist." +msgstr "サービスがありません。" -#: ../../enterprise/include/functions_visual_map.php:186 -#: ../../enterprise/include/functions_visual_map.php:239 -msgid "Ok:" -msgstr "正常:" +#: ../../enterprise/include/functions_services.php:44 +msgid "module that stores the service" +msgstr "サービスを保存しているモジュール" -#: ../../enterprise/include/functions_visual_map.php:188 -#: ../../enterprise/include/functions_visual_map.php:241 -#: ../../enterprise/meta/include/functions_autoprovision.php:653 -msgid "Value:" -msgstr "値:" +#: ../../enterprise/include/functions_services.php:56 +msgid "module that stores SLA service" +msgstr "SLA サービスを保存しているモジュール" -#: ../../enterprise/include/functions_visual_map.php:615 -msgid "None of the services was added" -msgstr "サービスが追加されませんでした" +#: ../../enterprise/include/functions_services.php:69 +msgid "agent that stores the service" +msgstr "サービスを保存しているエージェント" -#: ../../enterprise/include/functions_visual_map.php:618 +#: ../../enterprise/include/functions_services.php:82 +msgid "agent that stores SLA service" +msgstr "SLA サービスを保存しているエージェント" + +#: ../../enterprise/include/functions_services.php:103 +msgid "alert critical SLA service" +msgstr "SLA サービスの障害アラート" + +#: ../../enterprise/include/functions_services.php:124 +msgid "alert warning service" +msgstr "サービスの警告アラート" + +#: ../../enterprise/include/functions_services.php:145 +msgid "alert critical service" +msgstr "サービスの障害アラート" + +#: ../../enterprise/include/functions_services.php:166 +msgid "alert unknown service" +msgstr "サービスの不明アラート" + +#: ../../enterprise/include/functions_services.php:576 #, php-format -msgid "%d services couldn't be added" -msgstr "%d サービスを追加できませんでした" +msgid "Module automatic create for the service %s" +msgstr "サービス %s のモジュール自動生成" -#: ../../enterprise/include/functions_visual_map.php:626 -msgid "There was an error retrieving the visual map information" -msgstr "ビジュアルマップ情報の取得エラー" +#: ../../enterprise/include/functions_services.php:2248 +#: ../../enterprise/include/functions_services.php:2250 +#: ../../enterprise/include/functions_services.php:2280 +#: ../../enterprise/include/functions_services.php:2281 +#: ../../enterprise/include/functions_services.php:2283 +#: ../../enterprise/include/functions_services.php:2326 +#: ../../enterprise/include/functions_services.php:2328 +#: ../../enterprise/include/functions_reporting.php:5367 +msgid "Nonexistent" +msgstr "なし" -#: ../../enterprise/include/functions_visual_map.php:630 -msgid "No services selected" -msgstr "サービスが選択されていません" +#: ../../enterprise/include/functions_services.php:2308 +msgid "Critical (Alert)" +msgstr "障害 (アラート)" -#: ../../enterprise/include/functions_events.php:164 -#: ../../enterprise/include/functions_reporting_csv.php:1561 +#: ../../enterprise/include/functions_services.php:2441 +msgid "There are no service elements defined" +msgstr "サービス要素が定義されていません" + +#: ../../enterprise/include/functions_services.php:2471 +msgid "Weight Critical" +msgstr "障害ウエイト" + +#: ../../enterprise/include/functions_services.php:2472 +msgid "Weight Warning" +msgstr "警告ウエイト" + +#: ../../enterprise/include/functions_services.php:2473 +msgid "Weight Unknown" +msgstr "不明ウエイト" + +#: ../../enterprise/include/functions_services.php:2474 +msgid "Weight Ok" +msgstr "正常ウエイト" + +#: ../../enterprise/include/functions_services.php:2504 +#: ../../enterprise/include/functions_services.php:2526 +#: ../../enterprise/include/functions_services.php:2565 +msgid "Nonexistent. This element should be deleted" +msgstr "存在しません。要素が削除されています。" + +#: ../../enterprise/include/functions_services.php:2589 +msgid "This element does not affect service weigth because is disabled." +msgstr "" + +#: ../../enterprise/include/functions_services.php:2691 +msgid "NOT INITIALIZED" +msgstr "" + +#: ../../enterprise/include/functions_services.php:2746 +msgid "Delete service element" +msgstr "サービス要素削除" + +#: ../../enterprise/include/functions_services.php:2805 +msgid "FAIL" +msgstr "失敗" + +#: ../../enterprise/include/functions_enterprise_api.php:902 +#: ../../enterprise/include/functions_enterprise_api.php:960 +msgid "Not sent id agent to migrate" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:909 +msgid "Not sent id source node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:915 +msgid "Not sent id target node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:920 +msgid "Not sent id source node and not sent id target node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:933 +#: ../../enterprise/include/functions_enterprise_api.php:966 +#: ../../enterprise/include/functions_enterprise_api.php:2307 +msgid "Is not metaconsole" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:995 +#: ../../enterprise/include/functions_enterprise_api.php:1231 +#: ../../enterprise/include/functions_enterprise_api.php:1425 +#: ../../enterprise/include/functions_enterprise_api.php:1599 +#: ../../enterprise/include/functions_enterprise_api.php:1819 +#: ../../enterprise/include/functions_enterprise_api.php:1950 +#: ../../enterprise/include/functions_enterprise_api.php:2234 +#: ../../enterprise/include/functions_enterprise_api.php:2569 +#: ../../enterprise/include/functions_enterprise_api.php:2768 +#: ../../enterprise/include/functions_enterprise_api.php:2983 +msgid "There is no policy with such id" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:1868 +msgid "Module id is empty" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:1874 +msgid "There is no module with such id" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2241 +msgid "There is no alert with such id in this policy" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:2632 +#: ../../enterprise/include/functions_enterprise_api.php:2666 +msgid "Error adding agent to policy. Id_policy cannot be left blank." +msgstr "ポリシーへのエージェント追加エラー。id_policyが指定されていません。" + +#: ../../enterprise/include/functions_enterprise_api.php:2637 +msgid "Error adding agent to policy. Id_agent cannot be left blank." +msgstr "ポリシーへのエージェント追加エラー。id_agentが指定されていません。" + +#: ../../enterprise/include/functions_enterprise_api.php:2643 +msgid "Error adding agent to policy. Node ID cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3058 +msgid "Error applying policy. Id_policy cannot be left blank." +msgstr "ポリシー適用エラー。id_policy が指定されていません。" + +#: ../../enterprise/include/functions_enterprise_api.php:3064 +msgid "Error applying policy. Id_nodo cannot be left blank." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3071 +msgid "There is no policy with such id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3091 +msgid "There is no agent with such id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3117 +msgid "This policy does not have this agent id." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3130 +msgid "There is no agent with such name." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3156 +msgid "This policy does not have this agent." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3172 +msgid "There are no agents with such alias." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3204 +msgid "This policy does not have these agents." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3219 +#: ../../enterprise/include/functions_enterprise_api.php:3234 +msgid "Error applying policy." +msgstr "ポリシー適用エラー。" + +#: ../../enterprise/include/functions_enterprise_api.php:3226 +msgid "Error applying policy. This policy is already pending to apply." +msgstr "ポリシー適用エラー。このポリシーは適用が保留されています。" + +#: ../../enterprise/include/functions_enterprise_api.php:3266 +#: ../../enterprise/include/functions_enterprise_api.php:3320 +#, php-format +msgid "%d agents added to apply queue." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3289 +#: ../../enterprise/include/functions_policies.php:4986 +#, php-format +msgid "Successfully applied to node %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3291 +#: ../../enterprise/include/functions_policies.php:4988 +#, php-format +msgid "Successfully applied to nodes: %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3330 +#, php-format +msgid "Id policy %d already pending to apply." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3332 +#, php-format +msgid "Id policy %d already pending to apply in Id agent %d." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3384 +msgid "Error applying all policies." +msgstr "全ポリシーの適用エラー。" + +#: ../../enterprise/include/functions_enterprise_api.php:3438 +msgid "Cannot reach the node" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3460 +#, php-format +msgid "Node error: %s." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3474 +#, php-format +msgid "Invalid value %d on first other parameter" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3707 +msgid "The module is already in the policy." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3744 +#: ../../enterprise/include/functions_enterprise_api.php:3780 +msgid "" +"Error adding web analysis module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for web analysis modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3756 +msgid "" +"Error adding network module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for network modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3768 +msgid "" +"Error adding web module to policy. \n" +"\t\t\t\t\t\tId_module_type is not correct for web modules." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:3795 +msgid "" +"Error adding module to policy.\n" +"\t\t\t\t\tconfiguration_data is not correct base64." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:4266 +#: ../../enterprise/include/functions_enterprise_api.php:4318 +#: ../../enterprise/include/functions_enterprise_api.php:4371 +msgid "Error getting inventory modules" +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5261 +#, php-format +msgid "Error updating user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5263 +#, php-format +msgid "Updated user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5273 +#, php-format +msgid "Error creating user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5275 +#, php-format +msgid "Created user %s " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5476 +#, php-format +msgid "" +"There are groups that not exist in node. The followings elements " +"groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5489 +#, php-format +msgid "" +"Error creating/updating the followings elements groups/profiles/user " +"profiles (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5505 +#, php-format +msgid "" +"The followings elements groups/profiles/user profiles were created/updated " +"sucessfully (%d/%d/%d) " +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5684 +msgid "Error adding agent to policy. Agent does not exist." +msgstr "" + +#: ../../enterprise/include/functions_enterprise_api.php:5696 +msgid "Error adding agent to policy." +msgstr "ポリシーへのエージェント追加エラー。" + +#: ../../enterprise/include/functions_enterprise_api.php:5703 +msgid "Error adding agent to policy. The agent is already in the policy." +msgstr "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあります。" + +#: ../../enterprise/include/functions_events.php:219 +msgid "Id source events" +msgstr "" + +#: ../../enterprise/include/functions_events.php:230 +#: ../../enterprise/include/functions_reporting_csv.php:1876 msgid "Hours" msgstr "時間" -#: ../../enterprise/include/functions_events.php:177 -#: ../../enterprise/include/functions_events.php:194 +#: ../../enterprise/include/functions_events.php:245 +#: ../../enterprise/include/functions_events.php:267 msgid "More than 5 tags" -msgstr "" +msgstr "5タグ以上" -#: ../../enterprise/include/functions_groups.php:47 +#: ../../enterprise/include/functions_groups.php:49 msgid "Metaconsole" msgstr "メタコンソール" -#: ../../enterprise/include/functions_inventory.php:54 -#: ../../enterprise/include/functions_inventory.php:639 +#: ../../enterprise/include/functions_hostdevices.php:44 +msgid "SNMP enabled" +msgstr "SNMP 有効化" + +#: ../../enterprise/include/functions_hostdevices.php:84 +msgid "SNMP Default community" +msgstr "SNMP デフォルトコミュニティ" + +#: ../../enterprise/include/functions_hostdevices.php:86 +msgid "" +"You can specify several values, separated by commas, for example: " +"public,mysecret,1234" +msgstr "カンマ区切りで複数の値を指定できます。例: public,mysecret,1234" + +#: ../../enterprise/include/functions_hostdevices.php:213 +msgid "WMI enabled" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:230 +msgid "WMI Auth. strings" +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:232 +msgid "" +"Auth strings must be defined as user%pass, comma separated as many you need." +msgstr "" + +#: ../../enterprise/include/functions_hostdevices.php:248 +msgid "OS detection" +msgstr "OSの検出" + +#: ../../enterprise/include/functions_hostdevices.php:260 +msgid "Name resolution" +msgstr "名前解決" + +#: ../../enterprise/include/functions_hostdevices.php:271 +msgid "Parent detection" +msgstr "親の検出" + +#: ../../enterprise/include/functions_hostdevices.php:282 +msgid "Parent recursion" +msgstr "親の再帰検出" + +#: ../../enterprise/include/functions_hostdevices.php:293 +msgid "VLAN enabled" +msgstr "" + +#: ../../enterprise/include/functions_inventory.php:66 +#: ../../enterprise/include/functions_inventory.php:698 msgid "No changes found" msgstr "変更がありません" -#: ../../enterprise/include/functions_inventory.php:64 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:352 -msgid "Agent alias" -msgstr "エージェントの別名" - -#: ../../enterprise/include/functions_inventory.php:80 +#: ../../enterprise/include/functions_inventory.php:92 msgid "Get CSV file" msgstr "CSV ファイルを取得" -#: ../../enterprise/include/functions_license.php:49 +#: ../../enterprise/include/functions_license.php:119 msgid "Client" msgstr "正規" -#: ../../enterprise/include/functions_license.php:49 -msgid "Trial" -msgstr "試用" +#: ../../enterprise/include/functions_license.php:119 +msgid "Subscription" +msgstr "" -#: ../../enterprise/include/functions_local_components.php:142 +#: ../../enterprise/include/functions_license.php:120 +msgid "Expires" +msgstr "有効期限" + +#: ../../enterprise/include/functions_setup.php:53 +#: ../../enterprise/include/functions_setup.php:95 +msgid "Log collector" +msgstr "ログ収集" + +#: ../../enterprise/include/functions_setup.php:121 +msgid "Metaconsole link status" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:153 +msgid "DB connection" +msgstr "" + +#: ../../enterprise/include/functions_setup.php:162 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:620 +msgid "Agent cache" +msgstr "エージェントキャッシュ" + +#: ../../enterprise/include/functions_setup.php:175 +msgid "This console is joining a metaconsole." +msgstr "" + +#: ../../enterprise/include/functions_setup.php:183 +msgid "This console is not joining any metaconsole." +msgstr "" + +#: ../../enterprise/include/functions_local_components.php:175 msgid "Empty configuration" msgstr "設定が空です" -#: ../../enterprise/include/functions_local_components.php:146 +#: ../../enterprise/include/functions_local_components.php:180 msgid "Empty OS" msgstr "OS が空です" -#: ../../enterprise/include/functions_log.php:369 +#: ../../enterprise/include/functions_log.php:381 msgid "Lines" msgstr "行" -#: ../../enterprise/include/functions_login.php:21 +#: ../../enterprise/include/functions_login.php:22 msgid "You must change password:" msgstr "パスワードを変更する必要があります:" -#: ../../enterprise/include/functions_login.php:37 +#: ../../enterprise/include/functions_login.php:38 msgid "Password must be different from the 3 previous changes." msgstr "パスワードは 3つ前までと異なる必要があります。" -#: ../../enterprise/include/functions_login.php:47 +#: ../../enterprise/include/functions_login.php:50 msgid "Old pass: " msgstr "旧パスワード: " -#: ../../enterprise/include/functions_login.php:50 +#: ../../enterprise/include/functions_login.php:53 msgid "New pass: " msgstr "新パスワード: " -#: ../../enterprise/include/functions_login.php:54 +#: ../../enterprise/include/functions_login.php:57 msgid "Confirm: " msgstr "確認: " -#: ../../enterprise/include/functions_login.php:60 +#: ../../enterprise/include/functions_login.php:63 msgid "Change" msgstr "変更" -#: ../../enterprise/include/functions_login.php:91 +#: ../../enterprise/include/functions_login.php:97 msgid "Login blocked" -msgstr "" +msgstr "ログインできませんでした" -#: ../../enterprise/include/functions_login.php:99 +#: ../../enterprise/include/functions_login.php:105 msgid "User has been blocked. Try again in " msgstr "ユーザがブロックされました。次の時間経過後に再度試してください: " -#: ../../enterprise/include/functions_login.php:99 +#: ../../enterprise/include/functions_login.php:105 msgid " minutes" msgstr " 分" -#: ../../enterprise/include/functions_login.php:128 +#: ../../enterprise/include/functions_login.php:138 msgid "Login successfully" -msgstr "" +msgstr "ログインしました" -#: ../../enterprise/include/functions_login.php:135 +#: ../../enterprise/include/functions_login.php:145 msgid "Successfully" -msgstr "" +msgstr "正常終了" -#: ../../enterprise/include/functions_login.php:136 +#: ../../enterprise/include/functions_login.php:146 msgid "User pass successfully updated" msgstr "パスワードを更新しました" -#: ../../enterprise/include/functions_login.php:237 +#: ../../enterprise/include/functions_login.php:252 msgid "Password must be different from the " msgstr "パスワードは、次と異なっている必要があります: " -#: ../../enterprise/include/functions_login.php:237 +#: ../../enterprise/include/functions_login.php:252 msgid " previous changes." msgstr " 回前までの変更" -#: ../../enterprise/include/functions_login.php:251 +#: ../../enterprise/include/functions_login.php:265 msgid "Password must be different" msgstr "パスワードは違うものでなければいけません" -#: ../../enterprise/include/functions_login.php:261 +#: ../../enterprise/include/functions_login.php:276 msgid "Password too short" msgstr "パスワードが短すぎます" -#: ../../enterprise/include/functions_login.php:272 -msgid "Password must contain numbers" -msgstr "パスワードには数字を含めなければいけません" - -#: ../../enterprise/include/functions_login.php:284 -msgid "Password must contain symbols" -msgstr "パスワードには記号を含めなければいけません" - -#: ../../enterprise/include/functions_login.php:304 +#: ../../enterprise/include/functions_login.php:324 msgid "Invalid old password" msgstr "旧パスワードが不正です" -#: ../../enterprise/include/functions_login.php:339 +#: ../../enterprise/include/functions_login.php:357 msgid "Password confirm does not match" msgstr "パスワード確認が一致しません" -#: ../../enterprise/include/functions_login.php:347 +#: ../../enterprise/include/functions_login.php:364 msgid "Password empty" msgstr "パスワードが空です" -#: ../../enterprise/include/functions_netflow_pdf.php:45 -#: ../../enterprise/include/functions_reporting_pdf.php:51 -msgid "Automated Pandora FMS report for user defined report" -msgstr "ユーザ定義レポートの Pandora FMS による自動生成" +#: ../../enterprise/include/functions_metaconsole.php:2726 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:133 +msgid "Target server ip address is set" +msgstr "対象サーバ IP アドレス設定" -#: ../../enterprise/include/functions_netflow_pdf.php:56 -#: ../../enterprise/include/functions_reporting_pdf.php:2271 -msgid "Contents" -msgstr "目次" +#: ../../enterprise/include/functions_metaconsole.php:2733 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:129 +msgid "There are differences between MR versions" +msgstr "MR バージョンに違いがあります" -#: ../../enterprise/include/functions_netflow_pdf.php:160 -#: ../../enterprise/operation/log/log_viewer.php:231 -msgid "Start date" -msgstr "開始日時" +#: ../../enterprise/include/functions_metaconsole.php:2740 +msgid "Agent alerts action does not exist in target node" +msgstr "" -#: ../../enterprise/include/functions_policies.php:3214 +#: ../../enterprise/include/functions_metaconsole.php:2747 +msgid "Agent alerts template does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2754 +msgid "Agent inventory does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2761 +msgid "Exists agent conf please remove configuration file from target node." +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2768 +msgid "Agent collections does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2775 +msgid "Agent plugins does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2782 +msgid "" +"Agent policies definitions does not match with defined ones in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2789 +msgid "Agent group does not exist in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2796 +msgid "Agent already exists in target node" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2820 +msgid "The agent: has not been added due to problems in the insertion" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2825 +msgid "The agent: has already been added to the migration queue" +msgstr "" + +#: ../../enterprise/include/functions_metaconsole.php:2903 +msgid "Cannot " +msgstr "" + +#: ../../enterprise/include/functions_networkmap.php:934 +msgid "Map not found." +msgstr "" + +#: ../../enterprise/include/functions_update_manager.php:186 +#: ../../enterprise/include/functions_update_manager.php:391 +#, php-format +msgid "There is a error: %s" +msgstr "エラーがあります: %s" + +#: ../../enterprise/include/functions_update_manager.php:197 +#, php-format +msgid "There are %s updates, and the first to update is:" +msgstr "%s 件の更新があります。最初の更新は次の通りです:" + +#: ../../enterprise/include/functions_update_manager.php:206 +msgid "Version number:" +msgstr "バージョン番号:" + +#: ../../enterprise/include/functions_update_manager.php:207 +msgid "Show details" +msgstr "詳細表示" + +#: ../../enterprise/include/functions_update_manager.php:642 +#: ../../enterprise/include/functions_update_manager.php:672 +#, php-format +msgid "Line '%s' not copied to the progress file." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:3519 msgid "Policy linkation" msgstr "ポリシーリンク" -#: ../../enterprise/include/functions_policies.php:3219 +#: ../../enterprise/include/functions_policies.php:3524 msgid "Module linked" msgstr "リンク済モジュール" -#: ../../enterprise/include/functions_policies.php:3221 -#: ../../enterprise/include/functions_policies.php:3231 +#: ../../enterprise/include/functions_policies.php:3526 +#: ../../enterprise/include/functions_policies.php:3538 msgid "Unlink from policy" msgstr "ポリシーからリンクを外す" -#: ../../enterprise/include/functions_policies.php:3224 +#: ../../enterprise/include/functions_policies.php:3530 msgid "Module unlinked" msgstr "未リンクモジュール" -#: ../../enterprise/include/functions_policies.php:3226 -#: ../../enterprise/include/functions_policies.php:3236 +#: ../../enterprise/include/functions_policies.php:3532 +#: ../../enterprise/include/functions_policies.php:3544 msgid "Relink to policy" msgstr "ポリシーへの再リンク" -#: ../../enterprise/include/functions_policies.php:3229 +#: ../../enterprise/include/functions_policies.php:3536 msgid "Module pending to link" msgstr "リンク待ちモジュール" -#: ../../enterprise/include/functions_policies.php:3234 +#: ../../enterprise/include/functions_policies.php:3542 msgid "Module pending to unlink" msgstr "リンク解除待ちモジュール" -#: ../../enterprise/include/functions_policies.php:3960 +#: ../../enterprise/include/functions_policies.php:4036 msgid "Create a new policy map" msgstr "新規ポリシーマップ作成" -#: ../../enterprise/include/functions_policies.php:4279 +#: ../../enterprise/include/functions_policies.php:4381 #, php-format msgid "" "This extension makes registration of policies enterprise.
    You can get " @@ -34788,924 +43365,875 @@ msgstr "" "この拡張は、Enterprise ポリシーを登録します。
    追加のポリシーは我々のリソースライブラリから入手できます。" -#: ../../enterprise/include/functions_reporting.php:42 +#: ../../enterprise/include/functions_policies.php:4431 +#: ../../enterprise/include/functions_policies.php:4439 +#: ../../enterprise/include/functions_policies.php:5033 +msgid "This will not produce any action." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4496 +#: ../../enterprise/include/functions_policies.php:5062 +#, php-format +msgid "Error connecting with node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4505 +#: ../../enterprise/include/functions_policies.php:5071 +#, php-format +msgid "Policy does not exist in node %s. Error creating it." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4511 +#: ../../enterprise/include/functions_policies.php:5077 +#, php-format +msgid "" +"This policy exist in node %s with other name (%s). Change the name to '%s' " +"to apply the policy." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4523 +#: ../../enterprise/include/functions_policies.php:5089 +#, php-format +msgid "This policy is being applied on node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4538 +#, php-format +msgid "Error syncronizing the agents to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4551 +#, php-format +msgid "Error syncronizing the groups to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4564 +#, php-format +msgid "Error syncronizing the modules to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4580 +#, php-format +msgid "Error syncronizing the alerts to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4590 +#, php-format +msgid "Error syncronizing the alert actions to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4604 +#, php-format +msgid "Error syncronizing the inventory modules to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4617 +#, php-format +msgid "Error syncronizing the plugins to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4631 +#, php-format +msgid "Error syncronizing the collections to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:4640 +#, php-format +msgid "Error adding the queue to node %s." +msgstr "" + +#: ../../enterprise/include/functions_policies.php:5127 +msgid "Error syncronizing ." +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:46 msgid "Advance options" msgstr "拡張オプション" -#: ../../enterprise/include/functions_reporting.php:60 +#: ../../enterprise/include/functions_reporting.php:67 msgid "Templates list" msgstr "テンプレート一覧" -#: ../../enterprise/include/functions_reporting.php:66 -#: ../../enterprise/meta/general/main_header.php:165 +#: ../../enterprise/include/functions_reporting.php:74 +#: ../../enterprise/meta/general/main_header.php:191 msgid "Templates wizard" msgstr "テンプレートウィザード" -#: ../../enterprise/include/functions_reporting.php:86 +#: ../../enterprise/include/functions_reporting.php:102 msgid "Templates Wizard" msgstr "テンプレートウィザード" -#: ../../enterprise/include/functions_reporting.php:1019 +#: ../../enterprise/include/functions_reporting.php:1077 msgid "Availability item created from wizard." msgstr "ウィザードから作成された可用性アイテム" -#: ../../enterprise/include/functions_reporting.php:1686 -#: ../../enterprise/include/functions_reporting.php:2494 -#: ../../enterprise/include/functions_reporting.php:3271 -#: ../../enterprise/include/functions_reporting_pdf.php:1734 +#: ../../enterprise/include/functions_reporting.php:1726 +#: ../../enterprise/include/functions_reporting.php:2663 +#: ../../enterprise/include/functions_reporting.php:3656 msgid "Planned Downtimes" msgstr "計画停止" -#: ../../enterprise/include/functions_reporting.php:1692 -#: ../../enterprise/include/functions_reporting.php:2500 -#: ../../enterprise/include/functions_reporting.php:3277 -#: ../../enterprise/include/functions_reporting_pdf.php:1740 -msgid "Ignore Time" -msgstr "除外時間" - -#: ../../enterprise/include/functions_reporting.php:1712 -#: ../../enterprise/include/functions_reporting_pdf.php:1755 +#: ../../enterprise/include/functions_reporting.php:1753 msgid "SLA Compliance per days" msgstr "日ごとの SLA 準拠" -#: ../../enterprise/include/functions_reporting.php:1779 -#: ../../enterprise/include/functions_reporting_pdf.php:1834 +#: ../../enterprise/include/functions_reporting.php:1845 msgid "Summary of SLA Failures" msgstr "条件を満たさない SLA の概要" -#: ../../enterprise/include/functions_reporting.php:1781 -#: ../../enterprise/include/functions_reporting_csv.php:1197 -#: ../../enterprise/include/functions_reporting_pdf.php:1838 +#: ../../enterprise/include/functions_reporting.php:1847 +#: ../../enterprise/include/functions_reporting_csv.php:1453 msgid "Day" msgstr "日" -#: ../../enterprise/include/functions_reporting.php:2537 +#: ../../enterprise/include/functions_reporting.php:1865 +#: ../../enterprise/include/functions_reporting.php:1866 +msgid "Out of SLA limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:1871 +#: ../../enterprise/include/functions_reporting.php:1872 +msgid "IN of SLA limits" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:2711 msgid "T. Total" msgstr "合計時間" -#: ../../enterprise/include/functions_reporting.php:2538 -#: ../../enterprise/include/functions_reporting.php:3301 +#: ../../enterprise/include/functions_reporting.php:2712 +#: ../../enterprise/include/functions_reporting.php:3693 msgid "T. OK" msgstr "正常時間" -#: ../../enterprise/include/functions_reporting.php:2539 -#: ../../enterprise/include/functions_reporting.php:3302 +#: ../../enterprise/include/functions_reporting.php:2713 +#: ../../enterprise/include/functions_reporting.php:3694 msgid "T. Error" msgstr "障害時間" -#: ../../enterprise/include/functions_reporting.php:2540 -#: ../../enterprise/include/functions_reporting.php:3303 +#: ../../enterprise/include/functions_reporting.php:2714 +#: ../../enterprise/include/functions_reporting.php:3695 msgid "T. Unknown" msgstr "不明時間" -#: ../../enterprise/include/functions_reporting.php:2541 -#: ../../enterprise/include/functions_reporting.php:3304 +#: ../../enterprise/include/functions_reporting.php:2715 +#: ../../enterprise/include/functions_reporting.php:3696 msgid "T. Not_init" msgstr "未初期化時間" -#: ../../enterprise/include/functions_reporting.php:2542 -#: ../../enterprise/include/functions_reporting.php:3305 +#: ../../enterprise/include/functions_reporting.php:2716 +#: ../../enterprise/include/functions_reporting.php:3697 msgid "T. Downtime" msgstr "計画停止時間" -#: ../../enterprise/include/functions_reporting.php:2543 -#: ../../enterprise/include/functions_reporting.php:3306 +#: ../../enterprise/include/functions_reporting.php:2717 +#: ../../enterprise/include/functions_reporting.php:3698 msgid "SLA %" msgstr "SLA %" -#: ../../enterprise/include/functions_reporting.php:3930 +#: ../../enterprise/include/functions_reporting.php:3920 +msgid "Ignore Planned Downtime" +msgstr "" + +#: ../../enterprise/include/functions_reporting.php:4450 msgid "Module Histogram Graph" msgstr "モジュールヒストグラム" -#: ../../enterprise/include/functions_reporting.php:4456 +#: ../../enterprise/include/functions_reporting.php:5226 msgid "There are no SLAs defined." msgstr "定義済のSLAがありません。" -#: ../../enterprise/include/functions_reporting.php:4570 -#: ../../enterprise/include/functions_reporting.php:5189 -#: ../../enterprise/include/functions_services.php:1305 -#: ../../enterprise/include/functions_services.php:1307 -#: ../../enterprise/include/functions_services.php:1328 -#: ../../enterprise/include/functions_services.php:1329 -#: ../../enterprise/include/functions_services.php:1331 -#: ../../enterprise/include/functions_services.php:1365 -#: ../../enterprise/include/functions_services.php:1367 -msgid "Nonexistent" -msgstr "なし" +#: ../../enterprise/include/functions_reporting.php:5786 +msgid "Scheduled shutdow" +msgstr "" -#: ../../enterprise/include/functions_reporting.php:5726 -#: ../../enterprise/include/functions_reporting.php:6258 +#: ../../enterprise/include/functions_reporting.php:6148 +#: ../../enterprise/include/functions_reporting.php:6773 #, php-format msgid "Graph agents(%s) - %s" msgstr "エージェントグラフ(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:6179 +#: ../../enterprise/include/functions_reporting.php:6689 #, php-format msgid "Graph agent(%s) - %s" msgstr "エージェントグラフ(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:6598 +#: ../../enterprise/include/functions_reporting.php:7147 msgid "There is not data for the selected conditions" msgstr "選択した条件のデータがありません" -#: ../../enterprise/include/functions_reporting.php:6749 -#: ../../enterprise/include/functions_reporting.php:6799 +#: ../../enterprise/include/functions_reporting.php:7345 +#: ../../enterprise/include/functions_reporting.php:7401 msgid "Template editor" msgstr "テンプレート編集" -#: ../../enterprise/include/functions_reporting.php:6813 +#: ../../enterprise/include/functions_reporting.php:7420 msgid "Get PDF file" msgstr "PDF ファイル取得" -#: ../../enterprise/include/functions_reporting_csv.php:376 -msgid "Serialized data " -msgstr "連続データ " +#: ../../enterprise/include/functions_reporting_csv.php:388 +msgid "Event report agent" +msgstr "イベントレポートエージェント" -#: ../../enterprise/include/functions_reporting_csv.php:468 -#: ../../enterprise/include/functions_reporting_csv.php:567 -#: ../../enterprise/include/functions_reporting_csv.php:603 -#: ../../enterprise/include/functions_reporting_csv.php:640 -#: ../../enterprise/include/functions_reporting_csv.php:678 -#: ../../enterprise/include/functions_reporting_csv.php:747 -#: ../../enterprise/include/functions_reporting_csv.php:784 -#: ../../enterprise/include/functions_reporting_csv.php:821 -#: ../../enterprise/include/functions_reporting_csv.php:857 -#: ../../enterprise/include/functions_reporting_csv.php:916 -#: ../../enterprise/include/functions_reporting_csv.php:953 -msgid "Report type" -msgstr "レポートタイプ" +#: ../../enterprise/include/functions_reporting_csv.php:390 +msgid "Event report group" +msgstr "イベントレポートグループ" -#: ../../enterprise/include/functions_reporting_csv.php:470 -msgid "Uknown agents" -msgstr "不明エージェント" +#: ../../enterprise/include/functions_reporting_csv.php:414 +msgid "Event report module" +msgstr "イベントレポートモジュール" -#: ../../enterprise/include/functions_reporting_csv.php:479 -msgid "Last 8 hours events" -msgstr "直近 8時間のイベント" - -#: ../../enterprise/include/functions_reporting_csv.php:715 -msgid "Illegal query or any other error" -msgstr "不正なクエリまたはその他エラー" - -#: ../../enterprise/include/functions_reporting_csv.php:953 +#: ../../enterprise/include/functions_reporting_csv.php:489 +#: ../../enterprise/include/functions_reporting_csv.php:1222 msgid "% OK" msgstr "正常%" -#: ../../enterprise/include/functions_reporting_csv.php:953 +#: ../../enterprise/include/functions_reporting_csv.php:615 +msgid "Maximum value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:620 +msgid "Minimum value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:623 +msgid "Average value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:724 +msgid "Serialized data " +msgstr "連続データ " + +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Uknown agents" +msgstr "不明エージェント" + +#: ../../enterprise/include/functions_reporting_csv.php:838 +msgid "Last 8 hours events" +msgstr "直近 8時間のイベント" + +#: ../../enterprise/include/functions_reporting_csv.php:914 +msgid "Illegal query or any other error" +msgstr "不正なクエリまたはその他エラー" + +#: ../../enterprise/include/functions_reporting_csv.php:932 +msgid "SQL horizontal bar graph" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1013 +#: ../../enterprise/include/functions_reporting_csv.php:1015 +#: ../../enterprise/include/functions_reporting_csv.php:1021 +#: ../../enterprise/include/functions_reporting_csv.php:1023 +msgid "Minimum Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1068 +#: ../../enterprise/include/functions_reporting_csv.php:1070 +#: ../../enterprise/include/functions_reporting_csv.php:1076 +#: ../../enterprise/include/functions_reporting_csv.php:1078 +msgid "Maximun Value" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1187 +msgid "AVG" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1222 msgid "% Wrong" msgstr "異常%" -#: ../../enterprise/include/functions_reporting_csv.php:978 +#: ../../enterprise/include/functions_reporting_csv.php:1237 msgid "Simple Graph" msgstr "単一グラフ" -#: ../../enterprise/include/functions_reporting_csv.php:1041 -#: ../../enterprise/include/functions_reporting_csv.php:1088 -#: ../../enterprise/include/functions_reporting_csv.php:1160 -#: ../../enterprise/include/functions_reporting_csv.php:1276 -#: ../../enterprise/include/functions_reporting_csv.php:1488 +#: ../../enterprise/include/functions_reporting_csv.php:1297 +#: ../../enterprise/include/functions_reporting_csv.php:1343 +#: ../../enterprise/include/functions_reporting_csv.php:1416 +#: ../../enterprise/include/functions_reporting_csv.php:1535 +#: ../../enterprise/include/functions_reporting_csv.php:1803 msgid "SLA Max" msgstr "最大 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1042 -#: ../../enterprise/include/functions_reporting_csv.php:1089 -#: ../../enterprise/include/functions_reporting_csv.php:1161 -#: ../../enterprise/include/functions_reporting_csv.php:1277 -#: ../../enterprise/include/functions_reporting_csv.php:1489 +#: ../../enterprise/include/functions_reporting_csv.php:1298 +#: ../../enterprise/include/functions_reporting_csv.php:1344 +#: ../../enterprise/include/functions_reporting_csv.php:1417 +#: ../../enterprise/include/functions_reporting_csv.php:1536 +#: ../../enterprise/include/functions_reporting_csv.php:1804 msgid "SLA Min" msgstr "最小 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1044 -#: ../../enterprise/include/functions_reporting_csv.php:1091 +#: ../../enterprise/include/functions_reporting_csv.php:1300 +#: ../../enterprise/include/functions_reporting_csv.php:1346 msgid "Time Total " msgstr "合計時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1045 -#: ../../enterprise/include/functions_reporting_csv.php:1092 +#: ../../enterprise/include/functions_reporting_csv.php:1301 +#: ../../enterprise/include/functions_reporting_csv.php:1347 msgid "Time OK " msgstr "正常時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1046 -#: ../../enterprise/include/functions_reporting_csv.php:1093 +#: ../../enterprise/include/functions_reporting_csv.php:1302 +#: ../../enterprise/include/functions_reporting_csv.php:1348 msgid "Time Error " msgstr "障害時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1047 -#: ../../enterprise/include/functions_reporting_csv.php:1094 +#: ../../enterprise/include/functions_reporting_csv.php:1303 +#: ../../enterprise/include/functions_reporting_csv.php:1349 msgid "Time Unknown " msgstr "不明時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1048 -#: ../../enterprise/include/functions_reporting_csv.php:1095 +#: ../../enterprise/include/functions_reporting_csv.php:1304 +#: ../../enterprise/include/functions_reporting_csv.php:1350 msgid "Time Not Init " msgstr "未初期化時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1049 -#: ../../enterprise/include/functions_reporting_csv.php:1096 +#: ../../enterprise/include/functions_reporting_csv.php:1305 +#: ../../enterprise/include/functions_reporting_csv.php:1351 msgid "Time Downtime " msgstr "計画停止時間 " -#: ../../enterprise/include/functions_reporting_csv.php:1050 -#: ../../enterprise/include/functions_reporting_csv.php:1097 +#: ../../enterprise/include/functions_reporting_csv.php:1306 +#: ../../enterprise/include/functions_reporting_csv.php:1352 msgid "Checks Total " msgstr "合計確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1051 -#: ../../enterprise/include/functions_reporting_csv.php:1098 +#: ../../enterprise/include/functions_reporting_csv.php:1307 +#: ../../enterprise/include/functions_reporting_csv.php:1353 msgid "Checks OK " msgstr "正常確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1052 -#: ../../enterprise/include/functions_reporting_csv.php:1099 +#: ../../enterprise/include/functions_reporting_csv.php:1308 +#: ../../enterprise/include/functions_reporting_csv.php:1354 msgid "Checks Error " msgstr "障害確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1053 -#: ../../enterprise/include/functions_reporting_csv.php:1100 +#: ../../enterprise/include/functions_reporting_csv.php:1309 +#: ../../enterprise/include/functions_reporting_csv.php:1355 msgid "Checks Unknown " msgstr "不明確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1054 -#: ../../enterprise/include/functions_reporting_csv.php:1101 +#: ../../enterprise/include/functions_reporting_csv.php:1310 +#: ../../enterprise/include/functions_reporting_csv.php:1356 msgid "Checks Not Init " msgstr "未初期化確認数 " -#: ../../enterprise/include/functions_reporting_csv.php:1055 -#: ../../enterprise/include/functions_reporting_csv.php:1102 +#: ../../enterprise/include/functions_reporting_csv.php:1311 +#: ../../enterprise/include/functions_reporting_csv.php:1357 msgid "SLA " msgstr "SLA " -#: ../../enterprise/include/functions_reporting_csv.php:1056 -#: ../../enterprise/include/functions_reporting_csv.php:1103 +#: ../../enterprise/include/functions_reporting_csv.php:1312 +#: ../../enterprise/include/functions_reporting_csv.php:1358 msgid "Status " msgstr "状態 " -#: ../../enterprise/include/functions_reporting_csv.php:1148 -#: ../../enterprise/include/functions_reporting_csv.php:1261 -#: ../../enterprise/include/functions_reporting_csv.php:1408 -#: ../../enterprise/include/functions_reporting_csv.php:1473 +#: ../../enterprise/include/functions_reporting_csv.php:1404 +#: ../../enterprise/include/functions_reporting_csv.php:1520 +#: ../../enterprise/include/functions_reporting_csv.php:1720 +#: ../../enterprise/include/functions_reporting_csv.php:1788 msgid "Subtitle" msgstr "サブタイトル" -#: ../../enterprise/include/functions_reporting_csv.php:1163 -#: ../../enterprise/include/functions_reporting_csv.php:1292 -#: ../../enterprise/include/functions_reporting_csv.php:1504 +#: ../../enterprise/include/functions_reporting_csv.php:1419 +#: ../../enterprise/include/functions_reporting_csv.php:1551 +#: ../../enterprise/include/functions_reporting_csv.php:1819 msgid "Time Total Month" msgstr "月間合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:1164 -#: ../../enterprise/include/functions_reporting_csv.php:1293 -#: ../../enterprise/include/functions_reporting_csv.php:1505 +#: ../../enterprise/include/functions_reporting_csv.php:1420 +#: ../../enterprise/include/functions_reporting_csv.php:1552 +#: ../../enterprise/include/functions_reporting_csv.php:1820 msgid "Time OK Month" msgstr "月間正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:1165 -#: ../../enterprise/include/functions_reporting_csv.php:1294 -#: ../../enterprise/include/functions_reporting_csv.php:1506 +#: ../../enterprise/include/functions_reporting_csv.php:1421 +#: ../../enterprise/include/functions_reporting_csv.php:1553 +#: ../../enterprise/include/functions_reporting_csv.php:1821 msgid "Time Error Month" msgstr "月間障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:1166 -#: ../../enterprise/include/functions_reporting_csv.php:1295 -#: ../../enterprise/include/functions_reporting_csv.php:1507 +#: ../../enterprise/include/functions_reporting_csv.php:1422 +#: ../../enterprise/include/functions_reporting_csv.php:1554 +#: ../../enterprise/include/functions_reporting_csv.php:1822 msgid "Time Unknown Month" msgstr "月間不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:1167 -#: ../../enterprise/include/functions_reporting_csv.php:1296 -#: ../../enterprise/include/functions_reporting_csv.php:1508 +#: ../../enterprise/include/functions_reporting_csv.php:1423 +#: ../../enterprise/include/functions_reporting_csv.php:1555 +#: ../../enterprise/include/functions_reporting_csv.php:1823 msgid "Time Downtime Month" msgstr "月間計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1168 -#: ../../enterprise/include/functions_reporting_csv.php:1297 -#: ../../enterprise/include/functions_reporting_csv.php:1509 +#: ../../enterprise/include/functions_reporting_csv.php:1424 +#: ../../enterprise/include/functions_reporting_csv.php:1556 +#: ../../enterprise/include/functions_reporting_csv.php:1824 msgid "Time Not Init Month" msgstr "月間未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:1169 -#: ../../enterprise/include/functions_reporting_csv.php:1298 -#: ../../enterprise/include/functions_reporting_csv.php:1510 +#: ../../enterprise/include/functions_reporting_csv.php:1425 +#: ../../enterprise/include/functions_reporting_csv.php:1557 +#: ../../enterprise/include/functions_reporting_csv.php:1825 msgid "Checks Total Month" msgstr "月間合計確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1170 -#: ../../enterprise/include/functions_reporting_csv.php:1299 -#: ../../enterprise/include/functions_reporting_csv.php:1511 +#: ../../enterprise/include/functions_reporting_csv.php:1426 +#: ../../enterprise/include/functions_reporting_csv.php:1558 +#: ../../enterprise/include/functions_reporting_csv.php:1826 msgid "Checks OK Month" msgstr "月間正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1171 -#: ../../enterprise/include/functions_reporting_csv.php:1300 -#: ../../enterprise/include/functions_reporting_csv.php:1512 +#: ../../enterprise/include/functions_reporting_csv.php:1427 +#: ../../enterprise/include/functions_reporting_csv.php:1559 +#: ../../enterprise/include/functions_reporting_csv.php:1827 msgid "Checks Error Month" msgstr "月間障害確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1172 -#: ../../enterprise/include/functions_reporting_csv.php:1301 -#: ../../enterprise/include/functions_reporting_csv.php:1513 +#: ../../enterprise/include/functions_reporting_csv.php:1428 +#: ../../enterprise/include/functions_reporting_csv.php:1560 +#: ../../enterprise/include/functions_reporting_csv.php:1828 msgid "Checks Unknown Month" msgstr "月間不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1173 -#: ../../enterprise/include/functions_reporting_csv.php:1302 -#: ../../enterprise/include/functions_reporting_csv.php:1514 +#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1561 +#: ../../enterprise/include/functions_reporting_csv.php:1829 msgid "Checks Not Init Month" msgstr "月間未初期化確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1174 -#: ../../enterprise/include/functions_reporting_csv.php:1303 -#: ../../enterprise/include/functions_reporting_csv.php:1515 +#: ../../enterprise/include/functions_reporting_csv.php:1430 +#: ../../enterprise/include/functions_reporting_csv.php:1562 +#: ../../enterprise/include/functions_reporting_csv.php:1830 msgid "SLA Month" msgstr "月間 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1175 -#: ../../enterprise/include/functions_reporting_csv.php:1304 -#: ../../enterprise/include/functions_reporting_csv.php:1516 +#: ../../enterprise/include/functions_reporting_csv.php:1431 +#: ../../enterprise/include/functions_reporting_csv.php:1563 +#: ../../enterprise/include/functions_reporting_csv.php:1831 msgid "Status Month" msgstr "月間状態" -#: ../../enterprise/include/functions_reporting_csv.php:1198 -#: ../../enterprise/include/functions_reporting_csv.php:1350 +#: ../../enterprise/include/functions_reporting_csv.php:1454 +#: ../../enterprise/include/functions_reporting_csv.php:1609 msgid "Time Total Day" msgstr "日ごとの合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:1199 -#: ../../enterprise/include/functions_reporting_csv.php:1351 +#: ../../enterprise/include/functions_reporting_csv.php:1455 +#: ../../enterprise/include/functions_reporting_csv.php:1610 msgid "Time OK Day" msgstr "日ごとの正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:1200 -#: ../../enterprise/include/functions_reporting_csv.php:1352 +#: ../../enterprise/include/functions_reporting_csv.php:1456 +#: ../../enterprise/include/functions_reporting_csv.php:1611 msgid "Time Error Day" msgstr "日ごとの障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:1201 -#: ../../enterprise/include/functions_reporting_csv.php:1353 +#: ../../enterprise/include/functions_reporting_csv.php:1457 +#: ../../enterprise/include/functions_reporting_csv.php:1612 msgid "Time Unknown Day" msgstr "日ごとの不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:1202 -#: ../../enterprise/include/functions_reporting_csv.php:1354 +#: ../../enterprise/include/functions_reporting_csv.php:1458 +#: ../../enterprise/include/functions_reporting_csv.php:1613 msgid "Time Not Init Day" msgstr "日ごとの未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:1203 -#: ../../enterprise/include/functions_reporting_csv.php:1355 +#: ../../enterprise/include/functions_reporting_csv.php:1459 +#: ../../enterprise/include/functions_reporting_csv.php:1614 msgid "Time Downtime Day" msgstr "日ごとの計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1204 -#: ../../enterprise/include/functions_reporting_csv.php:1356 +#: ../../enterprise/include/functions_reporting_csv.php:1460 +#: ../../enterprise/include/functions_reporting_csv.php:1615 msgid "Time Out Day" msgstr "日ごとの停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1205 -#: ../../enterprise/include/functions_reporting_csv.php:1357 +#: ../../enterprise/include/functions_reporting_csv.php:1461 +#: ../../enterprise/include/functions_reporting_csv.php:1616 msgid "Checks Total Day" msgstr "日ごとの合計確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1206 -#: ../../enterprise/include/functions_reporting_csv.php:1358 +#: ../../enterprise/include/functions_reporting_csv.php:1462 +#: ../../enterprise/include/functions_reporting_csv.php:1617 msgid "Checks OK Day" msgstr "日ごとの正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1207 -#: ../../enterprise/include/functions_reporting_csv.php:1359 +#: ../../enterprise/include/functions_reporting_csv.php:1463 +#: ../../enterprise/include/functions_reporting_csv.php:1618 msgid "Checks Error Day" msgstr "日ごとの障害確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1208 -#: ../../enterprise/include/functions_reporting_csv.php:1360 +#: ../../enterprise/include/functions_reporting_csv.php:1464 +#: ../../enterprise/include/functions_reporting_csv.php:1619 msgid "Checks Unknown Day" msgstr "日ごとの不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1209 -#: ../../enterprise/include/functions_reporting_csv.php:1361 +#: ../../enterprise/include/functions_reporting_csv.php:1465 +#: ../../enterprise/include/functions_reporting_csv.php:1620 msgid "Checks Not Init Day" msgstr "日ごとの不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1210 -#: ../../enterprise/include/functions_reporting_csv.php:1362 +#: ../../enterprise/include/functions_reporting_csv.php:1466 +#: ../../enterprise/include/functions_reporting_csv.php:1621 msgid "SLA Day" msgstr "日ごとの SLAd" -#: ../../enterprise/include/functions_reporting_csv.php:1211 -#: ../../enterprise/include/functions_reporting_csv.php:1363 +#: ../../enterprise/include/functions_reporting_csv.php:1467 +#: ../../enterprise/include/functions_reporting_csv.php:1622 msgid "SLA Fixed Day" msgstr "日ごとの修正 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1212 -#: ../../enterprise/include/functions_reporting_csv.php:1364 +#: ../../enterprise/include/functions_reporting_csv.php:1468 +#: ../../enterprise/include/functions_reporting_csv.php:1623 msgid "Date From Day" msgstr "開始日" -#: ../../enterprise/include/functions_reporting_csv.php:1213 -#: ../../enterprise/include/functions_reporting_csv.php:1365 +#: ../../enterprise/include/functions_reporting_csv.php:1469 +#: ../../enterprise/include/functions_reporting_csv.php:1624 msgid "Date To Day" msgstr "終了日" -#: ../../enterprise/include/functions_reporting_csv.php:1214 -#: ../../enterprise/include/functions_reporting_csv.php:1366 +#: ../../enterprise/include/functions_reporting_csv.php:1470 +#: ../../enterprise/include/functions_reporting_csv.php:1625 msgid "Status Day" msgstr "日ごとの状態" -#: ../../enterprise/include/functions_reporting_csv.php:1272 -#: ../../enterprise/include/functions_reporting_csv.php:1484 +#: ../../enterprise/include/functions_reporting_csv.php:1531 +#: ../../enterprise/include/functions_reporting_csv.php:1799 msgid "Month Number" msgstr "月の数" -#: ../../enterprise/include/functions_reporting_csv.php:1273 -#: ../../enterprise/include/functions_reporting_csv.php:1485 +#: ../../enterprise/include/functions_reporting_csv.php:1532 +#: ../../enterprise/include/functions_reporting_csv.php:1800 msgid "Year" msgstr "年" -#: ../../enterprise/include/functions_reporting_csv.php:1323 +#: ../../enterprise/include/functions_reporting_csv.php:1582 msgid "Time Total week" msgstr "週間合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:1324 +#: ../../enterprise/include/functions_reporting_csv.php:1583 msgid "Time OK week" msgstr "週間正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:1325 +#: ../../enterprise/include/functions_reporting_csv.php:1584 msgid "Time Error week" msgstr "週間障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:1326 +#: ../../enterprise/include/functions_reporting_csv.php:1585 msgid "Time Unknown week" msgstr "週間不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:1327 +#: ../../enterprise/include/functions_reporting_csv.php:1586 msgid "Time Downtime week" msgstr "週間計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1328 +#: ../../enterprise/include/functions_reporting_csv.php:1587 msgid "Time Not Init week" msgstr "週間未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:1329 +#: ../../enterprise/include/functions_reporting_csv.php:1588 msgid "Checks Total week" msgstr "週間合計確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1330 +#: ../../enterprise/include/functions_reporting_csv.php:1589 msgid "Checks OK week" msgstr "週間正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1331 +#: ../../enterprise/include/functions_reporting_csv.php:1590 msgid "Checks Error week" msgstr "週間障害確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1332 +#: ../../enterprise/include/functions_reporting_csv.php:1591 msgid "Checks Unknown week" msgstr "週間不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1333 +#: ../../enterprise/include/functions_reporting_csv.php:1592 msgid "Status week" msgstr "週間状態" -#: ../../enterprise/include/functions_reporting_csv.php:1349 +#: ../../enterprise/include/functions_reporting_csv.php:1608 msgid "Day Week" msgstr "週" -#: ../../enterprise/include/functions_reporting_csv.php:1418 +#: ../../enterprise/include/functions_reporting_csv.php:1660 +msgid "S.L.A. Services" +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1678 +msgid "Lost sercice " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1679 +msgid "Service " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1680 +msgid "Limit " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1681 +msgid "SLA Compilance " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1682 +msgid "Unknown " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1683 +msgid "Ok " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1684 +msgid "Fail " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1685 +msgid "Result " +msgstr "" + +#: ../../enterprise/include/functions_reporting_csv.php:1730 msgid "SLA max" msgstr "最大 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1419 +#: ../../enterprise/include/functions_reporting_csv.php:1731 msgid "SLA min" msgstr "最小 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1420 +#: ../../enterprise/include/functions_reporting_csv.php:1732 msgid "SLA limit" msgstr "SLA 制限" -#: ../../enterprise/include/functions_reporting_csv.php:1423 +#: ../../enterprise/include/functions_reporting_csv.php:1735 msgid "Time Error" msgstr "障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:1429 +#: ../../enterprise/include/functions_reporting_csv.php:1741 msgid "Checks Error" msgstr "エラー数" -#: ../../enterprise/include/functions_reporting_csv.php:1431 +#: ../../enterprise/include/functions_reporting_csv.php:1743 msgid "Checks Not Init" msgstr "未初期化数" -#: ../../enterprise/include/functions_reporting_csv.php:1433 +#: ../../enterprise/include/functions_reporting_csv.php:1745 msgid "SLA Fixed" msgstr "修正 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1535 +#: ../../enterprise/include/functions_reporting_csv.php:1850 msgid "Time Total day" msgstr "日ごとの合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:1536 +#: ../../enterprise/include/functions_reporting_csv.php:1851 msgid "Time OK day" msgstr "日ごとの正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:1537 +#: ../../enterprise/include/functions_reporting_csv.php:1852 msgid "Time Error day" msgstr "日ごとの障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:1538 +#: ../../enterprise/include/functions_reporting_csv.php:1853 msgid "Time Unknown day" msgstr "日ごとの不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:1539 +#: ../../enterprise/include/functions_reporting_csv.php:1854 msgid "Time Downtime day" msgstr "日ごとの計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1540 +#: ../../enterprise/include/functions_reporting_csv.php:1855 msgid "Time Not Init day" msgstr "日ごとの未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:1541 +#: ../../enterprise/include/functions_reporting_csv.php:1856 msgid "Checks Total day" msgstr "日ごとの合計確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1542 +#: ../../enterprise/include/functions_reporting_csv.php:1857 msgid "Checks OK day" msgstr "日ごとの正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1543 +#: ../../enterprise/include/functions_reporting_csv.php:1858 msgid "Checks Error day" msgstr "日ごとのエラー確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1544 +#: ../../enterprise/include/functions_reporting_csv.php:1859 msgid "Checks Unknown day" msgstr "日ごとの不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1545 +#: ../../enterprise/include/functions_reporting_csv.php:1860 msgid "Status day" msgstr "日ごとの状態" -#: ../../enterprise/include/functions_reporting_csv.php:1562 +#: ../../enterprise/include/functions_reporting_csv.php:1877 msgid "Time Total hours" msgstr "1時間ごとの合計時間" -#: ../../enterprise/include/functions_reporting_csv.php:1563 +#: ../../enterprise/include/functions_reporting_csv.php:1878 msgid "Time OK hours" msgstr "1時間ごとの正常時間" -#: ../../enterprise/include/functions_reporting_csv.php:1564 +#: ../../enterprise/include/functions_reporting_csv.php:1879 msgid "Time Error hours" msgstr "1時間ごとの障害時間" -#: ../../enterprise/include/functions_reporting_csv.php:1565 +#: ../../enterprise/include/functions_reporting_csv.php:1880 msgid "Time Unknown hours" msgstr "1時間ごとの不明時間" -#: ../../enterprise/include/functions_reporting_csv.php:1566 +#: ../../enterprise/include/functions_reporting_csv.php:1881 msgid "Time Not Init hours" msgstr "1時間ごとの未初期化時間" -#: ../../enterprise/include/functions_reporting_csv.php:1567 +#: ../../enterprise/include/functions_reporting_csv.php:1882 msgid "Time Downtime hours" msgstr "1時間ごとの計画停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1568 +#: ../../enterprise/include/functions_reporting_csv.php:1883 msgid "Time Out hours" msgstr "1時間ごとの停止時間" -#: ../../enterprise/include/functions_reporting_csv.php:1569 +#: ../../enterprise/include/functions_reporting_csv.php:1884 msgid "Checks Total hours" msgstr "1時間ごとの確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1570 +#: ../../enterprise/include/functions_reporting_csv.php:1885 msgid "Checks OK hours" msgstr "1時間ごとの正常確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1571 +#: ../../enterprise/include/functions_reporting_csv.php:1886 msgid "Checks Error hours" msgstr "1時間ごとの障害確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1572 +#: ../../enterprise/include/functions_reporting_csv.php:1887 msgid "Checks Unknown hours" msgstr "1時間ごとの不明確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1573 +#: ../../enterprise/include/functions_reporting_csv.php:1888 msgid "Checks Not Init hours" msgstr "1時間ごとの未初期化確認数" -#: ../../enterprise/include/functions_reporting_csv.php:1574 +#: ../../enterprise/include/functions_reporting_csv.php:1889 msgid "SLA hours" msgstr "1時間ごとの SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1575 +#: ../../enterprise/include/functions_reporting_csv.php:1890 msgid "SLA Fixed hours" msgstr "1時間ごとの修正 SLA" -#: ../../enterprise/include/functions_reporting_csv.php:1576 +#: ../../enterprise/include/functions_reporting_csv.php:1891 msgid "Date From hours" msgstr "開始時間" -#: ../../enterprise/include/functions_reporting_csv.php:1577 +#: ../../enterprise/include/functions_reporting_csv.php:1892 msgid "Date To hours" msgstr "終了時間" -#: ../../enterprise/include/functions_reporting_csv.php:1578 +#: ../../enterprise/include/functions_reporting_csv.php:1893 msgid "Status hours" msgstr "1時間ごとの状態" -#: ../../enterprise/include/functions_reporting_pdf.php:1579 -msgid "Legend Graph" -msgstr "グラフの凡例" - -#: ../../enterprise/include/functions_reporting_pdf.php:1930 -msgid "Total Time" -msgstr "合計時間" - -#: ../../enterprise/include/functions_reporting_pdf.php:1934 -msgid "Time Not init" -msgstr "未初期化時間" - -#: ../../enterprise/include/functions_reporting_pdf.php:1935 -msgid "Time Downtimes" -msgstr "計画停止時間" - -#: ../../enterprise/include/functions_reporting_pdf.php:1950 -msgid "Total Checks" -msgstr "合計確認数" - -#: ../../enterprise/include/functions_reporting_pdf.php:2072 -msgid "Agent min" -msgstr "最小エージェント" - -#: ../../enterprise/include/functions_reporting_pdf.php:2073 -msgid "Agent min Value" -msgstr "エージェント最小値" - -#: ../../enterprise/include/functions_reporting_pdf.php:2397 -msgid "SO" -msgstr "OS" - -#: ../../enterprise/include/functions_reporting_pdf.php:2438 -msgid "There are no modules." -msgstr "モジュールがありません。" - -#: ../../enterprise/include/functions_services.php:22 -msgid "There is no information about" -msgstr "次に関する情報がありません:" - -#: ../../enterprise/include/functions_services.php:26 -msgid "Service does not exist." -msgstr "サービスがありません。" - -#: ../../enterprise/include/functions_services.php:34 -msgid ", module that stores the service" +#: ../../enterprise/include/functions_reporting_csv.php:2044 +msgid "Simple Baseline Graph" msgstr "" -#: ../../enterprise/include/functions_services.php:37 -msgid "module that stores the service" +#: ../../enterprise/include/functions_reporting_csv.php:2075 +msgid "Custom Graph" msgstr "" -#: ../../enterprise/include/functions_services.php:45 -msgid ", module that stores SLA service" +#: ../../enterprise/include/functions_reporting_csv.php:2111 +#: ../../enterprise/meta/include/functions_wizard_meta.php:309 +msgid "Agent modules" +msgstr "エージェントモジュール" + +#: ../../enterprise/include/functions_reporting_csv.php:2210 +msgid "Actions Triggered" msgstr "" -#: ../../enterprise/include/functions_services.php:48 -msgid "module that stores SLA service" +#: ../../enterprise/include/functions_reporting_csv.php:2210 +msgid "Template Triggered" msgstr "" -#: ../../enterprise/include/functions_services.php:58 -msgid ", agent that stores the service" +#: ../../enterprise/include/functions_reporting_csv.php:2223 +msgid "Event Report Log" msgstr "" -#: ../../enterprise/include/functions_services.php:61 -msgid "agent that stores the service" +#: ../../enterprise/include/functions_reporting_pdf.php:1560 +msgid "Contents" +msgstr "目次" + +#: ../../enterprise/include/functions_snmp.php:65 +msgid "Trap status agent recovered" msgstr "" -#: ../../enterprise/include/functions_services.php:70 -msgid ", agent that stores SLA service" +#: ../../enterprise/include/functions_tasklist.php:55 +msgid "" +"Discovery relies on a proper setup of cron, the time-based scheduling service" msgstr "" -#: ../../enterprise/include/functions_services.php:73 -msgid "agent that stores SLA service" +#: ../../enterprise/include/functions_tasklist.php:74 +msgid "Please check process is no locked." msgstr "" -#: ../../enterprise/include/functions_services.php:86 -msgid ", alert critical SLA service" +#: ../../enterprise/include/functions_tasklist.php:158 +#: ../../enterprise/include/functions_tasklist.php:509 +msgid "There are no console task defined yet." msgstr "" -#: ../../enterprise/include/functions_services.php:89 -msgid "alert critical SLA service" +#: ../../enterprise/include/functions_tasklist.php:514 +msgid "Console Tasks" msgstr "" -#: ../../enterprise/include/functions_services.php:103 -msgid ", alert warning service" -msgstr "" - -#: ../../enterprise/include/functions_services.php:106 -msgid "alert warning service" -msgstr "" - -#: ../../enterprise/include/functions_services.php:120 -msgid ", alert critical service" -msgstr "" - -#: ../../enterprise/include/functions_services.php:123 -msgid "alert critical service" -msgstr "" - -#: ../../enterprise/include/functions_services.php:137 -msgid ", alert unknown service" -msgstr "" - -#: ../../enterprise/include/functions_services.php:140 -msgid "alert unknown service" -msgstr "" - -#: ../../enterprise/include/functions_services.php:379 -#, php-format -msgid "Module automatic create for the service %s" -msgstr "サービス %s のモジュール自動生成" - -#: ../../enterprise/include/functions_services.php:1350 -msgid "Critical (Alert)" -msgstr "障害 (アラート)" - -#: ../../enterprise/include/functions_services.php:1480 -msgid "There are no service elements defined" -msgstr "サービス要素が定義されていません" - -#: ../../enterprise/include/functions_services.php:1506 -msgid "Weight Critical" -msgstr "障害ウエイト" - -#: ../../enterprise/include/functions_services.php:1507 -msgid "Weight Warning" -msgstr "警告ウエイト" - -#: ../../enterprise/include/functions_services.php:1508 -msgid "Weight Unknown" -msgstr "不明ウエイト" - -#: ../../enterprise/include/functions_services.php:1509 -msgid "Weight Ok" -msgstr "正常ウエイト" - -#: ../../enterprise/include/functions_services.php:1535 -#: ../../enterprise/include/functions_services.php:1550 -#: ../../enterprise/include/functions_services.php:1585 -msgid "Nonexistent. This element should be deleted" -msgstr "存在しません。要素が削除されています。" - -#: ../../enterprise/include/functions_services.php:1750 -msgid "Delete service element" -msgstr "サービス要素削除" - -#: ../../enterprise/include/functions_services.php:1792 -msgid "FAIL" -msgstr "失敗" - -#: ../../enterprise/include/functions_setup.php:37 -#: ../../enterprise/include/functions_setup.php:68 -msgid "Log collector" -msgstr "ログ収集" - -#: ../../enterprise/include/functions_setup.php:80 -msgid "Auto provisioning into Metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:90 -msgid "URL Metaconsole Api" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:95 -msgid "Api pass" -msgstr "APIパスワード" - -#: ../../enterprise/include/functions_setup.php:99 -msgid "Meta user" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:103 -msgid "Meta pass" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:107 -msgid "Metaconsole APi Online" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:109 -#: ../../enterprise/include/functions_setup.php:139 -msgid "Please click in the dot to re-check" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:115 -msgid "Pandora user" -msgstr "Pandora ユーザ" - -#: ../../enterprise/include/functions_setup.php:116 -msgid "Normally the admin user" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:120 -msgid "Pandora pass" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:124 -msgid "Public url console" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:125 -msgid "Without the index.php such as http://domain/pandora_url" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:131 -msgid "Register your node in metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:133 -msgid "Register the node" -msgstr "" - -#: ../../enterprise/include/functions_setup.php:138 -msgid "Status your node in metaconsole" -msgstr "" - -#: ../../enterprise/include/functions_transactional.php:496 +#: ../../enterprise/include/functions_transactional.php:588 msgid "Error in dependencies field" -msgstr "" +msgstr "依存関係フィールドエラー" -#: ../../enterprise/include/functions_transactional.php:505 +#: ../../enterprise/include/functions_transactional.php:597 msgid "Error in enables field" +msgstr "有効化フィールドエラー" + +#: ../../enterprise/include/functions_ui.php:79 +msgid "Select inventory module" +msgstr "インベントリモジュールの選択" + +#: ../../enterprise/include/functions_ui.php:96 +msgid "Use custom fields" msgstr "" -#: ../../enterprise/include/functions_update_manager.php:147 -#: ../../enterprise/include/functions_update_manager.php:327 -#, php-format -msgid "There is a error: %s" -msgstr "エラーがあります: %s" - -#: ../../enterprise/include/functions_update_manager.php:161 -#, php-format -msgid "There are %s updates, and the first to update is:" -msgstr "%s 件の更新があります。最初の更新は次の通りです:" - -#: ../../enterprise/include/functions_update_manager.php:169 -msgid "Version number:" -msgstr "バージョン番号:" - -#: ../../enterprise/include/functions_update_manager.php:170 -msgid "Show details" -msgstr "詳細表示" - -#: ../../enterprise/include/functions_update_manager.php:214 -msgid "Update to the next version" -msgstr "次のバージョンへアップデート" - -#: ../../enterprise/include/functions_ux_console.php:422 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:404 -#: ../../enterprise/operation/agentes/transactional_map.php:260 -#: ../../enterprise/operation/agentes/ux_console_view.php:218 -#: ../../enterprise/operation/agentes/ux_console_view.php:338 -#: ../../enterprise/operation/agentes/wux_console_view.php:348 -msgid "Failed" -msgstr "失敗" - -#: ../../enterprise/include/reset_pass.php:100 -#: ../../enterprise/meta/include/reset_pass.php:76 -msgid "User to reset password" +#: ../../enterprise/include/functions_ui.php:179 +msgid "Field name" msgstr "" -#: ../../enterprise/include/reset_pass.php:103 -#: ../../enterprise/meta/include/reset_pass.php:79 -#: ../../enterprise/meta/index.php:581 ../../index.php:702 -msgid "Reset password" -msgstr "パスワードをリセット" +#: ../../enterprise/include/functions_ui.php:179 +msgid "It's a password" +msgstr "" -#: ../../enterprise/include/reset_pass.php:164 -#: ../../enterprise/include/reset_pass.php:167 -#: ../../enterprise/meta/include/reset_pass.php:122 -#: ../../enterprise/meta/include/reset_pass.php:125 -msgid "Reset password failed" -msgstr "パスワードのリセットに失敗" +#: ../../enterprise/include/functions_ui.php:179 +msgid "Add field" +msgstr "" -#: ../../enterprise/load_enterprise.php:336 -#: ../../enterprise/load_enterprise.php:400 +#: ../../enterprise/load_enterprise.php:375 +#: ../../enterprise/load_enterprise.php:436 msgid "Invalid licence." msgstr "不正なライセンス。" -#: ../../enterprise/load_enterprise.php:337 +#: ../../enterprise/load_enterprise.php:375 msgid "Please contact your system administrator." msgstr "システム管理者に連絡してください。" -#: ../../enterprise/load_enterprise.php:401 -msgid "Please contact Artica at info@artica.es for a valid licence." -msgstr "ライセンスについては、Artica(info@artica.es) までご連絡ください。" +#: ../../enterprise/load_enterprise.php:436 +#, php-format +msgid "Please contact %s for a valid licence." +msgstr "" -#: ../../enterprise/load_enterprise.php:403 -msgid "Or disable Pandora FMS enterprise" -msgstr "または、Pandora FMS Enterprise を無効化します" +#: ../../enterprise/load_enterprise.php:437 +#, php-format +msgid "Or disable %s enterprise" +msgstr "" -#: ../../enterprise/load_enterprise.php:497 -#: ../../enterprise/load_enterprise.php:742 +#: ../../enterprise/load_enterprise.php:542 +#: ../../enterprise/load_enterprise.php:843 msgid "Request new licence" msgstr "新規ライセンスの要求" -#: ../../enterprise/load_enterprise.php:580 +#: ../../enterprise/load_enterprise.php:632 msgid "" "Metaconsole unreached

    " "This node has a metaconsole license and cannot contact with the metaconsole." @@ -35713,17 +44241,10 @@ msgstr "" "Metaconsole unreached

    " "このノードはメタコンソールライセンスを持っていますが、メタコンソールに接続できません。" -#: ../../enterprise/load_enterprise.php:584 -#, php-format -msgid "" -"License out of limits

    " -"This node has a metaconsole license and it allows %d agents and you have %d " -"agents cached." -msgstr "" -"ライセンス制限超過

    " -"このノードはメタコンソールライセンスを持っており、%d エージェントまで利用できますが、%d エージェントが存在します。" - -#: ../../enterprise/load_enterprise.php:592 +#: ../../enterprise/load_enterprise.php:649 +#: ../../enterprise/load_enterprise.php:656 +#: ../../enterprise/load_enterprise.php:666 +#: ../../enterprise/load_enterprise.php:672 #, php-format msgid "" "License out of limits

    " @@ -35732,7 +44253,30 @@ msgstr "" "ライセンスの上限を超えています

    このライセンスは " "%d エージェントまでですが、%d エージェントが設定されています。" -#: ../../enterprise/load_enterprise.php:597 +#: ../../enterprise/load_enterprise.php:650 +#: ../../enterprise/load_enterprise.php:658 +#: ../../enterprise/load_enterprise.php:667 +#: ../../enterprise/load_enterprise.php:674 +#: ../../enterprise/load_enterprise.php:684 +#: ../../enterprise/load_enterprise.php:694 +#: ../../enterprise/load_enterprise.php:701 +#: ../../enterprise/load_enterprise.php:709 +#, php-format +msgid "Please contact %s to renew the license." +msgstr "" + +#: ../../enterprise/load_enterprise.php:657 +#: ../../enterprise/load_enterprise.php:659 +#: ../../enterprise/load_enterprise.php:673 +#: ../../enterprise/load_enterprise.php:675 +#: ../../enterprise/load_enterprise.php:700 +#: ../../enterprise/load_enterprise.php:702 +msgid "" +"This console will work in limited mode. Enterprise features will not " +"function." +msgstr "" + +#: ../../enterprise/load_enterprise.php:683 #, php-format msgid "" "License out of limits

    " @@ -35741,7 +44285,9 @@ msgstr "" "ライセンスの制限を超過しました

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

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

    ライセンスを更新するまでアップデートの入手はできません。" -#: ../../enterprise/load_enterprise.php:615 -msgid "" -"To continue using Pandora FMS, please disable enterprise by renaming the " -"Enterprise directory in the console.

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

    Artica (info@artica.es) までライセンスに関してお問い合わせください:" - -#: ../../enterprise/load_enterprise.php:619 -msgid "Please contact Artica at info@artica.es to renew the license." -msgstr "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。" - -#: ../../enterprise/load_enterprise.php:739 +#: ../../enterprise/load_enterprise.php:839 msgid "Renew" msgstr "更新" -#: ../../enterprise/load_enterprise.php:825 +#: ../../enterprise/load_html_extra.php:185 msgid "Activate license" msgstr "ライセンスの有効化" -#: ../../enterprise/load_enterprise.php:826 +#: ../../enterprise/load_html_extra.php:186 msgid "Your request key is:" msgstr "リクエストキー:" -#: ../../enterprise/load_enterprise.php:828 +#: ../../enterprise/load_html_extra.php:188 #, php-format msgid "" "You can activate it manually here or " @@ -35782,291 +44315,404 @@ msgid "" msgstr "" "ここから手動で有効化するか、以下のフォームから自動入力できます:" -#: ../../enterprise/load_enterprise.php:833 +#: ../../enterprise/load_html_extra.php:193 msgid "Auth Key:" msgstr "認証キー:" -#: ../../enterprise/load_enterprise.php:840 -#: ../../enterprise/load_enterprise.php:856 +#: ../../enterprise/load_html_extra.php:201 +#: ../../enterprise/load_html_extra.php:220 msgid "Online validation" msgstr "オンライン認証" -#: ../../enterprise/load_enterprise.php:849 +#: ../../enterprise/load_html_extra.php:213 msgid "ERROR:" msgstr "エラー:" -#: ../../enterprise/load_enterprise.php:849 -msgid "When connecting to Artica server." -msgstr "Artica サーバへの接続時" +#: ../../enterprise/load_html_extra.php:213 +msgid "When connecting to licence server." +msgstr "" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:63 +#, php-format +msgid "Provisioning custom data %s successfully deleted." +msgstr "カスタムデータ %s のプロビジョニングを削除しました。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:70 +#, php-format +msgid "Cannot delete custom data %s." +msgstr "カスタムデータを削除できません %s" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:83 +msgid "There was an error when moving the custom provisioning data." +msgstr "カスタムプロビジョニングデータの移動エラーです。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 +msgid "Cannot create an unnamed rule." +msgstr "名前の無いルールは作成できません。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:75 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:105 +msgid "Error creating provisioning rule." +msgstr "プロビジョニングルールの作成エラー。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:91 +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 +msgid "Error updating provisioning rule." +msgstr "プロビジョニングルールの更新エラー。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:125 +msgid "Error deleting provisioning rule." +msgstr "プロビジョニングルールの削除エラー。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:135 +msgid "There was an error rule when moving the provisioning." +msgstr "プロビジョニングの移動でルールにエラーがあります。" + +#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:202 +msgid "Edit rule" +msgstr "ルールの編集" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:88 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:91 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:100 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:103 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:106 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 msgid "Agent: " msgstr "エージェント: " -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:88 -msgid " already exists in target node" -msgstr "" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:91 -msgid " group does not exist in target node" -msgstr "" - #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:94 +msgid " already exists in target node" +msgstr " は対象ノードにすでに存在します" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 +msgid " group does not exist in target node" +msgstr " グループは対象ノードに存在しません" + +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:101 msgid "" " policies definitions does not match with defined ones in target node" msgstr " ポリシー定義が対象ノードの定義済のものとマッチしません。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:97 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:105 msgid " plugins does not exist in target node" msgstr " 対象ノードにプラグインが存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:100 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 msgid " collections does not exist in target node" msgstr " 対象ノードにコレクションが存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:103 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:113 msgid " inventory does not exist in target node" msgstr " 対象ノードにインベントリが存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:106 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:117 msgid " alerts template does not exist in target node" msgstr " 対象ノードにアラートテンプレートが存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:109 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:121 msgid " alerts action does not exist in target node" msgstr " 対象ノードにアラートアクションが存在しません" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:112 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 msgid "Exists agent conf for agent: " -msgstr "" +msgstr "次のエージェントの設定が存在します: " -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:112 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:125 msgid " please remove configuration file from target node." msgstr " 対象ノードから設定を削除してください。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:115 -msgid "There are differences between MR versions" -msgstr "MR バージョンに違いがあります" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:118 -msgid "Target server ip address is set" -msgstr "対象サーバ IP アドレス設定" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:204 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:207 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:211 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 msgid "The agent: " msgstr "エージェント: " -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:204 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:222 msgid " has been successfully added to the migration queue " msgstr " : マイグレーションキューに追加しました " -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:207 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:224 msgid " has not been added due to problems in the insertion" msgstr " : 追加処理の問題により追加できませんでした" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:211 -msgid " has already been added to the migration queue" -msgstr " : マイグレーションキューにすでに追加されています" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:227 +#, php-format +msgid "The agent: %d has already been added to the migration queue" +msgstr "" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:230 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:247 msgid "Problems delete queue" msgstr "キュー削除で問題発生" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:246 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:263 msgid "Move Agents" msgstr "エージェント移動" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:262 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:279 msgid "Source Server" msgstr "ソースサーバ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:264 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:281 msgid "Destination Server" msgstr "対象サーバ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:280 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:315 msgid "Agents to move" msgstr "移動エージェント" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:292 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:336 msgid "Add agents to destination server" msgstr "対象サーバにエージェントを追加" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:300 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:344 msgid "Remove agents to doesn't move to destination server" msgstr "送り先サーバへ移動させないエージェントを削除" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:311 -msgid "Active DB only" -msgstr "アクティブ DB のみ" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:362 +msgid "Discard history data" +msgstr "" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:318 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:375 msgid "Agents do not exist in target server." msgstr "対象サーバにエージェントがありません。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:319 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:376 msgid "Check group is synchronized with target server." -msgstr "" +msgstr "対象サーバにグループが同期されているか確認" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:320 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:377 msgid "All policies needed are synchronized with target server." -msgstr "" +msgstr "すべての必要なポリシーが対象サーバで同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:321 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:378 msgid "All remote plugins needed are synchronized with target server." -msgstr "" +msgstr "すべての必要なリモートプラグインが対象サーバで同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:322 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:379 msgid "All collections needed are syncronized with target server." -msgstr "" +msgstr "すべての必要なコレクションが対象サーバで同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:323 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:380 msgid "" "All remote inventory definitions needed are syncronized with target server." -msgstr "" +msgstr "すべての必要なインベントリ定義が対象サーバで同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:324 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:381 msgid "" "All alert templates definitions needed are syncronized with target server." -msgstr "" +msgstr "すべての必要なアラートテンプレート定義が対象サーバで同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:325 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:382 msgid "All alert actions needed are syncronized with target server." -msgstr "" +msgstr "すべての必要なアラートアクションが対象サーバで同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:326 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:383 msgid "Agents conf does not exists in target server." msgstr "対象サーバにエージェント設定がありません。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:327 -msgid "Both Pandora servers must be in the same version" -msgstr "双方の Pandora サーバは同じバージョンでなければいけません" +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:384 +#, php-format +msgid "Both %s servers must be in the same version" +msgstr "" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:328 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:385 msgid "Check target server ip address is set" msgstr "対象サーバ IP アドレス設定確認" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:338 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:395 msgid "Move" msgstr "移動" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:353 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:410 msgid "Source node" msgstr "ソースノード" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:354 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:411 msgid "Target node" msgstr "対象ノード" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:358 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 msgid "Active db only" msgstr "アクティブ DB のみ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:388 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:452 msgid "Creating modules in target node" msgstr "対象ノードでのモジュール作成" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:391 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:456 msgid "Disabling agent in source node and enabling in target one" msgstr "ソースノードでのエージェント無効化と対象ノードでの有効化" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:460 msgid "Transferring data" msgstr "データ転送中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:398 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:465 msgid "Creating agent in target node" msgstr "対象ノードでのエージェント作成" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:408 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:476 msgid "Completed" msgstr "完了" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:412 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:481 msgid "Queued" msgstr "キュー済み" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:478 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545 msgid "checking migration requirements" msgstr "マイグレーション要求のチェック" -#: ../../enterprise/meta/advanced/agents_setup.php:37 +#: ../../enterprise/meta/advanced/agents_setup.php:38 msgid "Propagation" msgstr "伝播" -#: ../../enterprise/meta/advanced/component_management.php:60 +#: ../../enterprise/meta/advanced/collections.php:28 +msgid "" +"The previous configuration of collections has been imported from the nodes. " +"Please check that the definitions are correct." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:29 +msgid "" +"These definitions will not be operational until you manually \n" +" copy the files from the nodes to the atachment/collection/ directory of " +"the meta console." +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:122 +msgid "Deleted collection to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:123 +msgid "The collection could not be deleted to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:171 +msgid "Added collection to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:172 +msgid "The collection could not be added to the nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:255 +msgid "To manage collections you must activate centralized management" +msgstr "" + +#: ../../enterprise/meta/advanced/collections.php:390 +#: ../../enterprise/meta/advanced/collections.php:408 +msgid "Deploy in nodes" +msgstr "" + +#: ../../enterprise/meta/advanced/component_management.php:53 msgid "Module groups Management" msgstr "モジュールグループ管理" -#: ../../enterprise/meta/advanced/component_management.php:64 +#: ../../enterprise/meta/advanced/component_management.php:57 msgid "OS Management" msgstr "OS 管理" -#: ../../enterprise/meta/advanced/license_meta.php:72 -msgid "Licence" -msgstr "ライセンス" +#: ../../enterprise/meta/advanced/cron_main.php:375 +msgid "Date format in Pandora is year/month/day" +msgstr "Pandora での日付フォーマットは、年/月/日 です" -#: ../../enterprise/meta/advanced/license_meta.php:113 -msgid "Validate and sync" -msgstr "承諾および同期" +#: ../../enterprise/meta/advanced/cron_main.php:386 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "Pandora での時間フォーマットは、時(24時間表記):分:秒 です" -#: ../../enterprise/meta/advanced/metasetup.auth.php:47 -#: ../../enterprise/meta/advanced/metasetup.password.php:47 -#: ../../enterprise/meta/advanced/metasetup.performance.php:47 +#: ../../enterprise/meta/advanced/links.php:57 +msgid "The link was not updated, the data is identical" +msgstr "" + +#: ../../enterprise/meta/advanced/links.php:97 +msgid "Link Name error" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.auth.php:24 +#: ../../enterprise/meta/advanced/synchronizing.group.php:41 +msgid "" +"Be aware that group synchronization can change the group configuration of " +"the node" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.auth.php:44 +#: ../../enterprise/meta/advanced/metasetup.password.php:46 +#: ../../enterprise/meta/advanced/metasetup.performance.php:44 #: ../../enterprise/meta/advanced/metasetup.setup.php:79 -#: ../../enterprise/meta/advanced/metasetup.visual.php:50 +#: ../../enterprise/meta/advanced/metasetup.visual.php:47 #, php-format msgid "Could not be update: Error in %s" msgstr "更新できませでした、%s でエラーです。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:87 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:155 -msgid "Could not be create, duplicated server name." -msgstr "作成できませんでした。同じサーバ名があります。" - -#: ../../enterprise/meta/advanced/metasetup.consoles.php:128 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:206 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 msgid "Node synchronization process failed" msgstr "ノードの同期処理に失敗" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:227 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:144 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:244 +msgid "" +"If you are trying to migrate this node to a new metaconsole, please use the " +"form available at Settings > Enterprise at node console." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:194 +msgid "Could not be create, duplicated register found." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:271 +msgid "Successfully delete" +msgstr "削除しました" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:272 msgid "Could not be delete" msgstr "削除できませんでした" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:316 -msgid "Full path to Pandora console (without index.php). Example " -msgstr "Pandora コンソールのフルパス(index.php は含まない)。例: " +#: ../../enterprise/meta/advanced/metasetup.consoles.php:373 +#, php-format +msgid "%s Metaconsole item edition" +msgstr "" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:333 -msgid "DB port" -msgstr "DB ポート" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:379 +msgid "Custom label to identify this setup." +msgstr "" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:385 -msgid "Agent cache" -msgstr "エージェントキャッシュ" +#: ../../enterprise/meta/advanced/metasetup.consoles.php:382 +#, php-format +msgid "Full path to %s console (without index.php). Example %s" +msgstr "" #: ../../enterprise/meta/advanced/metasetup.consoles.php:386 -#: ../../enterprise/meta/advanced/policymanager.sync.php:311 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:351 -#: ../../enterprise/meta/advanced/synchronizing.component.php:327 -#: ../../enterprise/meta/advanced/synchronizing.group.php:201 -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:92 -#: ../../enterprise/meta/advanced/synchronizing.os.php:92 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:108 -#: ../../enterprise/meta/advanced/synchronizing.user.php:604 -msgid "Sync" -msgstr "同期" +#, php-format +msgid "" +"Token previously configured on the destination %s console in order to use " +"delegated authentification." +msgstr "" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:472 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:474 +msgid "Define database connection from Pandora FMS node to this Metaconsole" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:496 +msgid "Metaconsole DB Host" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:505 +msgid "Metaconsole DB Name" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:514 +msgid "Metaconsole DB User" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:523 +msgid "Metaconsole DB Password" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.consoles.php:707 msgid "There aren't server added to metaconsole" msgstr "メタコンソールに追加されたサーバがありません" @@ -36074,1143 +44720,1189 @@ msgstr "メタコンソールに追加されたサーバがありません" msgid "Passwords" msgstr "パスワード" -#: ../../enterprise/meta/advanced/metasetup.performance.php:81 -#: ../../enterprise/meta/include/functions_meta.php:1436 +#: ../../enterprise/meta/advanced/metasetup.performance.php:79 +#: ../../enterprise/meta/include/functions_meta.php:1718 msgid "Active events history" msgstr "アクティブイベント履歴" -#: ../../enterprise/meta/advanced/metasetup.performance.php:91 +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 msgid "Migration block size" msgstr "マイグレーションブロックサイズ" -#: ../../enterprise/meta/advanced/metasetup.php:55 +#: ../../enterprise/meta/advanced/metasetup.php:49 msgid "Consoles Setup" msgstr "コンソール設定" -#: ../../enterprise/meta/advanced/metasetup.php:60 -#: ../../enterprise/meta/advanced/metasetup.php:121 +#: ../../enterprise/meta/advanced/metasetup.php:57 +#: ../../enterprise/meta/advanced/metasetup.php:161 msgid "General setup" msgstr "一般設定" #: ../../enterprise/meta/advanced/metasetup.php:65 -#: ../../enterprise/meta/advanced/metasetup.php:124 +#: ../../enterprise/meta/advanced/metasetup.php:164 msgid "Passwords setup" msgstr "パスワード設定" -#: ../../enterprise/meta/advanced/metasetup.php:75 -#: ../../enterprise/meta/advanced/metasetup.php:130 +#: ../../enterprise/meta/advanced/metasetup.php:84 +#: ../../enterprise/meta/advanced/metasetup.php:172 msgid "Visual setup" msgstr "表示設定" -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:133 +#: ../../enterprise/meta/advanced/metasetup.php:92 +#: ../../enterprise/meta/advanced/metasetup.php:176 msgid "Performance setup" msgstr "パフォーマンス設定" -#: ../../enterprise/meta/advanced/metasetup.php:90 -#: ../../enterprise/meta/advanced/metasetup.php:139 +#: ../../enterprise/meta/advanced/metasetup.php:108 +#: ../../enterprise/meta/advanced/metasetup.php:184 msgid "Strings translation" msgstr "文字列翻訳" -#: ../../enterprise/meta/advanced/metasetup.php:95 -#: ../../enterprise/meta/advanced/metasetup.php:142 +#: ../../enterprise/meta/advanced/metasetup.php:116 +#: ../../enterprise/meta/advanced/metasetup.php:188 msgid "Mail" msgstr "メール" -#: ../../enterprise/meta/advanced/metasetup.php:100 +#: ../../enterprise/meta/advanced/metasetup.php:127 msgid "Options Update Manager" msgstr "アップデートマネージャオプション" -#: ../../enterprise/meta/advanced/metasetup.php:105 -#: ../../enterprise/meta/advanced/metasetup.php:148 +#: ../../enterprise/meta/advanced/metasetup.php:135 +#: ../../enterprise/meta/advanced/metasetup.php:196 msgid "Offline Update Manager" msgstr "オフラインアップデートマネージャ" -#: ../../enterprise/meta/advanced/metasetup.php:110 -#: ../../enterprise/meta/advanced/metasetup.php:151 +#: ../../enterprise/meta/advanced/metasetup.php:143 +#: ../../enterprise/meta/advanced/metasetup.php:200 msgid "Online Update Manager" msgstr "オンラインアップデートマネージャ" -#: ../../enterprise/meta/advanced/metasetup.php:117 +#: ../../enterprise/meta/advanced/metasetup.php:156 msgid "Consoles setup" msgstr "コンソール設定" -#: ../../enterprise/meta/advanced/metasetup.php:145 +#: ../../enterprise/meta/advanced/metasetup.php:192 msgid "Online Update Options" msgstr "オンラインアップデートオプション" -#: ../../enterprise/meta/advanced/metasetup.setup.php:197 +#: ../../enterprise/meta/advanced/metasetup.setup.php:142 +#, php-format +msgid "" +"If SSL is not properly configured, you will lose access to the %s Console. " +"Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:145 +#: ../../enterprise/meta/include/functions_meta.php:406 +msgid "Centralized management" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:192 +#, php-format +msgid "" +"Set this value when you need your %s to be accessible via a public URL (for " +"example using Apache mod_proxy settings)." +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:203 +#, php-format +msgid "" +"If public URL is not properly configured, you will lose access to the %s " +"Console. Do you want to continue?" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:221 msgid "Customize sections" msgstr "セクションのカスタマイズ" -#: ../../enterprise/meta/advanced/metasetup.setup.php:219 +#: ../../enterprise/meta/advanced/metasetup.setup.php:242 msgid "Disabled sections" msgstr "無効化セクション" -#: ../../enterprise/meta/advanced/metasetup.setup.php:221 +#: ../../enterprise/meta/advanced/metasetup.setup.php:244 msgid "Enabled sections" msgstr "有効化セクション" -#: ../../enterprise/meta/advanced/metasetup.setup.php:227 +#: ../../enterprise/meta/advanced/metasetup.setup.php:249 msgid "Push selected sections to enable it" msgstr "選択したセクションを有効にする" -#: ../../enterprise/meta/advanced/metasetup.setup.php:231 +#: ../../enterprise/meta/advanced/metasetup.setup.php:251 msgid "Pop selected sections to disable it" msgstr "選択したセクションを無効にする" -#: ../../enterprise/meta/advanced/metasetup.visual.php:76 -msgid "Visual" -msgstr "表示" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:108 +#: ../../enterprise/meta/advanced/metasetup.visual.php:130 msgid "Data precision for reports and visual consoles" msgstr "レポートおよびビジュアルコンソールのデータ精度" -#: ../../enterprise/meta/advanced/metasetup.visual.php:108 +#: ../../enterprise/meta/advanced/metasetup.visual.php:130 msgid "Precision must be a integer number between 0 and 5" msgstr "精度は 0 と 5 の間の整数でなければいけません" -#: ../../enterprise/meta/advanced/metasetup.visual.php:137 +#: ../../enterprise/meta/advanced/metasetup.visual.php:153 msgid "Graph TIP view" msgstr "グラフ詳細表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:158 -#: ../../enterprise/meta/include/functions_meta.php:1225 +#: ../../enterprise/meta/advanced/metasetup.visual.php:170 +msgid "Soft graphs:" +msgstr "" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:220 +#: ../../enterprise/meta/include/functions_meta.php:1469 msgid "Metaconsole elements" msgstr "メタコンソール要素" -#: ../../enterprise/meta/advanced/metasetup.visual.php:158 +#: ../../enterprise/meta/advanced/metasetup.visual.php:220 msgid "The number of elements retrieved for each instance in some views." msgstr "一部のビュー内での各インスタンスの要素数" -#: ../../enterprise/meta/advanced/policymanager.apply.php:146 -#: ../../enterprise/meta/advanced/policymanager.apply.php:154 +#: ../../enterprise/meta/advanced/metasetup.visual.php:318 +msgid "Custom logo (header)" +msgstr "カスタムロゴ (ヘッダー)" + +#: ../../enterprise/meta/advanced/policymanager.apply.php:141 +#: ../../enterprise/meta/advanced/policymanager.apply.php:149 msgid "Only database" msgstr "データベースのみ" -#: ../../enterprise/meta/advanced/policymanager.apply.php:188 +#: ../../enterprise/meta/advanced/policymanager.apply.php:186 msgid "Apply Policies" msgstr "ポリシー適用" -#: ../../enterprise/meta/advanced/policymanager.php:37 +#: ../../enterprise/meta/advanced/policymanager.php:58 msgid "Policy Manager" msgstr "ポリシー管理" -#: ../../enterprise/meta/advanced/policymanager.php:66 +#: ../../enterprise/meta/advanced/policymanager.php:80 msgid "Apply policies" msgstr "ポリシー適用" -#: ../../enterprise/meta/advanced/policymanager.php:70 #: ../../enterprise/meta/advanced/policymanager.php:84 +#: ../../enterprise/meta/advanced/policymanager.php:102 msgid "Policies queue" msgstr "ポリシーキュー" -#: ../../enterprise/meta/advanced/policymanager.php:81 +#: ../../enterprise/meta/advanced/policymanager.php:98 msgid "Policies apply" msgstr "ポリシー適用" -#: ../../enterprise/meta/advanced/policymanager.queue.php:352 +#: ../../enterprise/meta/advanced/policymanager.queue.php:353 msgid "Empty queue." msgstr "キューが空です" -#: ../../enterprise/meta/advanced/policymanager.sync.php:235 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:286 -#: ../../enterprise/meta/advanced/synchronizing.component.php:289 -#: ../../enterprise/meta/advanced/synchronizing.user.php:509 -#: ../../enterprise/meta/advanced/synchronizing.user.php:595 +#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:272 +#: ../../enterprise/meta/advanced/synchronizing.component.php:279 +#: ../../enterprise/meta/advanced/synchronizing.user.php:564 +#: ../../enterprise/meta/advanced/synchronizing.user.php:651 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../enterprise/meta/include/functions_meta.php:99 -#: ../../enterprise/meta/include/functions_meta.php:195 -#: ../../enterprise/meta/include/functions_meta.php:285 +#: ../../enterprise/meta/include/functions_meta.php:111 +#: ../../enterprise/meta/include/functions_meta.php:208 #, php-format msgid "Error connecting to %s" msgstr "%s への接続エラー" -#: ../../enterprise/meta/advanced/policymanager.sync.php:244 +#: ../../enterprise/meta/advanced/policymanager.sync.php:255 #, php-format msgid "Error creating %s policies" msgstr "%s ポリシー作成エラー" -#: ../../enterprise/meta/advanced/policymanager.sync.php:247 +#: ../../enterprise/meta/advanced/policymanager.sync.php:259 #, php-format msgid "Created %s policies" msgstr "%s ポリシーを作成しました" -#: ../../enterprise/meta/advanced/policymanager.sync.php:252 +#: ../../enterprise/meta/advanced/policymanager.sync.php:264 #, php-format msgid "Error creating/updating %s/%s policy modules" msgstr "ポリシーモジュールの作成(%s)/更新(%s)エラー" -#: ../../enterprise/meta/advanced/policymanager.sync.php:255 +#: ../../enterprise/meta/advanced/policymanager.sync.php:268 #, php-format msgid "Created/Updated %s/%s policy modules" msgstr "ポリシーモジュールを作成(%s)/更新(%s)しました" -#: ../../enterprise/meta/advanced/policymanager.sync.php:260 +#: ../../enterprise/meta/advanced/policymanager.sync.php:273 #, php-format msgid "Error deleting %s policy modules" msgstr "%s ポリシーモジュールの削除エラー" -#: ../../enterprise/meta/advanced/policymanager.sync.php:263 +#: ../../enterprise/meta/advanced/policymanager.sync.php:277 #, php-format msgid "Deleted %s policy modules" msgstr "%s ポリシーモジュールを削除しました" -#: ../../enterprise/meta/advanced/policymanager.sync.php:268 +#: ../../enterprise/meta/advanced/policymanager.sync.php:282 #, php-format msgid "Error creating %s policy alerts" msgstr "%s ポリシーアラートの作成エラー" -#: ../../enterprise/meta/advanced/policymanager.sync.php:271 +#: ../../enterprise/meta/advanced/policymanager.sync.php:286 #, php-format msgid "Created %s policy alerts" msgstr "%s ポリシーアラートを作成しました" -#: ../../enterprise/meta/advanced/policymanager.sync.php:276 +#: ../../enterprise/meta/advanced/policymanager.sync.php:291 #, php-format msgid "Error deleting %s policy alerts" msgstr "%s ポリシーアラートの削除エラー" -#: ../../enterprise/meta/advanced/policymanager.sync.php:279 +#: ../../enterprise/meta/advanced/policymanager.sync.php:295 #, php-format msgid "Deleted %s policy alerts" msgstr "%s ポリシーアラートを削除しました" -#: ../../enterprise/meta/advanced/policymanager.sync.php:292 -#: ../../enterprise/meta/advanced/synchronizing.alert.php:333 -#: ../../enterprise/meta/advanced/synchronizing.component.php:311 -#: ../../enterprise/meta/advanced/synchronizing.group.php:153 +#: ../../enterprise/meta/advanced/policymanager.sync.php:308 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:321 +#: ../../enterprise/meta/advanced/synchronizing.component.php:301 +#: ../../enterprise/meta/advanced/synchronizing.group.php:178 #: ../../enterprise/meta/advanced/synchronizing.module_groups.php:76 -#: ../../enterprise/meta/advanced/synchronizing.os.php:76 -#: ../../enterprise/meta/advanced/synchronizing.tag.php:92 -#: ../../enterprise/meta/advanced/synchronizing.user.php:529 +#: ../../enterprise/meta/advanced/synchronizing.os.php:72 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:89 +#: ../../enterprise/meta/advanced/synchronizing.user.php:584 msgid "This metaconsole" msgstr "このメタコンソール" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:294 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:280 #, php-format msgid "Error creating/updating %s/%s comamnds" msgstr "コマンドの作成(%s)/更新(%s)エラー" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:297 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:284 #, php-format msgid "Created/Updated %s/%s commands" msgstr "コマンドを作成(%s)/更新(%s)しました" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:289 #, php-format msgid "Error creating/updating %s/%s actions" msgstr "アクションの作成(%s)/更新(%s)エラー" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:305 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:293 #, php-format msgid "Created/Updated %s/%s actions" msgstr "アクションを作成(%s)/更新(%s)しました" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:310 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:298 #, php-format msgid "Error creating/updating %s/%s templates" msgstr "テンプレートの作成(%s)/更新(%s)エラー" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:302 #, php-format msgid "Created/Updated %s/%s templates" msgstr "テンプレートを作成(%s)/更新(%s)しました。" -#: ../../enterprise/meta/advanced/synchronizing.alert.php:325 +#: ../../enterprise/meta/advanced/synchronizing.alert.php:313 msgid "Synchronizing Alerts" msgstr "アラートの同期中" -#: ../../enterprise/meta/advanced/synchronizing.component.php:263 +#: ../../enterprise/meta/advanced/synchronizing.component.php:254 #, php-format msgid "Error creating %s components groups " msgstr "%s コンポーネントグループ作成エラー " -#: ../../enterprise/meta/advanced/synchronizing.component.php:266 +#: ../../enterprise/meta/advanced/synchronizing.component.php:258 #, php-format msgid "Created %s component groups" msgstr "%s コンポーネントグループを作成しました" -#: ../../enterprise/meta/advanced/synchronizing.component.php:271 +#: ../../enterprise/meta/advanced/synchronizing.component.php:263 #, php-format msgid "Error creating/updating %s/%s local components " msgstr "ローカルコンポーネントの作成(%s)/更新(%s)エラー " -#: ../../enterprise/meta/advanced/synchronizing.component.php:274 +#: ../../enterprise/meta/advanced/synchronizing.component.php:267 #, php-format msgid "Created/Updated %s/%s local components" msgstr "ローカルコンポーネントを作成(%s)/更新(%s)しました" -#: ../../enterprise/meta/advanced/synchronizing.component.php:279 +#: ../../enterprise/meta/advanced/synchronizing.component.php:272 #, php-format msgid "Error creating/updating %s/%s network components " msgstr "ネットワークコンポーネントの作成(%s)/更新(%s)エラー " -#: ../../enterprise/meta/advanced/synchronizing.component.php:282 +#: ../../enterprise/meta/advanced/synchronizing.component.php:276 #, php-format msgid "Created/Updated %s/%s network components" msgstr "ネットワークコンポーネントを作成(%s)/更新(%s)しました" -#: ../../enterprise/meta/advanced/synchronizing.component.php:303 +#: ../../enterprise/meta/advanced/synchronizing.component.php:293 msgid "Synchronizing Components" msgstr "コンポーネントの同期中" -#: ../../enterprise/meta/advanced/synchronizing.group.php:79 -#: ../../enterprise/meta/advanced/synchronizing.group.php:80 -#: ../../enterprise/meta/advanced/synchronizing.group.php:92 -#: ../../enterprise/meta/advanced/synchronizing.group.php:93 +#: ../../enterprise/meta/advanced/synchronizing.group.php:77 +#: ../../enterprise/meta/advanced/synchronizing.group.php:78 +#: ../../enterprise/meta/advanced/synchronizing.group.php:97 +#: ../../enterprise/meta/advanced/synchronizing.group.php:98 msgid "Open for more details" msgstr "詳細を開く" -#: ../../enterprise/meta/advanced/synchronizing.group.php:83 +#: ../../enterprise/meta/advanced/synchronizing.group.php:86 #, php-format msgid "Error creating %s groups" msgstr "%s グループ作成エラー" -#: ../../enterprise/meta/advanced/synchronizing.group.php:96 +#: ../../enterprise/meta/advanced/synchronizing.group.php:106 #, php-format msgid "Error updating %s groups" msgstr "%s グループ更新エラー" -#: ../../enterprise/meta/advanced/synchronizing.group.php:105 -#: ../../enterprise/meta/advanced/synchronizing.group.php:106 +#: ../../enterprise/meta/advanced/synchronizing.group.php:117 +#: ../../enterprise/meta/advanced/synchronizing.group.php:118 msgid "Open for more details in creation" msgstr "作成の詳細を開く" -#: ../../enterprise/meta/advanced/synchronizing.group.php:111 -#: ../../enterprise/meta/advanced/synchronizing.group.php:112 +#: ../../enterprise/meta/advanced/synchronizing.group.php:128 +#: ../../enterprise/meta/advanced/synchronizing.group.php:129 msgid "Open for more details in update" msgstr "更新の詳細を開く" -#: ../../enterprise/meta/advanced/synchronizing.group.php:115 +#: ../../enterprise/meta/advanced/synchronizing.group.php:137 #, php-format msgid "Error creating/updating %s/%s groups" msgstr "グループの作成(%s)/更新(%s)エラー" -#: ../../enterprise/meta/advanced/synchronizing.group.php:127 +#: ../../enterprise/meta/advanced/synchronizing.group.php:149 #, php-format msgid "Created %s / Updated %s groups (" msgstr "作成 %s / 更新 %s グループ (" -#: ../../enterprise/meta/advanced/synchronizing.group.php:134 +#: ../../enterprise/meta/advanced/synchronizing.group.php:158 msgid "None update or create group" msgstr "更新または作成したグループがありません" -#: ../../enterprise/meta/advanced/synchronizing.group.php:145 +#: ../../enterprise/meta/advanced/synchronizing.group.php:170 msgid "Synchronizing Groups" msgstr "グループの同期中" +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:49 +#, php-format +msgid "Error connecting to %s." +msgstr "" + #: ../../enterprise/meta/advanced/synchronizing.module_groups.php:53 #, php-format -msgid "Error creating/updating %s/%s module groups" -msgstr "モジュールグループの作成(%s)/更新(%s)エラー" +msgid "Error creating/updating %s/%s module groups." +msgstr "" -#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:56 +#: ../../enterprise/meta/advanced/synchronizing.module_groups.php:57 #, php-format -msgid "Created/Updated %s/%s module groups" -msgstr "モジュールグループを作成(%s)/更新(%s)しました" +msgid "Created/Updated %s/%s module groups." +msgstr "" #: ../../enterprise/meta/advanced/synchronizing.module_groups.php:68 msgid "Synchronizing Module Groups" msgstr "モジュールグループの同期中" -#: ../../enterprise/meta/advanced/synchronizing.os.php:53 +#: ../../enterprise/meta/advanced/synchronizing.os.php:49 #, php-format msgid "Error creating/updating %s/%s OS" msgstr "OS 作成(%s)/更新(%s)エラー" -#: ../../enterprise/meta/advanced/synchronizing.os.php:56 +#: ../../enterprise/meta/advanced/synchronizing.os.php:53 #, php-format msgid "Created/Updated %s/%s OS" msgstr "OS を作成(%s)/更新(%s)しました" -#: ../../enterprise/meta/advanced/synchronizing.os.php:68 +#: ../../enterprise/meta/advanced/synchronizing.os.php:64 msgid "Synchronizing OS" msgstr "OSの同期中" -#: ../../enterprise/meta/advanced/synchronizing.php:35 -#: ../../enterprise/meta/general/main_header.php:238 +#: ../../enterprise/meta/advanced/synchronizing.php:36 +#: ../../enterprise/meta/general/main_header.php:304 msgid "Synchronizing" msgstr "同期中" #: ../../enterprise/meta/advanced/synchronizing.php:60 -#: ../../enterprise/meta/advanced/synchronizing.php:91 +#: ../../enterprise/meta/advanced/synchronizing.php:92 msgid "Users synchronization" msgstr "ユーザ同期" #: ../../enterprise/meta/advanced/synchronizing.php:64 -#: ../../enterprise/meta/advanced/synchronizing.php:94 +#: ../../enterprise/meta/advanced/synchronizing.php:96 msgid "Groups synchronization" msgstr "グループ同期" #: ../../enterprise/meta/advanced/synchronizing.php:68 -#: ../../enterprise/meta/advanced/synchronizing.php:97 +#: ../../enterprise/meta/advanced/synchronizing.php:100 msgid "Alerts synchronization" msgstr "アラート同期" #: ../../enterprise/meta/advanced/synchronizing.php:72 -#: ../../enterprise/meta/advanced/synchronizing.php:100 +#: ../../enterprise/meta/advanced/synchronizing.php:104 msgid "Components synchronization" msgstr "コンポーネント同期" #: ../../enterprise/meta/advanced/synchronizing.php:76 -#: ../../enterprise/meta/advanced/synchronizing.php:103 +#: ../../enterprise/meta/advanced/synchronizing.php:108 msgid "Tags synchronization" msgstr "タグ同期" #: ../../enterprise/meta/advanced/synchronizing.php:80 -#: ../../enterprise/meta/advanced/synchronizing.php:106 +#: ../../enterprise/meta/advanced/synchronizing.php:112 msgid "OS synchronization" msgstr "OS同期" #: ../../enterprise/meta/advanced/synchronizing.php:84 -#: ../../enterprise/meta/advanced/synchronizing.php:109 +#: ../../enterprise/meta/advanced/synchronizing.php:116 msgid "Module Groups synchronization" msgstr "モジュールグループ同期" -#: ../../enterprise/meta/advanced/synchronizing.tag.php:69 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:66 #, php-format msgid "Error creating/updating %s/%s tags" msgstr "タグの作成(%s)/更新(%s)エラー" -#: ../../enterprise/meta/advanced/synchronizing.tag.php:72 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:70 #, php-format msgid "Created/Updated %s/%s tags" msgstr "タグを作成(%s)/更新(%s)しました" -#: ../../enterprise/meta/advanced/synchronizing.tag.php:84 +#: ../../enterprise/meta/advanced/synchronizing.tag.php:81 msgid "Synchronizing Tags" msgstr "タグの同期中" -#: ../../enterprise/meta/advanced/synchronizing.user.php:274 +#: ../../enterprise/meta/advanced/synchronizing.user.php:311 #, php-format msgid "Error updating user %s" msgstr "ユーザ %s の更新エラー" -#: ../../enterprise/meta/advanced/synchronizing.user.php:278 +#: ../../enterprise/meta/advanced/synchronizing.user.php:315 #, php-format msgid "Updated user %s" msgstr "ユーザ %s を更新しました" -#: ../../enterprise/meta/advanced/synchronizing.user.php:289 +#: ../../enterprise/meta/advanced/synchronizing.user.php:327 #, php-format msgid "Error creating user %s" msgstr "ユーザ %s の作成エラー" -#: ../../enterprise/meta/advanced/synchronizing.user.php:293 +#: ../../enterprise/meta/advanced/synchronizing.user.php:331 #, php-format msgid "Created user %s" msgstr "ユーザ %s を作成しました" -#: ../../enterprise/meta/advanced/synchronizing.user.php:492 +#: ../../enterprise/meta/advanced/synchronizing.user.php:533 #, php-format msgid "" "There are groups that not exist in node. The followings elements " "groups/profiles/user profiles were created/updated sucessfully (%d/%d/%d)" msgstr "ノードに存在しないグループがあります。次のグループ/プロファイル/ユーザの要素を作成/更新しました。(%d/%d/%d)" -#: ../../enterprise/meta/advanced/synchronizing.user.php:497 +#: ../../enterprise/meta/advanced/synchronizing.user.php:542 #, php-format msgid "" "Error creating/updating the followings elements groups/profiles/user " "profiles (%d/%d/%d)" msgstr "グループ/プロファイル/ユーザの要素の作成・更新エラー (%d/%d/%d)" -#: ../../enterprise/meta/advanced/synchronizing.user.php:503 +#: ../../enterprise/meta/advanced/synchronizing.user.php:554 #, php-format msgid "" "The followings elements groups/profiles/user profiles were created/updated " "sucessfully (%d/%d/%d)" msgstr "グループ/プロファイル/ユーザの要素を作成・更新しました (%d/%d/%d)" -#: ../../enterprise/meta/advanced/synchronizing.user.php:521 +#: ../../enterprise/meta/advanced/synchronizing.user.php:576 msgid "Synchronizing Users" msgstr "ユーザの同期中" -#: ../../enterprise/meta/advanced/synchronizing.user.php:553 +#: ../../enterprise/meta/advanced/synchronizing.user.php:612 msgid "Profile mode" msgstr "プロファイルモード" -#: ../../enterprise/meta/advanced/synchronizing.user.php:553 +#: ../../enterprise/meta/advanced/synchronizing.user.php:612 msgid "Profile synchronization mode." msgstr "プロファイル同期モード" -#: ../../enterprise/meta/advanced/synchronizing.user.php:554 +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 msgid "New profile" msgstr "新規プロファイル" -#: ../../enterprise/meta/advanced/synchronizing.user.php:556 +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 msgid "" "The selected user profile will be added to the selected users into the target" msgstr "選択されたユーザプロファイルは、対象の選択ユーザに追加されます" -#: ../../enterprise/meta/advanced/synchronizing.user.php:557 +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 msgid "Copy profile" msgstr "プロファイルのコピー" -#: ../../enterprise/meta/advanced/synchronizing.user.php:559 +#: ../../enterprise/meta/advanced/synchronizing.user.php:613 msgid "" "The target user profiles will be replaced with the source user profiles" msgstr "対象のユーザプロファイルは、元ユーザのプロファイルで置き換えられます" -#: ../../enterprise/meta/advanced/synchronizing.user.php:561 -#: ../../enterprise/meta/advanced/synchronizing.user.php:581 +#: ../../enterprise/meta/advanced/synchronizing.user.php:615 +#: ../../enterprise/meta/advanced/synchronizing.user.php:638 msgid "Create groups if not exist" msgstr "グループが存在しない場合作成する" -#: ../../enterprise/meta/advanced/synchronizing.user.php:561 -#: ../../enterprise/meta/advanced/synchronizing.user.php:581 +#: ../../enterprise/meta/advanced/synchronizing.user.php:615 +#: ../../enterprise/meta/advanced/synchronizing.user.php:638 msgid "Create groups assigned to user profile if not exist in node" msgstr "ユーザプロファイルに割り当てられたグループが存在しない場合にそれを作成する" -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:65 -#, php-format -msgid "Provisioning custom data %s successfully deleted." -msgstr "" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:70 -#, php-format -msgid "Cannot delete custom data %s." -msgstr "カスタムデータを削除できません %s" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:80 -msgid "There was an error when moving the custom provisioning data." -msgstr "カスタムプロビジョニングデータの移動エラーです。" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:68 -msgid "Cannot create an unnamed rule." -msgstr "名前の無いルールは作成できません。" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:76 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:97 -msgid "Error creating provisioning rule." -msgstr "プロビジョニングルールの作成エラー。" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:87 -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:106 -msgid "Error updating provisioning rule." -msgstr "プロビジョニングルールの更新エラー。" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:111 -msgid "Error deleting provisioning rule." -msgstr "プロビジョニングルールの削除エラー。" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:119 -msgid "There was an error rule when moving the provisioning." -msgstr "プロビジョニングの移動でルールにエラーがあります。" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:184 -msgid "Create rule" -msgstr "ルールの作成" - -#: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:185 -msgid "Edit rule" -msgstr "ルールの編集" - -#: ../../enterprise/meta/agentsearch.php:89 +#: ../../enterprise/meta/agentsearch.php:100 msgid "Search results for" msgstr "検索結果:" -#: ../../enterprise/meta/agentsearch.php:260 +#: ../../enterprise/meta/agentsearch.php:271 msgid "There are no agents included in this group" msgstr "このグループに属しているエージェントが存在しません" -#: ../../enterprise/meta/event/custom_events.php:89 +#: ../../enterprise/meta/agentsearch.php:285 +msgid "Policies found" +msgstr "" + +#: ../../enterprise/meta/agentsearch.php:416 +msgid "There are no policies included in this group" +msgstr "" + +#: ../../enterprise/meta/event/custom_events.php:98 msgid "The user is not in neither group with EW profile" msgstr "ユーザは EW 権限のあるグループに含まれていません" -#: ../../enterprise/meta/event/custom_events.php:129 -msgid "Succesful updated" -msgstr "更新しました" +#: ../../enterprise/meta/general/footer.php:28 +msgid "Page generated at" +msgstr "ページ更新日時:" -#: ../../enterprise/meta/event/custom_events.php:130 -msgid "Unsucessful updated" -msgstr "更新に失敗しました" - -#: ../../enterprise/meta/event/custom_events.php:154 -msgid "Fields" -msgstr "フィールド" - -#: ../../enterprise/meta/general/login_page.php:61 +#: ../../enterprise/meta/general/login_page.php:58 +#: ../../enterprise/meta/include/process_reset_pass.php:41 +#: ../../enterprise/meta/include/reset_pass.php:41 msgid "Go to Pandora FMS Support" msgstr "Pandora FMS サポートへ行く" -#: ../../enterprise/meta/general/login_page.php:64 -#: ../../enterprise/meta/general/login_page.php:75 +#: ../../enterprise/meta/general/login_page.php:60 +#: ../../enterprise/meta/general/login_page.php:71 +#: ../../enterprise/meta/include/process_reset_pass.php:43 +#: ../../enterprise/meta/include/process_reset_pass.php:54 +#: ../../enterprise/meta/include/reset_pass.php:43 +#: ../../enterprise/meta/include/reset_pass.php:54 msgid "Go to " msgstr "次へ行く: " -#: ../../enterprise/meta/general/login_page.php:72 -#: ../../enterprise/meta/include/process_reset_pass.php:46 -#: ../../enterprise/meta/include/reset_pass.php:46 +#: ../../enterprise/meta/general/login_page.php:69 +#: ../../enterprise/meta/include/process_reset_pass.php:52 +#: ../../enterprise/meta/include/reset_pass.php:52 msgid "Go to Pandora FMS Wiki" msgstr "Pandora FMS wiki へ行く" -#: ../../enterprise/meta/general/logon_ok.php:32 -msgid "Network traffic" -msgstr "ネットワークトラフィック" - -#: ../../enterprise/meta/general/logon_ok.php:60 -#: ../../enterprise/meta/general/main_header.php:180 -#: ../../enterprise/meta/screens/screens.php:35 +#: ../../enterprise/meta/general/logon_ok.php:84 +#: ../../enterprise/meta/general/main_header.php:211 +#: ../../enterprise/meta/screens/screens.php:37 msgid "Screens" msgstr "画面" -#: ../../enterprise/meta/general/main_header.php:98 +#: ../../enterprise/meta/general/main_header.php:109 msgid "Groups view" msgstr "グループビュー" -#: ../../enterprise/meta/general/main_header.php:108 +#: ../../enterprise/meta/general/main_header.php:121 msgid "Monitors view" msgstr "モニタ表示" -#: ../../enterprise/meta/general/main_header.php:144 +#: ../../enterprise/meta/general/main_header.php:127 +msgid "Custom fields view" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:165 msgid "Create new report" msgstr "新規レポート作成" -#: ../../enterprise/meta/general/main_header.php:157 +#: ../../enterprise/meta/general/main_header.php:181 msgid "Report templates" msgstr "レポートテンプレート" -#: ../../enterprise/meta/general/main_header.php:205 +#: ../../enterprise/meta/general/main_header.php:226 +msgid "Favourite Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:234 +msgid "Template Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:241 +msgid "Wizard Visual Console" +msgstr "" + +#: ../../enterprise/meta/general/main_header.php:270 msgid "Live view" msgstr "ライブビュー" -#: ../../enterprise/meta/general/main_header.php:248 +#: ../../enterprise/meta/general/main_header.php:316 msgid "Agent management" msgstr "エージェント管理" -#: ../../enterprise/meta/general/main_header.php:258 +#: ../../enterprise/meta/general/main_header.php:328 msgid "Alert management" msgstr "アラート管理" -#: ../../enterprise/meta/general/main_header.php:268 +#: ../../enterprise/meta/general/main_header.php:340 msgid "Component management" msgstr "コンポーネント管理" -#: ../../enterprise/meta/general/main_header.php:273 +#: ../../enterprise/meta/general/main_header.php:346 msgid "Policy management" msgstr "ポリシー管理" -#: ../../enterprise/meta/general/main_header.php:278 +#: ../../enterprise/meta/general/main_header.php:352 msgid "Category management" msgstr "カテゴリ管理" -#: ../../enterprise/meta/general/main_header.php:283 +#: ../../enterprise/meta/general/main_header.php:358 msgid "Server management" msgstr "サーバ管理" -#: ../../enterprise/meta/general/main_header.php:293 +#: ../../enterprise/meta/general/main_header.php:370 msgid "Metasetup" msgstr "メタセットアップ" -#: ../../enterprise/meta/general/metaconsole_no_activated.php:25 +#: ../../enterprise/meta/general/metaconsole_no_activated.php:24 msgid "" "Metaconsole needs previous activation from regular console, please contact " "system administrator if you need assistance.
    " msgstr "メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが必要であればシステム管理者へ問い合わせてください。
    " -#: ../../enterprise/meta/general/noaccess.php:33 -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" -msgstr "" -"このページは認証されたユーザのみがアクセスできます。手助けが必要であればシステム管理者へ連絡してください。\n" -"\t\t\t\t\t
    このページへの全アクセスは Pandora システムデータベースのセキュリティログに記録されます。" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1202 -msgid "Go to agent detail" -msgstr "エージェント詳細へ" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1209 -msgid "Create new module" -msgstr "新規モジュール作成" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1270 -msgid "Group name" -msgstr "グループ名" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1410 -msgid "Go to module detail" -msgstr "モジュール詳細へ" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1428 -msgid "Create new alert" -msgstr "新規アラート作成" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1469 -msgid "There was a problem loading alert" -msgstr "アラート読み込みに問題が発生しました。" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1560 -msgid "Stand By" -msgstr "スタンバイ" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1586 -msgid "Go to Alert detail" -msgstr "アラート詳細へ" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1592 -msgid "Delete alert" -msgstr "アラート削除" - -#: ../../enterprise/meta/include/ajax/tree_view.ajax.php:1636 -msgid "There was a problem loading tag" -msgstr "タグのロードで問題が発生しました" - -#: ../../enterprise/meta/include/functions_agents_meta.php:1204 -#: ../../enterprise/meta/include/functions_agents_meta.php:1218 +#: ../../enterprise/meta/include/functions_agents_meta.php:474 +#: ../../enterprise/meta/include/functions_agents_meta.php:521 +#: ../../enterprise/meta/include/functions_agents_meta.php:556 msgid "Agents movement" msgstr "エージェント移動" -#: ../../enterprise/meta/include/functions_agents_meta.php:1209 -#: ../../enterprise/meta/include/functions_agents_meta.php:1226 +#: ../../enterprise/meta/include/functions_agents_meta.php:482 +#: ../../enterprise/meta/include/functions_agents_meta.php:536 msgid "Provisioning management" msgstr "プロビジョニング管理" -#: ../../enterprise/meta/include/functions_agents_meta.php:1214 -#: ../../enterprise/meta/include/functions_agents_meta.php:1222 +#: ../../enterprise/meta/include/functions_agents_meta.php:498 +#: ../../enterprise/meta/include/functions_agents_meta.php:526 +#: ../../enterprise/meta/include/functions_agents_meta.php:531 msgid "Group management" msgstr "グループ管理" -#: ../../enterprise/meta/include/functions_agents_meta.php:1230 +#: ../../enterprise/meta/include/functions_agents_meta.php:506 +msgid "Tree group" +msgstr "" + +#: ../../enterprise/meta/include/functions_agents_meta.php:541 msgid "Provisioning rules management" msgstr "プロビジョニングルール管理" -#: ../../enterprise/meta/include/functions_components_meta.php:60 -#: ../../enterprise/meta/include/functions_components_meta.php:75 -msgid "Plugin management" -msgstr "プラグイン管理" +#: ../../enterprise/meta/include/functions_agents_meta.php:551 +msgid "Colecctions" +msgstr "" -#: ../../enterprise/meta/include/functions_components_meta.php:81 -msgid "Create plugin" -msgstr "プラグイン作成" - -#: ../../enterprise/meta/include/functions_components_meta.php:84 -msgid "Edit plugin" -msgstr "プラグイン編集" - -#: ../../enterprise/meta/include/functions_groups_meta.php:120 -#, php-format -msgid "(Error Duplicate ID (%d) ) " -msgstr "(重複 ID (%d) エラー) " - -#: ../../enterprise/meta/include/functions_groups_meta.php:143 -msgid "Different parent" -msgstr "異なる親" - -#: ../../enterprise/meta/include/functions_groups_meta.php:148 -msgid "Different name" -msgstr "異なる名前" - -#: ../../enterprise/meta/include/functions_meta.php:311 -msgid "No admin user" -msgstr "管理者ではありません" - -#: ../../enterprise/meta/include/functions_meta.php:407 -msgid "Netflow disable custom live view filters" -msgstr "Netflow は、カスタムライブビューフィルタを無効にします" - -#: ../../enterprise/meta/include/functions_meta.php:476 -msgid "Customizable section" -msgstr "カスタマイズ可能なセクション" - -#: ../../enterprise/meta/include/functions_meta.php:913 -msgid "Pandora FMS host" -msgstr "Pandora FMS ホスト" - -#: ../../enterprise/meta/include/functions_meta.php:966 -msgid "Babel Enterprise host" -msgstr "Babel Enterprise ホスト" - -#: ../../enterprise/meta/include/functions_meta.php:1215 -msgid "Type of charts" -msgstr "チャートのタイプ" - -#: ../../enterprise/meta/include/functions_meta.php:1315 -msgid "Custom background login" -msgstr "カスタムログイン背景" - -#: ../../enterprise/meta/include/functions_meta.php:1476 -msgid "Default block size migration agents" -msgstr "デフォルトのエージェントマイグレーションブロックサイズ" - -#: ../../enterprise/meta/include/functions_users_meta.php:184 -msgid "User synchronization" -msgstr "ユーザ同期" - -#: ../../enterprise/meta/include/functions_users_meta.php:196 -msgid "Group synchronization" -msgstr "グループ同期" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:241 -msgid "Agent modules" -msgstr "エージェントモジュール" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:284 -msgid "Add selected modules to agent" -msgstr "選択したモジュールのエージェントへの追加" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:298 -msgid "Undo changes" -msgstr "変更を元に戻す" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:473 -msgid "Latency" -msgstr "待ち時間" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:474 -msgid "Response" -msgstr "応答" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:525 -msgid "String to check" -msgstr "チェック文字列" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:530 -msgid "Add check" -msgstr "チェックを追加" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:538 -msgid "Delete check" -msgstr "チェックを削除" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:818 -#: ../../enterprise/meta/include/functions_wizard_meta.php:910 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1120 -msgid "Various" -msgstr "いろいろ" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:955 -msgid "Web configuration" -msgstr "ウェブ設定" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1147 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1153 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1560 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1567 -msgid "Str: " -msgstr "文字列: " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1149 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1155 -msgid " Inverse interval " -msgstr " 条件の反転 " - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1216 -msgid "Alerts in module" -msgstr "モジュール内のアラート" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1379 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1469 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1589 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1660 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:86 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:104 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:74 -msgid "Preview" -msgstr "プレビュー" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1451 -msgid "Checks" -msgstr "チェック" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1654 -msgid "Deleted modules" -msgstr "削除済エージェント" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1866 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1963 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2438 -#, php-format -msgid "Error adding module %s" -msgstr "モジュール %s 追加エラー" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:1876 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1973 -msgid "" -"There was an error creating the alerts, the operation has been cancelled" -msgstr "アラート作成でエラーが発生しました。操作はキャンセルされました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2040 -msgid "Agent successfully added" -msgstr "エージェントを追加しました" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2056 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2138 -#, php-format -msgid "%s Modules created" -msgstr "%s モジュールを作成しました" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2094 -#, php-format -msgid "Could not update agent %s" -msgstr "エージェント %s を更新できませんでした" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2098 -msgid "Agent successfully updated" -msgstr "エージェントを更新しました" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2144 -#, php-format -msgid "%s Modules deleted" -msgstr "%s モジュールを削除しました" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2449 -msgid "" -"There was an error creating the alerts, the operation has been cancelled ." -msgstr "アラート作成エラーです。操作はキャンセルされました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2480 -msgid "Module successfully added." -msgstr "モジュールを追加しました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2552 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2641 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2852 -#, php-format -msgid "Error updating module %s" -msgstr "モジュール %s の更新エラー" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2575 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2664 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2875 -msgid "" -"There was an error updating the alerts, the operation has been cancelled" -msgstr "アラートの更新でエラーが発生しました。操作はキャンセルされました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:2597 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2686 -#: ../../enterprise/meta/include/functions_wizard_meta.php:2897 -msgid "Successfully updated module." -msgstr "モジュールを更新しました。" - -#: ../../enterprise/meta/include/functions_wizard_meta.php:3250 -msgid "Manage agent modules" -msgstr "エージェントモジュール管理" - -#: ../../enterprise/meta/include/process_reset_pass.php:41 -#: ../../enterprise/meta/include/reset_pass.php:41 -msgid "Go to pandorafms.com" -msgstr "pandorafms.com へ行く" - -#: ../../enterprise/meta/include/functions_autoprovision.php:304 +#: ../../enterprise/meta/include/functions_autoprovision.php:378 msgid "Round Robin" msgstr "ラウンドロビン" -#: ../../enterprise/meta/include/functions_autoprovision.php:309 +#: ../../enterprise/meta/include/functions_autoprovision.php:383 msgid "Less loaded" msgstr "より少ない負荷" -#: ../../enterprise/meta/include/functions_autoprovision.php:435 +#: ../../enterprise/meta/include/functions_autoprovision.php:503 msgid "" "There is no custom entries defined. Click on \"Create custom entry\" to add " "the first." msgstr "カスタムエントリが定義されていません。最初に \"カスタムエントリの作成\" をクリックしてください。" -#: ../../enterprise/meta/include/functions_autoprovision.php:440 +#: ../../enterprise/meta/include/functions_autoprovision.php:508 msgid "Create custom entry" msgstr "カスタムエントリの作成" -#: ../../enterprise/meta/include/functions_autoprovision.php:465 +#: ../../enterprise/meta/include/functions_autoprovision.php:535 msgid "Provisioning configuration" msgstr "プロビジョニング設定" -#: ../../enterprise/meta/include/functions_autoprovision.php:476 +#: ../../enterprise/meta/include/functions_autoprovision.php:546 msgid "Configuration:" msgstr "設定:" -#: ../../enterprise/meta/include/functions_autoprovision.php:511 +#: ../../enterprise/meta/include/functions_autoprovision.php:584 msgid "" "There is no rules configured for this custom entry. Click on Add button to " "create the first." msgstr "このカスタムエントリに設定されたルールがありません。最初に追加ボタンをクリックしてください。" -#: ../../enterprise/meta/include/functions_autoprovision.php:540 -msgid "Method" -msgstr "方法" - -#: ../../enterprise/meta/include/functions_autoprovision.php:617 +#: ../../enterprise/meta/include/functions_autoprovision.php:695 msgid "There was an error when editing the rule." msgstr "ルール編集エラー。" -#: ../../enterprise/meta/include/functions_autoprovision.php:631 +#: ../../enterprise/meta/include/functions_autoprovision.php:709 msgid "Operation:" msgstr "操作:" -#: ../../enterprise/meta/include/functions_autoprovision.php:642 +#: ../../enterprise/meta/include/functions_autoprovision.php:723 msgid "Method:" msgstr "方法:" -#: ../../enterprise/meta/index.php:228 ../../index.php:284 +#: ../../enterprise/meta/include/functions_components_meta.php:68 +#: ../../enterprise/meta/include/functions_components_meta.php:92 +msgid "Plugin management" +msgstr "プラグイン管理" + +#: ../../enterprise/meta/include/functions_components_meta.php:98 +msgid "Create plugin" +msgstr "プラグイン作成" + +#: ../../enterprise/meta/include/functions_components_meta.php:100 +msgid "Edit plugin" +msgstr "プラグイン編集" + +#: ../../enterprise/meta/include/functions_groups_meta.php:114 +#, php-format +msgid "Error Duplicate name (%s) " +msgstr "" + +#: ../../enterprise/meta/include/functions_groups_meta.php:132 +#, php-format +msgid "(Error Duplicate ID (%d) ) " +msgstr "(重複 ID (%d) エラー) " + +#: ../../enterprise/meta/include/functions_groups_meta.php:153 +msgid "Error Duplicate name" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:342 +msgid "No admin user" +msgstr "管理者ではありません" + +#: ../../enterprise/meta/include/functions_meta.php:469 +msgid "Netflow disable custom live view filters" +msgstr "Netflow は、カスタムライブビューフィルタを無効にします" + +#: ../../enterprise/meta/include/functions_meta.php:537 +msgid "Customizable section" +msgstr "カスタマイズ可能なセクション" + +#: ../../enterprise/meta/include/functions_meta.php:972 +msgid "SAML profile parameters" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1138 +#, php-format +msgid "%s host" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1187 +msgid "Babel Enterprise host" +msgstr "Babel Enterprise ホスト" + +#: ../../enterprise/meta/include/functions_meta.php:1304 +msgid "Graph color (min)" +msgstr "グラフの色 (最小値)" + +#: ../../enterprise/meta/include/functions_meta.php:1313 +msgid "Graph color (avg)" +msgstr "グラフの色 (平均値)" + +#: ../../enterprise/meta/include/functions_meta.php:1322 +msgid "Graph color (max)" +msgstr "グラフの色 (最大値)" + +#: ../../enterprise/meta/include/functions_meta.php:1415 +msgid "full scale charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1424 +msgid "type mode type charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1442 +msgid "type mode zoom charts" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1460 +msgid "Type of charts" +msgstr "チャートのタイプ" + +#: ../../enterprise/meta/include/functions_meta.php:1496 +msgid "Custom logo (white background)" +msgstr "" + +#: ../../enterprise/meta/include/functions_meta.php:1586 +msgid "Custom background login" +msgstr "カスタムログイン背景" + +#: ../../enterprise/meta/include/functions_meta.php:1754 +msgid "Default block size migration agents" +msgstr "デフォルトのエージェントマイグレーションブロックサイズ" + +#: ../../enterprise/meta/include/functions_meta.php:1765 +msgid "Default block size execution event" +msgstr "" + +#: ../../enterprise/meta/include/functions_ui_meta.php:52 +#, php-format +msgid "%s - the Flexible Monitoring System" +msgstr "" + +#: ../../enterprise/meta/include/functions_users_meta.php:200 +msgid "User synchronization" +msgstr "ユーザ同期" + +#: ../../enterprise/meta/include/functions_users_meta.php:216 +msgid "Group synchronization" +msgstr "グループ同期" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:362 +msgid "Add selected modules to agent" +msgstr "選択したモジュールのエージェントへの追加" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:400 +msgid "Undo changes" +msgstr "変更を元に戻す" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:589 +msgid "Latency" +msgstr "待ち時間" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:590 +msgid "Response" +msgstr "応答" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:645 +msgid "String to check" +msgstr "チェック文字列" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:651 +msgid "Add check" +msgstr "チェックを追加" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:660 +msgid "Delete check" +msgstr "チェックを削除" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:953 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1046 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1259 +msgid "Various" +msgstr "いろいろ" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1091 +msgid "Web configuration" +msgstr "ウェブ設定" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1286 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1299 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1727 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1734 +msgid "Str: " +msgstr "文字列: " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1295 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1308 +msgid " Inverse interval " +msgstr " 条件の反転 " + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1370 +msgid "Alerts in module" +msgstr "モジュール内のアラート" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1540 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1632 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1756 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1830 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 +msgid "Preview" +msgstr "プレビュー" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1615 +msgid "Checks" +msgstr "チェック" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:1824 +msgid "Deleted modules" +msgstr "削除済エージェント" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2067 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2162 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2656 +#, php-format +msgid "Error adding module %s" +msgstr "モジュール %s 追加エラー" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2076 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2171 +msgid "" +"There was an error creating the alerts, the operation has been cancelled" +msgstr "アラート作成でエラーが発生しました。操作はキャンセルされました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2240 +#, php-format +msgid "Could not create agent %s" +msgstr "エージェント %s を作成できませんでした" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2244 +msgid "Agent successfully added" +msgstr "エージェントを追加しました" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2260 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2346 +#, php-format +msgid "%s Modules created" +msgstr "%s モジュールを作成しました" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2303 +#, php-format +msgid "Could not update agent %s" +msgstr "エージェント %s を更新できませんでした" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2352 +#, php-format +msgid "%s Modules deleted" +msgstr "%s モジュールを削除しました" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2668 +msgid "" +"There was an error creating the alerts, the operation has been cancelled ." +msgstr "アラート作成エラーです。操作はキャンセルされました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2698 +msgid "Module successfully added." +msgstr "モジュールを追加しました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2770 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2861 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3056 +#, php-format +msgid "Error updating module %s" +msgstr "モジュール %s の更新エラー" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2792 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2883 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3078 +msgid "" +"There was an error updating the alerts, the operation has been cancelled" +msgstr "アラートの更新でエラーが発生しました。操作はキャンセルされました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:2813 +#: ../../enterprise/meta/include/functions_wizard_meta.php:2904 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3099 +msgid "Successfully updated module." +msgstr "モジュールを更新しました。" + +#: ../../enterprise/meta/include/functions_wizard_meta.php:3476 +msgid "Manage agent modules" +msgstr "エージェントモジュール管理" + +#: ../../enterprise/meta/include/process_reset_pass.php:139 +#: ../../enterprise/meta/include/reset_pass.php:115 +#, php-format +msgid "%s NEXT GENERATION" +msgstr "" + +#: ../../enterprise/meta/index.php:274 ../../index.php:332 msgid "The code shouldn't be empty" msgstr "コードは空にできません" -#: ../../enterprise/meta/index.php:240 ../../index.php:296 +#: ../../enterprise/meta/index.php:287 ../../index.php:345 msgid "Expired login" msgstr "ログイン期限切れ" -#: ../../enterprise/meta/index.php:248 ../../enterprise/meta/index.php:254 -#: ../../index.php:304 ../../index.php:310 +#: ../../enterprise/meta/index.php:294 ../../enterprise/meta/index.php:300 +#: ../../index.php:352 ../../index.php:358 msgid "Login error" msgstr "ログインエラー" -#: ../../enterprise/meta/index.php:489 ../../index.php:607 +#: ../../enterprise/meta/index.php:573 ../../index.php:758 msgid "Password changed successfully" msgstr "パスワードを変更しました" -#: ../../enterprise/meta/index.php:496 ../../index.php:614 +#: ../../enterprise/meta/index.php:579 ../../index.php:764 msgid "Failed to change password" msgstr "パスワード変更に失敗しました" -#: ../../enterprise/meta/index.php:516 ../../index.php:636 +#: ../../enterprise/meta/index.php:598 ../../index.php:785 msgid "Too much time since password change request" msgstr "パスワード変更要求から長時間経過しました" -#: ../../enterprise/meta/index.php:527 ../../index.php:647 +#: ../../enterprise/meta/index.php:607 ../../index.php:794 msgid "This user has not requested a password change" msgstr "このユーザはパスワード変更を要求していません" -#: ../../enterprise/meta/index.php:545 ../../index.php:665 +#: ../../enterprise/meta/index.php:623 ../../index.php:809 msgid "Id user cannot be empty" msgstr "ユーザIDは空にできません" -#: ../../enterprise/meta/index.php:554 ../../index.php:674 +#: ../../enterprise/meta/index.php:631 ../../index.php:817 msgid "Error in reset password request" msgstr "パスワードリセット要求エラー" -#: ../../enterprise/meta/index.php:563 ../../index.php:683 +#: ../../enterprise/meta/index.php:639 ../../index.php:825 msgid "This user doesn't have a valid email address" msgstr "このユーザは正しいメールアドレスがありません" -#: ../../enterprise/meta/index.php:582 ../../index.php:703 +#: ../../enterprise/meta/index.php:656 ../../index.php:836 msgid "This is an automatically sent message for user " msgstr "これは、次のユーザへの自動送信メッセージです: " -#: ../../enterprise/meta/index.php:585 ../../index.php:706 +#: ../../enterprise/meta/index.php:659 ../../index.php:839 msgid "Please click the link below to reset your password" msgstr "パスワードをリセットするには、以下のリンクをクリックしてください" -#: ../../enterprise/meta/index.php:587 ../../index.php:708 +#: ../../enterprise/meta/index.php:661 ../../index.php:841 msgid "Reset your password" msgstr "パスワードリセット" -#: ../../enterprise/meta/index.php:591 ../../index.php:712 +#: ../../enterprise/meta/index.php:665 ../../index.php:845 msgid "Please do not reply to this email." msgstr "このメールには返信しないでください。" -#: ../../enterprise/meta/index.php:597 ../../index.php:718 +#: ../../enterprise/meta/index.php:671 ../../index.php:850 msgid "Error at sending the email" msgstr "メール送信エラー" -#: ../../enterprise/meta/index.php:725 ../../enterprise/meta/index.php:796 -#: ../../index.php:1021 +#: ../../enterprise/meta/index.php:817 ../../enterprise/meta/index.php:896 +#: ../../index.php:1163 msgid "Sorry! I can't find the page!" msgstr "ページが見つかりません" -#: ../../enterprise/meta/monitoring/group_view.php:33 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:48 +msgid "Custom fields View" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:60 +msgid "Custom Fields View" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:197 +msgid "Custom Fields Data" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 +msgid "Status agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:247 +msgid "Status module" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:657 +msgid "Total counters" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:660 +msgid "Total Agents" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:669 +msgid "Total Modules" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:690 +msgid "I.P" +msgstr "" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:712 +msgid "There are no custom search defined." +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:38 msgid "Group View" msgstr "グループ表示" -#: ../../enterprise/meta/monitoring/group_view.php:95 +#: ../../enterprise/meta/monitoring/group_view.php:134 msgid "Summary by status" msgstr "状態ごとのまとめ" -#: ../../enterprise/meta/monitoring/group_view.php:103 -msgid "% Agents Unknown" -msgstr "% のエージェントが不明状態" - -#: ../../enterprise/meta/monitoring/group_view.php:104 -#: ../../enterprise/meta/monitoring/group_view.php:105 +#: ../../enterprise/meta/monitoring/group_view.php:142 +#: ../../enterprise/meta/monitoring/group_view.php:146 msgid "% Agents not init" msgstr "未初期化エージェント%" -#: ../../enterprise/meta/monitoring/group_view.php:108 +#: ../../enterprise/meta/monitoring/group_view.php:143 +msgid "% Agents Warning" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:144 +msgid "% Agents OK" +msgstr "" + +#: ../../enterprise/meta/monitoring/group_view.php:145 +msgid "% Agents Unknown" +msgstr "% のエージェントが不明状態" + +#: ../../enterprise/meta/monitoring/group_view.php:149 msgid "% Monitors Critical" msgstr "障害状態モジュール%" -#: ../../enterprise/meta/monitoring/group_view.php:109 +#: ../../enterprise/meta/monitoring/group_view.php:150 msgid "% Monitors Warning" msgstr "警告状態モジュール%" -#: ../../enterprise/meta/monitoring/group_view.php:110 +#: ../../enterprise/meta/monitoring/group_view.php:151 msgid "% Monitors OK" msgstr "正常状態モジュール%" -#: ../../enterprise/meta/monitoring/group_view.php:111 +#: ../../enterprise/meta/monitoring/group_view.php:152 msgid "% Monitors Unknown" msgstr "不明状態モジュール%" -#: ../../enterprise/meta/monitoring/group_view.php:112 +#: ../../enterprise/meta/monitoring/group_view.php:153 msgid "% Monitors Not init" msgstr "未初期化モジュール%" -#: ../../enterprise/meta/monitoring/group_view.php:136 -#: ../../enterprise/meta/monitoring/group_view.php:137 +#: ../../enterprise/meta/monitoring/group_view.php:178 +#: ../../enterprise/meta/monitoring/group_view.php:179 msgid "This data doesn't show in realtime" msgstr "このデータはリアルタイムでは表示されません" -#: ../../enterprise/meta/monitoring/group_view.php:144 +#: ../../enterprise/meta/monitoring/group_view.php:187 msgid "Group or Tag" msgstr "グループまたはタグ" -#: ../../enterprise/meta/monitoring/group_view.php:148 -msgid "critical" -msgstr "障害" - -#: ../../enterprise/meta/monitoring/tactical.php:37 -msgid "Tactical View" -msgstr "モニタ状態表示" - -#: ../../enterprise/meta/monitoring/tactical.php:291 +#: ../../enterprise/meta/monitoring/tactical.php:251 msgid "Report of state" msgstr "状態レポート" -#: ../../enterprise/meta/monitoring/tactical.php:320 +#: ../../enterprise/meta/monitoring/tactical.php:279 msgid "Report of events" msgstr "イベントレポート" -#: ../../enterprise/meta/monitoring/tactical.php:325 +#: ../../enterprise/meta/monitoring/tactical.php:284 msgid "Info of state in events" msgstr "イベントの状態" -#: ../../enterprise/meta/monitoring/tactical.php:342 +#: ../../enterprise/meta/monitoring/tactical.php:302 msgid "More events" msgstr "イベント追加" -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:78 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 msgid "Edit agent" msgstr "エージェントの編集" -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:212 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:227 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 msgid "Please, set a valid IP/Name address" msgstr "正しい IPアドレス/ホスト名を設定してください" #: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:116 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:290 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:98 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:116 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:84 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:309 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 msgid "Create module" msgstr "モジュールの作成" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:124 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:127 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:154 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:156 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 #: ../../enterprise/meta/monitoring/wizard/wizard.php:112 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:178 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:49 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:172 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 #: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -msgid "Can't connect to Pandora FMS instance" -msgstr "Pandora FMS インスタンスに接続できません" +#, php-format +msgid "Cannot connect to %s instance." +msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 msgid "Web check" @@ -37224,56 +45916,56 @@ msgstr "モジュールの説明" msgid "Step by step wizard" msgstr "段階的ウィザード" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:251 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:255 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:252 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:257 msgid "Click Create to continue" msgstr "続けるには作成をクリックします" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:249 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:265 msgid "Select the agent to be edited or deleted" msgstr "編集または削除するエージェントを選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:291 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:314 msgid "Manage modules" msgstr "モジュール管理" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:339 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:360 msgid "Select the agent where the module will be created" msgstr "モジュールを作成するエージェントを選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:353 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 msgid "Create Module" msgstr "モジュールの作成" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:430 msgid "Select the module to be edited or deleted" msgstr "編集または削除するモジュールの選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:519 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:540 msgid "Select the module where the alert will be created" msgstr "アラートを作成するモジュールの選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:603 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:622 msgid "Select the alert to be edited or deleted" msgstr "編集または削除するアラートの選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:84 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:72 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:108 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:120 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:101 msgid "Advanced configuration" msgstr "拡張設定" -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:198 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:231 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:196 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:281 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:238 msgid "Invalid characters founded in module name" msgstr "モジュール名に不正な文字があります" -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:189 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:231 msgid "Please, set a name" msgstr "名前を設定してください" -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:210 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:252 msgid "Please, set an interval" msgstr "間隔を設定してください" @@ -37301,261 +45993,257 @@ msgstr "エージェント名が定義されていません。" msgid "Another agent already exists with the same name" msgstr "他のエージェントがすでに同じ名前で存在します" -#: ../../enterprise/meta/screens/screens.visualmap.php:60 +#: ../../enterprise/meta/screens/screens.visualmap.php:63 msgid "Create visualmap" msgstr "ビジュアルマップの作成" -#: ../../enterprise/mobile/operation/dashboard.php:59 +#: ../../enterprise/mobile/operation/dashboard.php:66 msgid "Visual console are not shown due screen size limitations" msgstr "画面サイズ制限のため、ビジュアルコンソールは表示されません" -#: ../../enterprise/mobile/operation/dashboard.php:87 +#: ../../enterprise/mobile/operation/dashboard.php:98 msgid "Dashboards list" msgstr "ダッシュボード一覧" -#: ../../enterprise/mobile/operation/dashboard.php:107 +#: ../../enterprise/mobile/operation/dashboard.php:124 msgid "No Dashboards" msgstr "ダッシュボードがありません" -#: ../../enterprise/mobile/operation/dashboard.php:140 +#: ../../enterprise/mobile/operation/dashboard.php:159 msgid "Dashboard name" msgstr "ダッシュボード名" -#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:40 +#: ../../enterprise/operation/agentes/agent_inventory.diff_view.php:44 msgid "Unsucessful get module inventory data." msgstr "モジュールのインベントリデータ取得に失敗しました。" -#: ../../enterprise/operation/agentes/agent_inventory.php:56 +#: ../../enterprise/operation/agentes/agent_inventory.php:61 msgid "This agent has not modules inventory" msgstr "このエージェントにはインベントリモジュールがありません" -#: ../../enterprise/operation/agentes/agent_inventory.php:160 -#: ../../enterprise/operation/agentes/agent_inventory.php:161 +#: ../../enterprise/operation/agentes/agent_inventory.php:162 +#: ../../enterprise/operation/agentes/agent_inventory.php:163 msgid "Diff view" msgstr "差分表示" -#: ../../enterprise/operation/agentes/collection_view.php:54 +#: ../../enterprise/operation/agentes/collection_view.php:53 msgid "No collection assigned to this agent" msgstr "このエージェントに割り当てられたコレクションがありません" -#: ../../enterprise/operation/agentes/manage_transmap.php:27 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:82 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:257 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:319 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:33 +#: ../../enterprise/operation/agentes/manage_transmap.php:38 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:97 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:289 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:359 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:34 msgid "Transactions List" msgstr "トランザクション一覧" -#: ../../enterprise/operation/agentes/manage_transmap.php:50 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:89 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:326 +#: ../../enterprise/operation/agentes/manage_transmap.php:63 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:106 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:368 msgid "Edit main data" msgstr "メインデータ編集" -#: ../../enterprise/operation/agentes/manage_transmap.php:57 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:96 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:333 -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:39 +#: ../../enterprise/operation/agentes/manage_transmap.php:72 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:115 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:377 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:42 msgid "Edit Transaction" msgstr "トランザクション編集" -#: ../../enterprise/operation/agentes/manage_transmap.php:65 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:104 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:341 +#: ../../enterprise/operation/agentes/manage_transmap.php:82 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:125 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:387 msgid "View Transaction" msgstr "トランザクション表示" -#: ../../enterprise/operation/agentes/manage_transmap.php:98 +#: ../../enterprise/operation/agentes/manage_transmap.php:113 msgid "Return to windowed mode" msgstr "ウインドウモードへ戻る" -#: ../../enterprise/operation/agentes/manage_transmap.php:102 +#: ../../enterprise/operation/agentes/manage_transmap.php:119 msgid "Transactional Map - " msgstr "トランザクションマップ - " -#: ../../enterprise/operation/agentes/manage_transmap.php:106 +#: ../../enterprise/operation/agentes/manage_transmap.php:128 msgid "Transaction not found" msgstr "トランザクションがありません" -#: ../../enterprise/operation/agentes/manage_transmap.php:110 +#: ../../enterprise/operation/agentes/manage_transmap.php:131 msgid "Master lock file not found (No data to show)" msgstr "マスターロックファイルがありません(表示するデータがありません)" -#: ../../enterprise/operation/agentes/manage_transmap.php:114 +#: ../../enterprise/operation/agentes/manage_transmap.php:134 msgid "Transaction is stopped" msgstr "トランザクションが停止しました" -#: ../../enterprise/operation/agentes/manage_transmap.php:118 +#: ../../enterprise/operation/agentes/manage_transmap.php:137 msgid "Error, please check the transaction phases" msgstr "エラー、トランザクションフェーズを確認してください" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:36 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:46 msgid "Please, reset the transaction" msgstr "トランザクションをリセットしてください" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:71 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:85 msgid "Successfully data updated" msgstr "データを更新しました" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:72 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:86 msgid "Could not be data updated" msgstr "データの更新ができませんでした" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:107 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:130 msgid "Transactional Map - Create Phase - " msgstr "トランザクションマップ - フェーズ作成 - " -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:117 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:145 msgid "Index" msgstr "目次" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:120 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:148 msgid "Dependencies" msgstr "依存関係" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:121 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:149 msgid "Enables" msgstr "有効化" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:181 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:214 msgid "Not valid dependencies field" msgstr "依存関係フィールドが不正です" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:187 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:220 msgid "Not valid enables field" msgstr "有効化フィールドが不正です" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:260 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:345 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:294 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:393 msgid "Transactional Map - Create Transaction" msgstr "トランザクションマップ - トランザクション作成" -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:272 -#: ../../enterprise/operation/agentes/manage_transmap_creation.php:361 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:311 +#: ../../enterprise/operation/agentes/manage_transmap_creation.php:414 msgid "Loop interval" msgstr "ループ間隔" -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:45 +#: ../../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:49 +#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:56 msgid "Transactional Map - Phase - " msgstr "トランザクションマップ - フェーズ - " -#: ../../enterprise/operation/agentes/manage_transmap_creation_phases_data.php:62 -msgid "Launch script" -msgstr "起動スクリプト" - -#: ../../enterprise/operation/agentes/policy_view.php:37 +#: ../../enterprise/operation/agentes/policy_view.php:38 msgid "This agent has no policy assigned" msgstr "このエージェントにはポリシーが適用されていません" -#: ../../enterprise/operation/agentes/policy_view.php:65 +#: ../../enterprise/operation/agentes/policy_view.php:69 msgid "Policy outdate" msgstr "期限切れポリシー" -#: ../../enterprise/operation/agentes/policy_view.php:130 -#: ../../enterprise/operation/agentes/policy_view.php:137 +#: ../../enterprise/operation/agentes/policy_view.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:145 msgid "Toggle the collection table" msgstr "コレクションテーブル切り替え" -#: ../../enterprise/operation/agentes/policy_view.php:133 +#: ../../enterprise/operation/agentes/policy_view.php:141 msgid "Descripttion" msgstr "説明" -#: ../../enterprise/operation/agentes/policy_view.php:138 +#: ../../enterprise/operation/agentes/policy_view.php:146 msgid "Show Collection" msgstr "コレクション表示" -#: ../../enterprise/operation/agentes/policy_view.php:192 -#: ../../enterprise/operation/agentes/policy_view.php:201 +#: ../../enterprise/operation/agentes/policy_view.php:205 +#: ../../enterprise/operation/agentes/policy_view.php:214 msgid "Toggle the alert table" msgstr "アラートテーブル切り替え" -#: ../../enterprise/operation/agentes/policy_view.php:202 +#: ../../enterprise/operation/agentes/policy_view.php:215 msgid "Show Alert" msgstr "アラート表示" -#: ../../enterprise/operation/agentes/policy_view.php:303 -#: ../../enterprise/operation/agentes/policy_view.php:312 +#: ../../enterprise/operation/agentes/policy_view.php:322 +#: ../../enterprise/operation/agentes/policy_view.php:331 msgid "Toggle the module table" msgstr "モジュールテーブル切り替え" -#: ../../enterprise/operation/agentes/policy_view.php:304 +#: ../../enterprise/operation/agentes/policy_view.php:323 msgid "Relationship" msgstr "関連" -#: ../../enterprise/operation/agentes/policy_view.php:313 +#: ../../enterprise/operation/agentes/policy_view.php:332 msgid "Show Modules" msgstr "モジュール表示" -#: ../../enterprise/operation/agentes/policy_view.php:333 +#: ../../enterprise/operation/agentes/policy_view.php:351 msgid "(Un-adopted)" msgstr "(未適用)" -#: ../../enterprise/operation/agentes/policy_view.php:337 +#: ../../enterprise/operation/agentes/policy_view.php:354 msgid "(Adopted)" msgstr "(適用)" -#: ../../enterprise/operation/agentes/policy_view.php:343 +#: ../../enterprise/operation/agentes/policy_view.php:359 msgid "(Un-adopted) (Unlinked)" msgstr "(未適用) (未リンク)" -#: ../../enterprise/operation/agentes/policy_view.php:347 +#: ../../enterprise/operation/agentes/policy_view.php:362 msgid "(Adopted) (Unlinked)" msgstr "(適用) (未リンク)" -#: ../../enterprise/operation/agentes/tag_view.php:22 -#: ../../enterprise/operation/menu.php:152 +#: ../../enterprise/operation/agentes/tag_view.php:31 +#: ../../enterprise/operation/menu.php:205 msgid "Tag view" msgstr "タグ表示" -#: ../../enterprise/operation/agentes/transactional_map.php:31 +#: ../../enterprise/operation/agentes/transactional_map.php:49 msgid "Transactions list" msgstr "トランザクション一覧" -#: ../../enterprise/operation/agentes/transactional_map.php:100 +#: ../../enterprise/operation/agentes/transactional_map.php:123 msgid "Name can't be empty" msgstr "名前は空にできません" -#: ../../enterprise/operation/agentes/transactional_map.php:148 +#: ../../enterprise/operation/agentes/transactional_map.php:180 msgid "Transaction name" msgstr "トランザクション名" -#: ../../enterprise/operation/agentes/transactional_map.php:151 +#: ../../enterprise/operation/agentes/transactional_map.php:183 msgid "Running status" msgstr "実行状態" -#: ../../enterprise/operation/agentes/transactional_map.php:153 +#: ../../enterprise/operation/agentes/transactional_map.php:185 msgid "Time spent" msgstr "経過時間" -#: ../../enterprise/operation/agentes/transactional_map.php:183 +#: ../../enterprise/operation/agentes/transactional_map.php:227 msgid "Stopped" msgstr "停止済み" -#: ../../enterprise/operation/agentes/transactional_map.php:189 +#: ../../enterprise/operation/agentes/transactional_map.php:233 msgid "Starting" msgstr "開始中" -#: ../../enterprise/operation/agentes/transactional_map.php:192 +#: ../../enterprise/operation/agentes/transactional_map.php:235 msgid "Stopping" msgstr "停止中" -#: ../../enterprise/operation/agentes/transactional_map.php:314 +#: ../../enterprise/operation/agentes/transactional_map.php:372 msgid "Edit phases" msgstr "フェーズ編集" -#: ../../enterprise/operation/agentes/transactional_map.php:323 +#: ../../enterprise/operation/agentes/transactional_map.php:380 msgid "Error in phases section" msgstr "フェーズ選択エラー" -#: ../../enterprise/operation/agentes/transactional_map.php:342 +#: ../../enterprise/operation/agentes/transactional_map.php:402 msgid "Create Transaction" msgstr "トランザクション作成" -#: ../../enterprise/operation/agentes/url_route_analyzer.php:38 +#: ../../enterprise/operation/agentes/url_route_analyzer.php:39 msgid "No agent selected" msgstr "エージェント選択なし" @@ -37563,272 +46251,355 @@ msgstr "エージェント選択なし" msgid "Route not found" msgstr "ルートが見つかりません" -#: ../../enterprise/operation/agentes/ux_console_view.php:59 +#: ../../enterprise/operation/agentes/ux_console_view.php:64 msgid "No ux transaction selected." msgstr "UX トランザクションが選択されていません。" -#: ../../enterprise/operation/agentes/ux_console_view.php:138 +#: ../../enterprise/operation/agentes/ux_console_view.php:145 msgid "No ux transactions found." msgstr "UX トランザクションが見つかりません。" -#: ../../enterprise/operation/agentes/ux_console_view.php:148 -#: ../../enterprise/operation/agentes/wux_console_view.php:178 +#: ../../enterprise/operation/agentes/ux_console_view.php:154 +#: ../../enterprise/operation/agentes/wux_console_view.php:233 msgid "Transaction" msgstr "トランザクション" -#: ../../enterprise/operation/agentes/ux_console_view.php:157 -#: ../../enterprise/operation/agentes/wux_console_view.php:187 +#: ../../enterprise/operation/agentes/ux_console_view.php:163 +#: ../../enterprise/operation/agentes/wux_console_view.php:242 msgid "Show transaction" msgstr "トランザクション表示" -#: ../../enterprise/operation/agentes/ux_console_view.php:183 -#: ../../enterprise/operation/agentes/wux_console_view.php:313 +#: ../../enterprise/operation/agentes/ux_console_view.php:189 +#: ../../enterprise/operation/agentes/wux_console_view.php:373 msgid "Execution results for transaction " msgstr "トランザクションの実行結果 " -#: ../../enterprise/operation/agentes/ux_console_view.php:257 -#: ../../enterprise/operation/agentes/wux_console_view.php:235 +#: ../../enterprise/operation/agentes/ux_console_view.php:280 +#: ../../enterprise/operation/agentes/wux_console_view.php:288 msgid "Global results" msgstr "全体の結果" -#: ../../enterprise/operation/agentes/ux_console_view.php:318 -#: ../../enterprise/operation/agentes/wux_console_view.php:418 +#: ../../enterprise/operation/agentes/ux_console_view.php:361 +#: ../../enterprise/operation/agentes/wux_console_view.php:526 msgid "Transaction history" msgstr "トランザクション履歴" -#: ../../enterprise/operation/agentes/ver_agente.php:225 +#: ../../enterprise/operation/agentes/ver_agente.php:234 msgid "URL Route Analyzer" msgstr "URL ルート分析" -#: ../../enterprise/operation/agentes/ver_agente.php:242 +#: ../../enterprise/operation/agentes/ver_agente.php:250 msgid "UX Console" msgstr "UX コンソール" -#: ../../enterprise/operation/agentes/ver_agente.php:259 +#: ../../enterprise/operation/agentes/ver_agente.php:266 msgid "WUX Console" msgstr "WUX コンソール" -#: ../../enterprise/operation/agentes/wux_console_view.php:64 +#: ../../enterprise/operation/agentes/wux_console_view.php:81 msgid "No wux transaction selected." msgstr "WUX トランザクションが選択されていません。" -#: ../../enterprise/operation/agentes/wux_console_view.php:120 +#: ../../enterprise/operation/agentes/wux_console_view.php:155 msgid "Phase modules not found" msgstr "フェーズモジュールがありません" -#: ../../enterprise/operation/agentes/wux_console_view.php:160 +#: ../../enterprise/operation/agentes/wux_console_view.php:215 msgid "Selected transaction has no stats" msgstr "選択したトランザクションに状態がありません" -#: ../../enterprise/operation/agentes/wux_console_view.php:168 +#: ../../enterprise/operation/agentes/wux_console_view.php:224 msgid "No WUX transactions found." msgstr "WUX トランザクションがありません。" -#: ../../enterprise/operation/agentes/wux_console_view.php:251 +#: ../../enterprise/operation/agentes/wux_console_view.php:317 msgid "Failed: " msgstr "失敗: " -#: ../../enterprise/operation/agentes/wux_console_view.php:286 +#: ../../enterprise/operation/agentes/wux_console_view.php:346 msgid "Success: " msgstr "成功: " -#: ../../enterprise/operation/agentes/wux_console_view.php:296 +#: ../../enterprise/operation/agentes/wux_console_view.php:356 msgid "Total transaction time: " msgstr "全トランザクション時間: " -#: ../../enterprise/operation/agentes/wux_console_view.php:455 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 msgid "Invalid transaction." msgstr "不正なトランザクション。" -#: ../../enterprise/operation/inventory/inventory.php:231 +#: ../../enterprise/operation/inventory/inventory.php:248 msgid "Order by agent" msgstr "エージェントで並べ替え" -#: ../../enterprise/operation/inventory/inventory.php:272 +#: ../../enterprise/operation/inventory/inventory.php:289 msgid "Export this list to CSV" msgstr "この一覧を CSV へエクスポートする" -#: ../../enterprise/operation/log/log_viewer.php:162 -#: ../../enterprise/operation/menu.php:144 +#: ../../enterprise/operation/log/log_viewer.php:315 +#: ../../enterprise/operation/menu.php:195 msgid "Log viewer" msgstr "ログ・ビューワ" -#: ../../enterprise/operation/log/log_viewer.php:181 +#: ../../enterprise/operation/log/log_viewer.php:338 msgid "All words" msgstr "全単語" -#: ../../enterprise/operation/log/log_viewer.php:181 +#: ../../enterprise/operation/log/log_viewer.php:339 msgid "Any word" msgstr "任意の単語" -#: ../../enterprise/operation/log/log_viewer.php:183 +#: ../../enterprise/operation/log/log_viewer.php:342 msgid "Search mode" msgstr "検索モード" -#: ../../enterprise/operation/log/log_viewer.php:191 +#: ../../enterprise/operation/log/log_viewer.php:371 msgid "Full context" msgstr "全内容" -#: ../../enterprise/operation/log/log_viewer.php:369 +#: ../../enterprise/operation/log/log_viewer.php:564 +msgid "Show log entries" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:565 +msgid "Graph log results" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:567 +msgid "Display mode" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:580 +msgid "Use capture model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:603 +msgid "Create new model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:610 +msgid "Graph type" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:782 msgid "The start date cannot be greater than the end date" msgstr "開始日は終了日より後にできません" -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:36 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:74 -msgid "List of networkmaps" -msgstr "ネットワークマップ一覧" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:42 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:80 -msgid "Edit networkmap" -msgstr "ネットワークマップ編集" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:48 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:86 -msgid "Deleted list" -msgstr "削除一覧" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:54 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:92 -msgid "View networkmap" -msgstr "ネットワークマップ表示" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:61 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:66 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:95 -msgid "List deleted items" -msgstr "削除アイテム一覧" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:108 -msgid "Successfully restore the item" -msgstr "アイテムのリストアをしました" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:109 -msgid "Could not be restore the item" -msgstr "アイテムのリストアができません" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:130 -msgid "Successfully restore the items" -msgstr "アイテムのリストアをしました" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:132 -msgid "Could not be restore the " -msgstr "リストアができません: " - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:136 -msgid "Not found networkmap" -msgstr "ネットワークマップがありません" - -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:140 -msgid "The items restored will be appear in the holding area." +#: ../../enterprise/operation/log/log_viewer.php:915 +msgid "Add new capture model" msgstr "" -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:160 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:227 -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:256 -msgid "Restore" +#: ../../enterprise/operation/log/log_viewer.php:918 +msgid "Edit capture model" msgstr "" -#: ../../enterprise/operation/maps/networkmap_list_deleted.php:170 -msgid "There are not nodes in the networkmap." +#: ../../enterprise/operation/log/log_viewer.php:1002 +msgid "Error create new model" msgstr "" -#: ../../enterprise/operation/menu.php:30 +#: ../../enterprise/operation/log/log_viewer.php:1029 +msgid "Error delete model" +msgstr "" + +#: ../../enterprise/operation/log/log_viewer.php:1075 +msgid "Error update model" +msgstr "" + +#: ../../enterprise/operation/menu.php:32 msgid "Cluster View" -msgstr "" +msgstr "クラスタ表示" -#: ../../enterprise/operation/menu.php:113 +#: ../../enterprise/operation/menu.php:157 msgid "Transactional map" -msgstr "" +msgstr "トランザクションマップ" -#: ../../enterprise/operation/menu.php:127 +#: ../../enterprise/operation/menu.php:174 msgid "Custom SQL" msgstr "カスタム SQL" -#: ../../enterprise/operation/reporting/custom_reporting.php:22 -msgid "" -"All the items are not available in CSV, only the previous versions ones." -msgstr "CSV内に全アイテムがありません。以前のバージョンのみです。" - -#: ../../enterprise/operation/reporting/custom_reporting.php:62 -#: ../../enterprise/operation/reporting/custom_reporting.php:85 +#: ../../enterprise/operation/reporting/custom_reporting.php:65 +#: ../../enterprise/operation/reporting/custom_reporting.php:119 msgid "Send by email" msgstr "Eメールで送信" -#: ../../enterprise/operation/reporting/custom_reporting.php:70 +#: ../../enterprise/operation/reporting/custom_reporting.php:73 msgid "ID Report" msgstr "レポートID" -#: ../../enterprise/operation/reporting/custom_reporting.php:109 +#: ../../enterprise/operation/reporting/custom_reporting.php:147 msgid "Send by email " msgstr "Eメールで送信 " -#: ../../enterprise/operation/services/services.list.php:44 -#: ../../enterprise/operation/services/services.list.php:52 +#: ../../enterprise/operation/services/services.list.php:41 +#: ../../enterprise/operation/services/services.table_services.php:38 +#: ../../enterprise/operation/services/services.treeview_services.php:40 msgid "Service table view" msgstr "サービス一覧表示" -#: ../../enterprise/operation/services/services.list.php:73 +#: ../../enterprise/operation/services/services.list.php:52 +#: ../../enterprise/operation/services/services.table_services.php:49 +#: ../../enterprise/operation/services/services.treeview_services.php:51 +msgid "Service tree view" +msgstr "" + +#: ../../enterprise/operation/services/services.list.php:77 msgid "Service deleted successfully" msgstr "サービスを削除しました" -#: ../../enterprise/operation/services/services.list.php:74 +#: ../../enterprise/operation/services/services.list.php:78 msgid "Error deleting service" msgstr "サービスの削除エラー" -#: ../../enterprise/operation/services/services.list.php:79 +#: ../../enterprise/operation/services/services.list.php:86 msgid "Service forced successfully" msgstr "サービスの強制実行をしました" -#: ../../enterprise/operation/services/services.list.php:80 +#: ../../enterprise/operation/services/services.list.php:87 msgid "Error service forced" msgstr "サービスの強制実行エラー" -#: ../../enterprise/operation/services/services.list.php:288 -#: ../../enterprise/operation/services/services.list.php:295 -#: ../../enterprise/operation/services/services.table_services.php:256 -#: ../../enterprise/operation/services/services.table_services.php:263 +#: ../../enterprise/operation/services/services.list.php:356 +#: ../../enterprise/operation/services/services.list.php:362 +#: ../../enterprise/operation/services/services.table_services.php:332 +#: ../../enterprise/operation/services/services.table_services.php:338 +#: ../../enterprise/operation/services/services.treeview_services.php:92 msgid "No services defined." msgstr "サービスが定義されていません" -#: ../../enterprise/operation/services/services.list.php:436 -#: ../../enterprise/operation/services/services.service.php:206 +#: ../../enterprise/operation/services/services.list.php:504 +#: ../../enterprise/operation/services/services.service.php:249 msgid "SLA graph" msgstr "SLA グラフ" -#: ../../enterprise/operation/services/services.service.php:102 +#: ../../enterprise/operation/services/services.list.php:508 +msgid "Status graph" +msgstr "" + +#: ../../enterprise/operation/services/services.service.php:134 msgid "No Services" msgstr "サービスがありません" -#: ../../enterprise/operation/services/services.service.php:216 +#: ../../enterprise/operation/services/services.service.php:260 msgid "List of elements" msgstr "要素一覧" -#: ../../index.php:769 +#: ../../index.php:908 msgid "User doesn\\'t exist." msgstr "ユーザが存在しません。" -#: ../../index.php:785 +#: ../../index.php:927 msgid "User only can use the API." msgstr "ユーザは API のみ利用可能" #~ msgid "Welcome to Pandora FMS Web Console" #~ msgstr "Pandora FMS の Web コンソールへようこそ" +#~ msgid "Pandora FMS Overview" +#~ msgstr "Pandora FMS 概要" + +#~ msgid "This is your last activity in Pandora FMS console" +#~ msgstr "Pandora FMS コンソールにおける最近の操作" + +#~ msgid "" +#~ "Access to this page is restricted to authorized users only, please contact " +#~ "system administrator if you need assistance.

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

    このページへのアクセスは、P" +#~ "andoraシステムデータベースのセキュリティログに記録されますので注意してください。" + +#~ msgid "Pandora FMS help system" +#~ msgstr "Pandora FMS ヘルプシステム" + +#~ msgid "" +#~ "Pandora FMS help system has been called with a help reference that currently " +#~ "don't exist. There is no help content to show." +#~ msgstr "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しません。" + +#~ msgid "Message overview" +#~ msgstr "メッセージ概要" + +#, php-format +#~ msgid "You have %d unread message(s)" +#~ msgstr "未読メッセージが %d 件あります。" + +#~ msgid "System alerts detected - Please fix as soon as possible" +#~ msgstr "システムアラートを検知しました。できるだけ早く修正してください。" + +#, php-format +#~ msgid "You have %d warning(s)" +#~ msgstr "警告が %d 件あります。" + +#~ msgid "" +#~ "Your session is over. Please close your browser window to close this Pandora " +#~ "session." +#~ msgstr "セッションを終了しました。ブラウザのウインドウを閉じてください。" + +#~ msgid "Pandora FMS Diagnostic tool" +#~ msgstr "Pandora FMS 診断ツール" + #~ msgid "Item" #~ msgstr "項目" #~ msgid "Data value" #~ msgstr "値" +#~ msgid "Global health" +#~ msgstr "全体の正常性" + +#~ msgid "Remote modules" +#~ msgstr "リモートモジュール数" + #~ msgid "Updated at realtime" #~ msgstr "リアルタイム更新" +#~ msgid "Could not be validated" +#~ msgstr "承諾に失敗しました。" + +#~ msgid "Map could not be generated" +#~ msgstr "マップを生成できません。" + +#~ msgid "Create networkmap" +#~ msgstr "ネットワークマップの作成" + +#~ msgid "times" +#~ msgstr "回" + #~ msgid "Criticity" #~ msgstr "危険度" -#~ msgid "Zoom" -#~ msgstr "ズーム" +#~ msgid "MTTR" +#~ msgstr "MTTR" + +#~ msgid "MTBF" +#~ msgstr "MTBF" + +#~ msgid "TTO" +#~ msgstr "TTO" + +#~ msgid "TTRT" +#~ msgstr "TTRT" + +#~ msgid "Alert report agent" +#~ msgstr "アラートレポートエージェント" + +#~ msgid "Alert report module" +#~ msgstr "アラートレポートモジュール" + +#, php-format +#~ msgid "Error updating passwords: %s" +#~ msgstr "パスワードの更新に失敗しました。:%s" + +#~ msgid "" +#~ "You can not change your password from Pandora FMS under the current " +#~ "authentication scheme" +#~ msgstr "現在の認証方式では、Pandora FMS からパスワードを変更できません。" + +#~ msgid "" +#~ "You can not change your user info from Pandora FMS under the current " +#~ "authentication scheme" +#~ msgstr "現在の認証方式では、Pandora FMS からユーザ情報を変更できません。" #~ msgid "This user doesn't have any assigned profile/group" #~ msgstr "このユーザには、プロファイル・グループが割り当てられていません。" @@ -37836,6 +46607,18 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Main event view" #~ msgstr "一覧" +#~ msgid "No events selected" +#~ msgstr "イベントが選択されていません。" + +#~ msgid "Successfully validated" +#~ msgstr "承諾しました。" + +#~ msgid "Successfully set in process" +#~ msgstr "処理中に設定しました。" + +#~ msgid "Could not be set in process" +#~ msgstr "処理中に設定できませんでした。" + #~ msgid "Autorefresh time" #~ msgstr "自動リフレッシュ時間" @@ -37848,6 +46631,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "There are no messages" #~ msgstr "あなた宛のメッセージはありません。" +#~ msgid "at" +#~ msgstr "時刻:" + #~ msgid "Network map deleted successfully" #~ msgstr "ネットワークマップを削除しました。" @@ -37902,6 +46688,27 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Map options" #~ msgstr "マップオプション" +#~ msgid "Full list of monitors" +#~ msgstr "モニタ項目一覧" + +#~ msgid "Load" +#~ msgstr "処理実行率" + +#~ msgid "Pandora FMS Graph configuration menu" +#~ msgstr "Pandora FMS グラフ設定メニュー" + +#~ msgid "Please, make your changes and apply with the Reload button" +#~ msgstr "変更後、再読み込みボタンを押してください。" + +#~ msgid "Avg. Only" +#~ msgstr "平均のみ" + +#~ msgid "Last position in " +#~ msgstr "最新の更新日時と位置: " + +#~ msgid "positional data" +#~ msgstr "位置データ" + #~ msgid "Assigned user" #~ msgstr "割り当てられたユーザ" @@ -37935,9 +46742,6 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Search string" #~ msgstr "検索文字列" -#~ msgid "Started" -#~ msgstr "起動" - #~ msgid "Workunits" #~ msgstr "操作単位" @@ -37959,12 +46763,143 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Generic upload error" #~ msgstr "一般アップロードエラー" +#~ msgid "CSV File" +#~ msgstr "CSVファイル" + +#~ msgid "Refresh: " +#~ msgstr "更新: " + +#~ msgid "Show agents by state: " +#~ msgstr "表示するエージェントの状態: " + +#~ msgid "Successfully deleted recon task" +#~ msgstr "自動検出処理を削除しました。" + +#~ msgid "Error deleting recon task" +#~ msgstr "自動検出処理の削除に失敗しました。" + +#~ msgid "Successfully updated recon task" +#~ msgstr "自動検出処理を更新しました。" + +#~ msgid "Error updating recon task" +#~ msgstr "自動検出処理の更新に失敗しました。" + #~ msgid "Network provided is not correct" #~ msgstr "指定されたネットワークは正しくありません。" +#~ msgid "Successfully created recon task" +#~ msgstr "自動検出処理を作成しました。" + +#~ msgid "Error creating recon task" +#~ msgstr "自動検出処理の作成に失敗しました。" + +#~ msgid "Ports" +#~ msgstr "ポート番号" + +#~ msgid "There are no recon task configured" +#~ msgstr "自動検出処理がありません。" + +#~ msgid "Pandora servers" +#~ msgstr "Pandora サーバ" + +#~ msgid "Recon server" +#~ msgstr "自動検出サーバ" + +#~ msgid "Recon script creation" +#~ msgstr "自動検出スクリプト作成" + +#~ msgid "Recon script update" +#~ msgstr "自動検出スクリプト更新" + +#~ msgid "Recon scripts registered in Pandora FMS" +#~ msgstr "Pandora FMS に定義されている自動検出スクリプト" + +#~ msgid "Problem deleting reconscript" +#~ msgstr "自動検出スクリプトの削除に失敗しました" + +#~ msgid "reconscript deleted successfully" +#~ msgstr "自動検出スクリプトを削除しました" + +#~ msgid "There are no recon scripts in the system" +#~ msgstr "自動検出スクリプトが定義されていません" + +#~ msgid "Plugin creation" +#~ msgstr "プラグインの作成" + +#~ msgid "Plugins registered in Pandora FMS" +#~ msgstr "Pandora FMS に登録済のプラグイン" + +#~ msgid "" +#~ "You must select a Recon Server for the Task, otherwise the Recon Task will " +#~ "never run" +#~ msgstr "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出は実行されません。" + +#~ msgid "Network sweep" +#~ msgstr "ネットワーク探査" + +#~ msgid "" +#~ "Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line " +#~ "format). If dont want to do a sweep using portscan, left it in blank" +#~ msgstr "" +#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 " +#~ "(nmapコマンドのフォーマット)のように記載します。ポートスキャンをしたくない場合は、空白にしてください。" + +#~ msgid "Choose if the discovery of a new system creates an incident or not." +#~ msgstr "新システム検出時のインシデント作成有無の選択" + +#~ msgid "" +#~ "The current authentication scheme doesn't support creating users from " +#~ "Pandora FMS" +#~ msgstr "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。" + +#~ msgid "Profiles defined in Pandora" +#~ msgstr "Pandora 内プロファイル" + +#~ msgid "Pandora management" +#~ msgstr "Pandora システム管理" + +#~ msgid "Users defined in Pandora" +#~ msgstr "Pandora 内ユーザ" + +#~ msgid "Groups defined in Pandora" +#~ msgstr "定義済みグループ" + +#~ msgid "Show branch children" +#~ msgstr "子の表示" + +#~ msgid "Module groups defined in Pandora" +#~ msgstr "Pandora に定義されているモジュールグループ" + +#~ msgid "Local Pandora FMS" +#~ msgstr "Pandora FMS ローカル" + +#~ msgid "Graphic resolution (1-low, 5-high)" +#~ msgstr "グラフ解像度 (1-低い,5-高い)" + +#~ msgid "Language code for Pandora" +#~ msgstr "Pandoraの言語" + +#~ msgid "" +#~ "If SSL is not properly configured you will lose access to Pandora FMS " +#~ "Console. Do you want to continue?" +#~ msgstr "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなります。設定を行いますか?" + +#~ msgid "Enable GIS features in Pandora Console" +#~ msgstr "コンソールで GIS 機能を利用する" + +#~ msgid "Enable Integria incidents in Pandora Console" +#~ msgstr "PandoraコンソールでIntegriaインシデントを有効にする" + #~ msgid "URL and/or Integria password are incorrect" #~ 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?" +#~ msgstr "" +#~ "ルール設定が無い状態でエンタープライズACLシステムが有効になっている場合は、(adminでさえも)Pandora FMS " +#~ "コンソールへアクセスできなくなります。続けますか。" + #~ msgid "There are no SNMP filters" #~ msgstr "SNMP フィルタがありません。" @@ -37973,9 +46908,24 @@ msgstr "ユーザは API のみ利用可能" #~ "the corresponding fields of this associated \"Default action\"." #~ msgstr "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィールドの設定が \"デフォルトアクション\" になります。" +#~ msgid "Show in two columns" +#~ msgstr "2カラムで表示" + +#~ msgid "Show in landscape" +#~ msgstr "横向きで表示" + #~ msgid "Items filter" #~ msgstr "アイテムフィルタ" +#~ msgid "Width proportional" +#~ msgstr "幅に比例" + +#~ msgid "Label color" +#~ msgstr "ラベルの色" + +#~ msgid "Pandora audit" +#~ msgstr "Pandoraの監査" + #~ msgid "G.F." #~ msgstr "G.F." @@ -38000,6 +46950,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "O." #~ msgstr "O." +#~ msgid "Agents defined in Pandora" +#~ msgstr "Pandora 内エージェント" + #~ msgid "There are no scheduled downtimes" #~ msgstr "計画停止は定義されていません。" @@ -38016,6 +46969,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Deleted data above %d" #~ msgstr "%d 以上のデータを削除しました。" +#~ msgid "No tags selected" +#~ msgstr "タグが選択されていません" + #~ msgid "DB maintenance" #~ msgstr "DBメンテナンス" @@ -38082,6 +47038,14 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Massive modules copy" #~ msgstr "複数モジュールコピー" +#~ msgid "" +#~ "Please check your Pandora Server setup and be sure that database maintenance " +#~ "daemon is running. It's very important to keep up-to-date database to get " +#~ "the best performance and results in Pandora" +#~ msgstr "" +#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてください。パフォーマンスを維持するためには、データベースを日々整理することが" +#~ "重要です。" + #~ msgid "Database maintenance" #~ msgstr "データベースメンテナンス" @@ -38250,12 +47214,15 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Purge all audit data" #~ msgstr "すべての監査データ削除" +#~ msgid "Update Layer" +#~ msgstr "レイヤの更新" + +#~ msgid "Number fired of alerts" +#~ msgstr "アラート発生数" + #~ msgid "Cannot read file" #~ msgstr "ファイルを読み込めません" -#~ msgid "System Info" -#~ 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 " @@ -38272,6 +47239,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Pandora Diagnostic info" #~ msgstr "Pandora 診断情報" +#~ msgid "System info" +#~ msgstr "システム情報" + #~ msgid "Log Info" #~ msgstr "ログ情報" @@ -38281,6 +47251,13 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Generate file" #~ 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). " +#~ msgstr "" +#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS 3.x " +#~ "フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 " + #~ msgid "VNC view" #~ msgstr "VNCビュー" @@ -38300,27 +47277,146 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Ping to " #~ msgstr "以下へのping " +#~ msgid "SNMPget executable does not exist." +#~ msgstr "snmpgetコマンドがありません。" + #~ msgid "File is too large (> 500KB)" #~ msgstr "ファイルが大きすぎます。(> 500KB)" +#, 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" +#~ msgstr "" +#~ "この拡張を使うと、リソーステンプレートの登録が簡単にできます。ここに、Pandora FMS 3.x フォーマット (.ptr) " +#~ "でリソーステンプレートをアップロードできます。Pandora FMS " +#~ "リソースの取得および利用方法については、ドキュメントを参照してください。

    リソースは、我々のPublic " +#~ "Resource Libraryから取得できます。" + +#~ msgid "" +#~ "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 を参照してください。" + +#~ msgid "Today" +#~ msgstr "今日" + +#~ msgid "Week" +#~ msgstr "週" + +#~ msgid "Months" +#~ msgstr "月" + +#~ msgid "Static graph" +#~ msgstr "状態を表すアイコン" + +#~ msgid "Default password for \"Admin\" user has not been changed." +#~ msgstr "\"Admin\" ユーザのデフォルトパスワードが変更されていません。" + +#~ msgid "" +#~ "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" +#~ msgstr "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認してください。" + +#~ msgid "Remote configuration directory is not writtable for the console" +#~ msgstr "コンソールから、リモート設定ディレクトリに書き込めません。" + +#~ msgid "Too much files in your tempora/attachment directory" +#~ 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" +#~ msgstr "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレクトリの手動での整理をお勧めします。" + +#~ msgid "files" +#~ msgstr "ファイル" + +#~ msgid "Database maintance problem" +#~ msgstr "データベースメンテナンスにおける問題" + +#~ msgid "" +#~ "Your database is not well maintained. Seems that it have more than 48hr " +#~ "without a proper maintance. Please review Pandora FMS documentation about " +#~ "how to execute this maintance process (pandora_db.pl) and enable it as soon " +#~ "as possible" +#~ msgstr "" +#~ "データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンスがされていないように見受けられます。メンテナンスプロセス(pandora_d" +#~ "b.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" +#~ msgstr "定義したフォントが存在しないかフォントが定義されていません。フォントパラメータの設定を確認してください。" + +#~ msgid "" +#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a " +#~ "developer mode and should be disabled in a production system. This value is " +#~ "written in the main index.php file" +#~ msgstr "" +#~ "この Pandora FMS は、\"develop_bypass\" " +#~ "モードが有効になっています。これは、これは開発用のモードであるため本番システムでは無効にしてください。この設定は、メインの index.php " +#~ "ファイルに書かれています。" + +#~ msgid "Alerts not fired" +#~ msgstr "未通知アラート" + +#~ msgid "Total alerts monitored" +#~ msgstr "モニタ中の全アラート" + +#~ msgid "Total monitors" +#~ msgstr "全モニタ" + +#~ msgid "Monitors down on period" +#~ msgstr "現時点で停止中のモニタ" + +#~ msgid "Monitors OK" +#~ msgstr "正常" + +#~ msgid "Monitors BAD" +#~ msgstr "障害" + #~ msgid "Inside limits" #~ msgstr "限度内" #~ msgid "On the edge" #~ msgstr "境界上" +#~ msgid "Actual" +#~ msgstr "実績" + +#~ msgid "Going down to critical state" +#~ msgstr "障害が発生しました。" + +#~ msgid "Recon server detected a new host" +#~ msgstr "自動検出サーバが新しいホストを見つけました。" + #~ msgid "Empty graph" #~ msgstr "空のグラフ" +#~ msgid "Recon view" +#~ msgstr "自動検出表示" + #~ msgid "License info" #~ msgstr "ライセンス情報" #~ msgid "License Info" #~ msgstr "ライセンス情報" -#~ msgid "Connect" -#~ msgstr "接続" - #~ msgid "You need to specify a user and a host address" #~ msgstr "ユーザとホストのアドレスを指定する必要があります" @@ -38368,6 +47464,9 @@ msgstr "ユーザは API のみ利用可能" #~ "SNMPモジュール作成エラー。snmp3_sec_level がありません。 'authNoPriv'、'authPriv'、noAuthNoPriv' " #~ "のいずれかを設定してください。 " +#~ msgid "Connection established...get last 24h messages..." +#~ msgstr "接続しました... 直近24時間のメッセージを取得します..." + #~ msgid "" #~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to " #~ "'MD5' or 'SHA'. " @@ -38418,9 +47517,32 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Error updating plugin module in policy. Module doesn't exists." #~ msgstr "ポリシーのプラグインモジュール更新エラー。モジュールが存在しません。" +#~ msgid "Go to agent detail" +#~ msgstr "エージェント詳細へ" + +#~ msgid "" +#~ "Are you sure to sort the items into the report?\\nThis action change the " +#~ "sorting of items into data base." +#~ msgstr "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの並びを変更します。" + +#~ msgid "" +#~ "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を自動的に更新するのに役に立つでしょう。" + #~ msgid "Map summary" #~ msgstr "マップ概要" +#~ msgid "Correct validating of all alerts." +#~ msgstr "全アラートの承諾内容を修正してください。" + #~ msgid "Error updating SNMP module in policy. Module doesn't exists." #~ msgstr "ポリシー内のSNMPモジュール更新エラー。モジュールが存在しません。" @@ -38447,6 +47569,15 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Error updating user. Id_user doesn't exists." #~ msgstr "ユーザ更新エラー。id_user が存在しません。" +#~ msgid "Error first setup Open update" +#~ msgstr "オープンアップデートの初期設定エラー" + +#~ msgid "New update of Pandora Console" +#~ msgstr "Pandora コンソールの新たな更新" + +#~ msgid "ITIL" +#~ msgstr "ITIL" + #~ msgid "" #~ "Error creating module from network component. Network component doesn't " #~ "exists." @@ -38455,6 +47586,32 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Error creating module from network component. Agent doesn't exists." #~ msgstr "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しません。" +#~ msgid "" +#~ "When the agent name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." +#~ msgstr "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があります。" + +#~ msgid "Error deleting event" +#~ msgstr "イベントの削除エラー" + +#~ msgid "" +#~ "When the module name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." +#~ msgstr "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があります。" + +#~ msgid "" +#~ "When the description name have a lot of characters, in some places in " +#~ "Pandora Console it is necesary truncate to N characters." +#~ msgstr "説明が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があります。" + +#~ msgid "" +#~ "When the item title name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." +#~ msgstr "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があります。" + +#~ msgid "Blank characters are used as AND conditions" +#~ msgstr "スペースは、AND 条件です。" + #~ msgid "Error deleting data" #~ msgstr "データ削除エラー" @@ -38491,6 +47648,11 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "There was a problem deteling incident" #~ msgstr "インシデントの削除に失敗しました" +#~ msgid "" +#~ "When it is set as \"yes\" in some important sections check if the user have " +#~ "gone from url Pandora." +#~ msgstr "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移してきたかどうかをチェックします。" + #~ msgid "Overlapped" #~ msgstr "重ね合わせ" @@ -38503,27 +47665,128 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Workunit added" #~ msgstr "ワークユニットを追加しました" +#~ msgid "Current data at" +#~ msgstr "次の日時のデータ:" + #~ msgid "There was a problem adding workunit" #~ msgstr "ワークユニット追加に失敗しました" #~ msgid "No Validated" #~ msgstr "未承諾" +#~ msgid "Get more modules in Pandora FMS Library" +#~ msgstr "Pandora FMS モジュールライブラリから新しいモジュールを手に入れる" + #~ msgid "Events by criticity" #~ msgstr "重要度で分類したイベント" +#~ msgid "Alert report group" +#~ msgstr "アラートレポートグループ" + #~ msgid "Port (use 0 for default)" #~ msgstr "ポート (デフォルトは 0)" +#~ msgid "PandoraFMS: Agents" +#~ msgstr "PandoraFMS: エージェント" + +#, php-format +#~ msgid "PandoraFMS: %s" +#~ msgstr "PandoraFMS: %s" + +#~ msgid "Error connecting to DB pandora." +#~ msgstr "pandora DB への接続エラー" + +#~ msgid "Avg Only" +#~ msgstr "平均のみ" + +#~ msgid "Pandora FMS mobile" +#~ msgstr "Pandora FMS モバイル" + +#~ msgid "Insert by Pandora Console" +#~ msgstr "Pandora コンソールによる挿入" + +#~ msgid "Update by Pandora Console" +#~ msgstr "Pandora コンソールによる更新" + +#~ msgid "" +#~ "Maximum number of parent hosts that will be created if parent detection is " +#~ "enabled." +#~ msgstr "親検出が有効の場合に、作成される親ホストの最大数です。" + +#~ msgid "Save by Pandora Console" +#~ msgstr "Pandora コンソールによる保存" + +#, php-format +#~ msgid "Filter Networkmaps by %s" +#~ msgstr "ネットワークマップフィルタ: %s" + +#~ msgid "No networkmaps" +#~ msgstr "ネットワークマップがありません" + +#~ msgid "Networkmaps" +#~ msgstr "ネットワークマップ" + #~ msgid "VNC Display (:0 by default)" #~ msgstr "VNC ディスプレイ (デフォルトは :0)" -#~ msgid "Send" -#~ msgstr "送信" +#~ msgid "" +#~ "User can customize the home page. By default, will display 'Agent Detail'. " +#~ "Example: Select 'Other' and type " +#~ "sec=estado&sec2=operation/agentes/estado_agente to show agent detail view" +#~ msgstr "" +#~ "ユーザはホームページをカスタマイズできます。デフォルトでは、'エージェント詳細' が表示されます。例: 'その他' " +#~ "を選択し、sec=estado&sec2=operation/agentes/estado_agente を入力すると、エージェント詳細が表示されます。" + +#~ msgid "" +#~ "By default, in Windows, Pandora FMS only support Standard network sweep, not " +#~ "custom scripts" +#~ msgstr "" +#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみの対応で、カスタムスクリプトは使えません。" + +#~ msgid "Protocol" +#~ msgstr "プロトコル" + +#~ msgid "Output format" +#~ msgstr "出力フォーマット" + +#~ msgid "Megabytes" +#~ msgstr "メガバイト" + +#~ msgid "Kilobytes per second" +#~ msgstr "キロバイト毎秒" + +#~ msgid "Megabytes per second" +#~ msgstr "メガバイト毎秒" + +#~ msgid "Export to CSV " +#~ msgstr "CSV へエクスポート " #~ msgid "Quiet: Disable modules that we indicate below." #~ msgstr "静観: 以下に示すモジュールを無効化します。" +#~ msgid "Only it is show when
    the agent is saved." +#~ msgstr "エージェントが保存されたときのみ
    表示されます。" + +#, php-format +#~ msgid "DEBUG: Invalid module type specified in %s:%s" +#~ msgstr "DEBUG: %s:%s に不正なモジュールタイプが指定されています" + +#~ msgid "" +#~ "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\t3) found a new bug - please report a way to duplicate this error" +#~ msgstr "" +#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれかが考えられます。
    \n" +#~ "\t\t\t\t1) データベース変換の実行し忘れ
    \n" +#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレポート #2124706 を参照)
    \n" +#~ "\t\t\t\t3) 新たなバグ - このエラーを再現する方法をレポートしてください" + +#~ msgid "Module macros" +#~ msgstr "モジュールマクロ" + #~ msgid "Cron" #~ msgstr "Cron" @@ -38551,6 +47814,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "There are no defined graphs" #~ msgstr "定義済のグラフがありません" +#~ msgid "The parent relationships in Pandora will be drawn in the map." +#~ msgstr "Pandora における親子関係がマップに表示されます。" + #~ msgid "Load default event fields" #~ msgstr "デフォルトイベントフィールドの読み込み" @@ -38560,16 +47826,56 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "No special days configured" #~ msgstr "特別日が設定されていません" +#~ msgid "Interactive charts" +#~ msgstr "動的グラフ" + +#~ msgid "Whether to use Javascript or static PNG graphs" +#~ msgstr "Javascript のグラフか静的な PNG のグラフ利用の選択" + +#~ msgid "" +#~ "Set this value when your PandoraFMS across inverse proxy or for example with " +#~ "mod_proxy of Apache." +#~ msgstr "" +#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利用している場合などに、この値を設定してください。" + +#~ msgid "" +#~ "The dir of custom logos is in your www Pandora Console in " +#~ "\"images/custom_logo\". You can upload more files (ONLY JPEG) in upload tool " +#~ "in console." +#~ msgstr "" +#~ "カスタムロゴのディレクトリは、Pandora コンソールの \"images/custom_logo\" " +#~ "です。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードできます。" + #~ msgid "Paginate module view" #~ msgstr "モジュール表示をページ分割" +#~ msgid "Show QR Code icon in the header" +#~ msgstr "ヘッダーに QR コードを表示する" + +#~ msgid "Fixed menu" +#~ msgstr "メニューの固定" + #~ msgid "The data number of the module graphs will be rounded and shortened" #~ msgstr "モジュールグラフのデータ数が四捨五入して短くなります" +#~ msgid "" +#~ "Enable this option if you want to fallback to local authentication when " +#~ "remote (ldap etc...) authentication failed." +#~ msgstr "リモート(ldapなど)認証が失敗した場合にローカル認証にフォールバックしたい場合は、このオプションを有効にします。" + +#~ msgid "To get your Pandora FMS Enterprise License:" +#~ msgstr "Pandora FMS Enterprise ライセンスの取得方法:" + #, php-format #~ msgid "The last version of package installed is: %d" #~ msgstr "インストール済の最新パッケージ: %d" +#, php-format +#~ msgid "" +#~ "Your PHP has set memory limit in %s. For avoid problems with big updates " +#~ "please set to 500M" +#~ msgstr "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 " @@ -38578,6 +47884,12 @@ msgstr "ユーザは API のみ利用可能" #~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェントおよびモジュール数) " #~ "を送信します。これを無効にするには、アップデートマネージャプラグインの設定で、リモートサーバアドレスを削除します。" +#~ 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." +#~ msgstr "" +#~ "このパッケージは既存の Pandora FMS ファイルを上書きすることに注意してください。アップデートを実行する前にバックアップを取得してください。" + #~ msgid "" #~ "If there are any database change, it will be applied on the next login." #~ msgstr "データベース変更がある場合は、次回のログイン時に適用されます。" @@ -38585,6 +47897,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Package not updated." #~ msgstr "パッケージは更新されませんでした。" +#~ msgid "Successfully deleted export target" +#~ msgstr "エクスポートターゲットを削除しました。" + #~ msgid "" #~ "In manual mode you should set the weights manually. In auto mode the weights " #~ "have default values.\n" @@ -38599,9 +47914,30 @@ msgstr "ユーザは API のみ利用可能" #~ "tsession_extended." #~ msgstr "拡張データが削除されているか、監査データが tsession_extended テーブルにありません。" +#~ msgid "Plug-in disabled succesfully" +#~ msgstr "プラグインを無効化しました" + +#~ msgid "Plug-in cannot be disabled" +#~ msgstr "プラグインを無効化できません" + +#~ msgid "Plug-in enabled succesfully" +#~ msgstr "プラグインを有効化しました" + +#~ msgid "Plug-in cannot be enabled" +#~ msgstr "プラグインを有効化できません" + +#~ msgid "7 days" +#~ msgstr "7日" + +#~ msgid "Update all" +#~ msgstr "全て更新" + #~ msgid "Group filter" #~ msgstr "グループフィルタ" +#~ msgid "Delete remote conf agent files in Pandora" +#~ msgstr "Pandora 内のリモートエージェント設定ファイル削除" + #~ msgid "HTTP auth (pass)" #~ msgstr "HTTP 認証 (パスワード)" @@ -38620,6 +47956,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Variable" #~ msgstr "値" +#~ msgid "Val." +#~ msgstr "Val." + #~ msgid "Massive alerts policy addition" #~ msgstr "一括アラートポリシー追加" @@ -38654,27 +47993,92 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Sets the maximum lifetime for log data in days." #~ msgstr "最大ログ保存日数を設定します。" +#~ msgid "Remote Pandora FMS" +#~ msgstr "リモートの Pandora FMS" + #~ msgid "Remote Babel Enterprise" #~ msgstr "リモートの Babel Enterprise" +#~ msgid "Remote Integria" +#~ msgstr "リモートの Integria" + +#~ msgid "Pandora FMS host" +#~ msgstr "Pandora FMS ホスト" + +#~ msgid "Or disable Pandora FMS enterprise" +#~ msgstr "または、Pandora FMS Enterprise を無効化します" + +#~ msgid "" +#~ "To continue using Pandora FMS, please disable enterprise by renaming the " +#~ "Enterprise directory in the console.

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

    Artica (info@artica.es) までライセンスに関してお問い合わせください:" + +#~ msgid "Please contact Artica at info@artica.es to renew the license." +#~ msgstr "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。" + +#~ msgid "Top N Events by agent." +#~ msgstr "エージェントごとのトップ N イベント" + +#~ msgid "Top N events by agent." +#~ msgstr "エージェントごとのトップ N イベント" + +#~ msgid "Latest events list" +#~ msgstr "最新のイベント一覧" + #~ msgid "Map made by user" #~ msgstr "ユーザ作成マップ" #~ msgid "Show a map made by user" #~ msgstr "ユーザ作成マップの表示" +#~ msgid "Alerts Fired" +#~ msgstr "発報したアラート" + +#~ msgid "Alerts Fired report" +#~ msgstr "発報アラートレポート" + +#~ msgid "Show a report made by user" +#~ msgstr "ユーザ作成レポートの表示" + +#~ msgid "Single graph" +#~ msgstr "単一グラフ" + +#~ msgid "Show a graph of an agent module" +#~ msgstr "エージェントモジュールのグラフ表示" + +#~ msgid "Show a top n of agents modules." +#~ msgstr "エージェントモジュールのトップ N 表示" + #~ msgid "Successful added modules" #~ msgstr "モジュールを追加しました" #~ msgid "Unsuccessful added modules" #~ msgstr "モジュールを追加できませんでした" +#~ msgid "Show the URL content" +#~ msgstr "URL のコンテンツ表示" + #~ msgid "Height in px (zero for auto)" #~ msgstr "ピクセル数による高さ (0 を指定すると自動)" +#~ msgid "My URL" +#~ msgstr "マイ URL" + #~ msgid "Invalid URL" #~ msgstr "不正な URL" +#~ msgid "Welcome message to Pandora FMS" +#~ msgstr "Pandora FMS へのウエルカムメッセージ" + +#~ msgid "Thanks for using Pandora FMS" +#~ msgstr "Pandora FMS のご利用ありがとうございます" + +#~ msgid "Show a map of the monitored network" +#~ msgstr "監視対象ネットワークのマップ表示" + #~ msgid "No overlap" #~ msgstr "重ね合わせなし" @@ -38693,6 +48097,30 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "12" #~ msgstr "12" +#~ msgid "Maps status" +#~ msgstr "マップ状態" + +#~ msgid "General and quick visual maps report" +#~ msgstr "一般およびクイックビジュアルマップレポート" + +#~ msgid "My Post" +#~ msgstr "記事" + +#~ msgid "Show a defined custom graph" +#~ msgstr "定義済カスタムグラフ表示" + +#~ msgid "General and quick group status report" +#~ msgstr "一般およびクイックグループ状態レポート" + +#~ msgid "Show a list of global monitor health" +#~ msgstr "全体の監視状態一覧の表示" + +#~ msgid "Top N Events by module." +#~ msgstr "モジュールごとのトップ N イベント" + +#~ msgid "Top N events by module." +#~ msgstr "モジュールごとのトップ N イベント" + #~ msgid "Dashboard replicate" #~ msgstr "ダッシュボードの複製" @@ -38756,12 +48184,24 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Add new dashboard view" #~ msgstr "新規ダッシュボード表示追加" +#~ msgid "Succesful updated" +#~ msgstr "更新しました" + +#~ msgid "Unsucessful updated" +#~ msgstr "更新に失敗しました" + +#~ msgid "Can't connect to Pandora FMS instance" +#~ msgstr "Pandora FMS インスタンスに接続できません" + #~ msgid "Please, set a valid IP address" #~ msgstr "正しい IP アドレスを設定してください" #~ msgid "Check this to copy user original profiles" #~ msgstr "ユーザのオリジナルプロファイルをコピーするには、これをチェックします" +#~ msgid "Visual" +#~ msgstr "表示" + #~ msgid "" #~ "Complete path to Pandora console without last \"/\" character. Example " #~ msgstr "最後の \"/\" を除いた Pandora コンソールの完全パス。例 " @@ -38860,6 +48300,30 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Cannot connect to %s Pandora to generate networkmap." #~ msgstr "ネットワークマップを生成するために %s Pandora へ接続できません" +#~ msgid "Create new module" +#~ msgstr "新規モジュール作成" + +#~ msgid "Go to module detail" +#~ msgstr "モジュール詳細へ" + +#~ msgid "Create new alert" +#~ msgstr "新規アラート作成" + +#~ msgid "There was a problem loading alert" +#~ msgstr "アラート読み込みに問題が発生しました。" + +#~ msgid "Stand By" +#~ msgstr "スタンバイ" + +#~ msgid "Go to Alert detail" +#~ msgstr "アラート詳細へ" + +#~ msgid "Delete alert" +#~ msgstr "アラート削除" + +#~ msgid "There was a problem loading tag" +#~ msgstr "タグのロードで問題が発生しました" + #~ msgid "Copy Dashboard" #~ msgstr "ダッシュボードのコピー" @@ -38906,6 +48370,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Details of node:" #~ msgstr "ノードの詳細:" +#~ msgid "Pandora database backup utility" +#~ msgstr "Pandora データベースバックアップユーティリティ" + #~ msgid "This is the automatic generated report" #~ msgstr "これは自動生成レポートです" @@ -38918,6 +48385,20 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Cron extension is not running" #~ msgstr "Cron 実行が稼動していません" +#~ msgid "Cron extension has never run or it's not configured well" +#~ msgstr "Cron 拡張は、正しく設定しないと動作しません" + +#~ msgid "" +#~ "This extension relies on a proper setup of cron, the time-based scheduling " +#~ "service" +#~ msgstr "この拡張は、時間で実行する cron の設定に依存します。" + +#~ msgid "Please, add the following line to your crontab file" +#~ msgstr "次の行を crontab に追加してください" + +#~ msgid "Cron extension is running" +#~ msgstr "Cron 実行が動作中です" + #~ msgid "First_execution" #~ msgstr "初回実行" @@ -38929,21 +48410,28 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "First execution" #~ msgstr "初回実行" +#~ msgid "CSV import" +#~ msgstr "CSV インポート" + +#, php-format +#~ msgid "Created agent %s" +#~ msgstr "エージェント %s を作成しました" + #~ msgid "Summary of SLA Fails" #~ msgstr "SLA 範囲外のサマリ" #~ msgid "Radius" #~ msgstr "半径" -#~ msgid "Color" -#~ msgstr "色" - #~ msgid "Network map linked" #~ msgstr "リンクされたネットワークマップ" #~ msgid "Show modules:" #~ msgstr "モジュール表示:" +#~ msgid "Trial" +#~ msgstr "試用" + #~ msgid "Group does not exist. Agent " #~ msgstr "グループが存在しません。エージェント " @@ -38956,6 +48444,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Group already exists in destination DB" #~ msgstr "移行先 DB にすでにグループがあります" +#~ msgid "Automated Pandora FMS report for user defined report" +#~ msgstr "ユーザ定義レポートの Pandora FMS による自動生成" + #~ msgid "Generated: " #~ msgstr "生成日: " @@ -38968,6 +48459,34 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "CONTENTS" #~ msgstr "目次" +#~ msgid "SO" +#~ msgstr "OS" + +#~ msgid "There are no modules." +#~ msgstr "モジュールがありません。" + +#~ msgid "Restoring a Pandora database backup must be done manually" +#~ msgstr "Pandora データベースバックアップのリストは、手動実行する必要があります" + +#~ msgid "Run import command using the following command" +#~ msgstr "次のコマンドを使って、インポートコマンドを実行します" + +#~ msgid "Into your destination database." +#~ msgstr "対象データベースに入ります。" + +#~ msgid "Update to the last version" +#~ msgstr "最新版に更新" + +#~ msgid "" +#~ "\"Translate string\" extension is missed in the server. This extension is " +#~ "mandatory to be configured on metaconsole." +#~ msgstr "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が必須です。" + +#~ msgid "" +#~ "Server name doesnt match. Check the node server name and configure the same " +#~ "one on metasetup" +#~ msgstr "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか確認してください" + #~ msgid "Module store the service does not exist." #~ msgstr "サービスを保存するモジュールがありません。" @@ -39004,6 +48523,17 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Error updating user pass (no change?)" #~ 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!" +#~ msgstr "" +#~ "初めての Pandora FMS の利用であれば、Pandora FMS " +#~ "に関して学べるいくつかのリンクを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには時間が必要です。" + +#~ msgid "Go to Pandora FMS Website" +#~ msgstr "Pandora FMS のウェブサイトへ" + #~ msgid "" #~ "Pandora FMS frontend is built on advanced, modern technologies and does not " #~ "support old browsers." @@ -39028,6 +48558,15 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Continue despite this warning" #~ msgstr "警告を無視して続ける" +#~ msgid "QR Code of the page" +#~ msgstr "ページの QR コード" + +#~ msgid "Pandora FMS assistant" +#~ msgstr "Pandora FMS アシスタント" + +#~ msgid "There are not warnings" +#~ msgstr "警告はありません" + #~ msgid "Press here to activate shortcut bar" #~ msgstr "ショートカットバーを有効にするにはここをクリックしてください" @@ -39037,6 +48576,14 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Create new message" #~ msgstr "新規メッセージの作成" +#~ msgid "Bytes per second" +#~ msgstr "バイト/秒" + +#~ msgid "" +#~ "Agent statuses are re-calculated by the server, they are not shown in real " +#~ "time." +#~ msgstr "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されません。" + #~ msgid "one combined graph" #~ msgstr "一つの組み合わせグラフ" @@ -39055,9 +48602,20 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "L2 network interfaces" #~ msgstr "L2 ネットワークインタフェース" +#~ msgid "" +#~ "Show events is disabled because this Pandora node is set the event " +#~ "replication." +#~ msgstr "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効です。" + +#~ msgid "Show event graph" +#~ msgstr "イベントグラフ表示" + #~ msgid "Alerts found" #~ msgstr "アラートが見つかりました" +#~ msgid "Helps found" +#~ msgstr "ヘルプがあります" + #~ msgid "Show events graph" #~ msgstr "イベントグラフ表示" @@ -39072,6 +48630,17 @@ msgstr "ユーザは API のみ利用可能" #~ "information" #~ msgstr "アラート、イベント、メッセージ等の情報でショートカットバーを有効にします。" +#~ msgid "Helps" +#~ msgstr "ヘルプ" + +#, php-format +#~ msgid "" +#~ "You can find more help in the Pandora's wiki" +#~ msgstr "" +#~ "より詳細は、Pandora の " +#~ "wikiを参照してください" + #~ msgid "" #~ "There is a error in the message from your Integria or there is not " #~ "connection." @@ -39083,6 +48652,24 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Closed tickets" #~ msgstr "クローズしたチケット" +#~ msgid "If it is empty, Pandora searchs the traceroute system." +#~ msgstr "空の場合、Pandora はシステムから traceroute を探します。" + +#~ msgid "If it is empty, Pandora searchs the ping system." +#~ msgstr "空の場合、Pandora はシステムから ping を探します。" + +#~ msgid "If it is empty, Pandora searchs the nmap system." +#~ msgstr "空の場合、Pandora はシステムから nmap を探します。" + +#~ msgid "If it is empty, Pandora searchs the dig system." +#~ msgstr "空の場合、Pandora はシステムから dig を探します。" + +#~ msgid "If it is empty, Pandora searchs the snmpget system." +#~ msgstr "空の場合、Pandora はシステムから snmpget を探します。" + +#~ msgid "Pandora Console URL" +#~ msgstr "Pandora コンソール URL" + #~ msgid "No options selected" #~ msgstr "オプションが選択されていません" @@ -39092,10 +48679,34 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "At least one option must be selected" #~ msgstr "少なくとも一つのオプションを選択する必要があります" +#~ msgid "Pandora Server CPU" +#~ msgstr "Pandora サーバ CPU" + +#~ msgid "Pandora Server Pending packets" +#~ msgstr "Pandora サーバ処理待ちデータ" + +#~ msgid "Pandora Server Disk IO Wait" +#~ msgstr "Pandora サーバ ディスク I/O ウエイト" + +#~ msgid "Pandora Server Apache load" +#~ msgstr "Pandora サーバ Apache のロード" + +#~ msgid "Pandora Server MySQL load" +#~ msgstr "Pandora サーバ MySQL のロード" + +#~ msgid "Pandora Server load" +#~ msgstr "Pandora サーバのロード" + #, php-format #~ msgid "For security reasons the following characters are not allowed: %s" #~ msgstr "セキュリティ上の理由により、次の文字は利用できません: %s" +#~ msgid "Netflow pie chart" +#~ msgstr "Netflow 円グラフ" + +#~ msgid "Netflow statistics table" +#~ msgstr "Netflow 統計表" + #~ msgid "Agent address" #~ msgstr "エージェントアドレス" @@ -39105,9 +48716,6 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Minimal" #~ msgstr "最小" -#~ msgid "Maximun" -#~ msgstr "最大" - #, php-format #~ msgid "Agent '%s'" #~ msgstr "エージェント '%s'" @@ -39115,12 +48723,34 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "The configuration of email for the task email is in the file:" #~ 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." +#~ msgstr "" +#~ "自己紹介をさせてください。私は Pandora FMS のおせっかいなアシスタント Pandorin です。Pandora FMS " +#~ "の基本的な操作をお教えします。私を閉じて再表示しないようにもできます。" + +#~ msgid "Ping to a Linux or Windows server with a Pandora FMS agent" +#~ 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." +#~ msgstr "最初にやるべきことは、Pandora FMS サーバでの email の設定です。" + #~ msgid "Error updating special day. Id doesn't exists." #~ msgstr "特別日更新エラー。IDが存在しません。" #~ msgid "Error deleting special day. Id doesn't exists." #~ msgstr "特別日削除エラー。IDが存在しません。" +#~ msgid "Target IP cannot be blank." +#~ msgstr "対象IPが指定されていません" + +#~ msgid "Problem with Pandora FMS database" +#~ msgstr "Pandora FMS データベースに問題があります" + #~ msgid "" #~ "Cannot connect to the database, please check your database setup in the " #~ "include/config.php file.

    \n" @@ -39133,6 +48763,54 @@ msgstr "ユーザは API のみ利用可能" #~ "\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\";
    " +#~ msgstr "" +#~ "認証システムを変更した場合この問題が発生します。Pandora " +#~ "は、データベース設定では認証方法を上書きできないためです。次のクエリを実行することにより、それらをデータベースから削除してください。: " +#~ "
    DELETE FROM tconfig WHERE token = \"auth\";
    " + +#~ msgid "" +#~ "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.
    " +#~ msgstr "" +#~ "データベースから設定を読み込めません。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." +#~ msgstr "" +#~ "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." +#~ msgstr "" +#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはなりません。\n" +#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削除してください。" + #~ msgid "" #~ "For security reasons, config.php must have restrictive permissions, " #~ "and \"other\" users \n" @@ -39151,33 +48829,156 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Auto Save" #~ msgstr "自動保存" +#~ msgid "Could not be save" +#~ msgstr "保存できませんでした" + +#~ msgid "" +#~ "You can not delete the last group in Pandora. A common installation must has " +#~ "almost one group." +#~ msgstr "最後のグループは削除できません。通常、1つはグループが設定されていなければなりません。" + +#~ msgid "Pie graph and Summary table" +#~ msgstr "円グラフとサマリ表" + +#~ msgid "Statistics table" +#~ msgstr "状態表" + +#~ msgid "10 mins" +#~ msgstr "10 分" + +#~ msgid "15 mins" +#~ msgstr "15 分" + +#~ msgid "30 mins" +#~ msgstr "30 分" + +#~ msgid "5 days" +#~ msgstr "5日" + +#~ msgid "Last year" +#~ msgstr "過去1年" + +#~ msgid "1 min" +#~ msgstr "1 分" + +#~ msgid "2 mins" +#~ msgstr "2 分" + +#~ msgid "5 mins" +#~ msgstr "5 分" + +#~ msgid "Aggregate" +#~ msgstr "集約" + +#~ msgid "Error generating report" +#~ msgstr "レポート生成エラー" + +#~ msgid "MB" +#~ msgstr "MB" + +#~ msgid "MB/s" +#~ msgstr "MB/s" + +#~ msgid "kB" +#~ msgstr "kB" + +#~ msgid "kB/s" +#~ msgstr "kB/s" + +#~ msgid "B/s" +#~ msgstr "B/s" + +#~ msgid "Source ID" +#~ msgstr "ソース ID" + +#~ msgid "Remote configuration directory is not readble for the console" +#~ msgstr "リモート設定ディレクトリがコンソールから読めません" + +#~ msgid "PHP safe mode is enabled. Some features may not properly work." +#~ 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)" +#~ msgstr "" +#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定します。 (変更後、apache " +#~ "プロセスの再起動を忘れずに行ってください)" + #~ msgid "For to view the list modules paginated, set in setup visuals." #~ msgstr "ページ分割されたモジュール一覧表示は、画面設定で設定してください。" #~ msgid "Events info (1hr)" #~ msgstr "イベント情報 (1時間)" +#~ msgid "" +#~ "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 "この設定を変更したあとは、サーバを再起動する必要があります。" + +#~ msgid "History db" +#~ msgstr "ヒストリデータベース" + +#~ msgid "Only average" +#~ msgstr "平均のみ" + +#~ msgid "Show address instead module name." +#~ 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" +#~ msgstr "" +#~ "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" +#~ msgstr "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時に問題にならないよう、100M に設定してください。" + #~ msgid "Module data received" #~ msgstr "データ受信モジュール" +#~ msgid "" +#~ "Unsucessful delete profile. Because the profile is used by some admin users." +#~ msgstr "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われいます。" + #~ msgid "Unsuccessfull multiple delete." #~ msgstr "複数削除に失敗しました。" +#~ msgid "Problems with disable functions in PHP.INI" +#~ msgstr "PHP.INI で無効化された機能の問題" + #~ msgid "Poling time" #~ msgstr "ポーリング時間" #~ msgid "Contact:" #~ msgstr "連絡先:" +#~ msgid "Please contact Artica at info@artica.es for a valid licence." +#~ msgstr "ライセンスについては、Artica(info@artica.es) までご連絡ください。" + #~ msgid "Activate licence" #~ msgstr "ライセンスの有効化" #~ msgid "E-mail:" #~ msgstr "メールアドレス:" +#~ msgid "" +#~ "The user doesn't have permission to read agents. Please contact with your " +#~ "pandora administrator." +#~ msgstr "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してください。" + #~ msgid "Please choose other server." #~ msgstr "他のサーバを選択してください。" +#~ msgid "Show the tree view" +#~ msgstr "ツリービューの表示" + #~ msgid "# Failed" #~ msgstr "失敗数" @@ -39190,6 +48991,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Time unavailable" #~ msgstr "利用不能時間" +#~ msgid "Last activity in Pandora FMS console" +#~ msgstr "Pandora FMS コンソールの最新の操作" + #~ msgid "Display proc modules in binary format (OK/FAIL)" #~ msgstr "二値フォーマット(OK/FAIL)での proc モジュールの表示" @@ -39199,6 +49003,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "OLD PASS: " #~ msgstr "旧パスワード: " +#~ msgid "When connecting to Artica server." +#~ msgstr "Artica サーバへの接続時" + #, php-format #~ msgid "" #~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not " @@ -39217,6 +49024,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgstr "" #~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすることができます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。" +#~ msgid "No tag selected" +#~ msgstr "タグが選択されていません" + #~ msgid "The session may be expired" #~ msgstr "セッションの有効期限が切れました" @@ -39226,12 +49036,15 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "There was an error loading the network map" #~ msgstr "ネットワークマップの読み込みでエラーが発生しました" -#~ msgid "DB Status" -#~ msgstr "DB の状態" +#~ msgid "Create Recon Task" +#~ msgstr "自動検出タスクの作成" #~ msgid "Unsuccessful installed enterprise tables into the testing DB" #~ msgstr "テスト DB への enterprise テーブル設定に失敗しました" +#~ msgid "Successful the DB Pandora has all tables" +#~ msgstr "DB Pandora にはすべてのテーブルが揃っています" + #, php-format #~ msgid "" #~ "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" @@ -39273,6 +49086,24 @@ msgstr "ユーザは API のみ利用可能" #~ "SQL file." #~ msgstr "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定されている必要があります。" +#~ msgid "Units. Value" +#~ msgstr "単位" + +#~ msgid "Units" +#~ msgstr "単位" + +#~ msgid "Index of images" +#~ msgstr "画像一覧" + +#~ msgid "You can not get updates until you renew the license." +#~ msgstr "ライセンスを更新するまで更新は入手できません。" + +#~ msgid "This license has expired." +#~ msgstr "このライセンスは期限切れです。" + +#~ msgid "Could not be create, duplicated server name." +#~ msgstr "作成できませんでした。同じサーバ名があります。" + #~ msgid "Store group" #~ msgstr "保存グループ" @@ -39287,6 +49118,9 @@ msgstr "ユーザは API のみ利用可能" #~ "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 " @@ -39295,6 +49129,24 @@ msgstr "ユーザは API のみ利用可能" #~ "不正なクエリ。セキュリティ上の制約により次のトークンやワードは利用でません: *, 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." +#~ msgstr "" +#~ "新たな更新があります。詳細は、管理メニューのアップデートマネージャを参照してください。" + +#~ msgid "Netflow Pie" +#~ msgstr "NetFlow円グラフ" + +#~ msgid "" +#~ "Variable disable_functions containts functions system() or exec(), in PHP " +#~ "configuration file (php.ini)" +#~ msgstr "" +#~ "PHP 設定ファイル(php.ini)において、disable_functions 変数に system() または exec() 関数が含まれています。" + #~ msgid "" #~ "Please check the SQL file for to know the kind of extra config needed." #~ msgstr "必要な追加設定を知るには、SQL ファイルを確認してください。" @@ -39327,6 +49179,12 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Networkmap list" #~ msgstr "ネットワークマップ一覧" +#~ msgid "There are no recon task defined yet." +#~ msgstr "自動検出タスクが定義されていません。" + +#~ msgid "Graph resolution (1-low, 5-high)" +#~ msgstr "グラフ解像度 (1-低, 5-高)" + #~ msgid "Error enable/disable user. The user doesn't exists." #~ msgstr "ユーザの有効化/無効化エラー。ユーザが存在しません。" @@ -39343,6 +49201,21 @@ msgstr "ユーザは API のみ利用可能" #~ "href=\"index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=on" #~ "line\">アップデートマネージャを参照してください。" +#~ 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 " +#~ 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

    多くのプラグインを、我々のリソースライブラリから取得できます。 " + #~ msgid "Masive tags module policy edition" #~ msgstr "一括タグモジュールポリシー編集" @@ -39352,6 +49225,24 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Display proc modules in binary format (OK/FAIL)." #~ 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" +#~ "\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および カスタムタイプです。独自の検出スクリプトを定義することもできます。" + #~ msgid "" #~ "A service is a way to group your IT resources based on their " #~ "functionalities. \n" @@ -39374,6 +49265,32 @@ msgstr "ユーザは API のみ利用可能" #~ "\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. " +#~ msgstr "" +#~ "Pandora FMS には、計画停止を管理するシステムがあります。\n" +#~ "\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. " +#~ msgstr "" +#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセスを設定できます。\n" +#~ "\t\t\t\t\t\t\t\tタグは、システム上で設定し、選択したモジュールに割り当てます。\n" +#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限定することができます。 " + #~ msgid "Another collection with the same short name" #~ msgstr "同一の短縮名で別のコレクションがあります" @@ -39386,21 +49303,112 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Filter by tag" #~ 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" +#~ 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" + +#~ msgid "Recon-task name already exists" +#~ msgstr "自動検出タスク名がすでに存在します" + +#~ msgid "Recon-task name already exists and incorrect format in Subnet field" +#~ msgstr "自動検出タスク名がすでに存在しサブネットの記述が不正です。" + +#~ msgid "Wrong format in Subnet field" +#~ msgstr "サブネットの記述が不正です" + #~ msgid "Advance Config AD" #~ msgstr "AD 拡張設定" +#~ msgid "" +#~ "Pandora FMS allows you to create visual maps in which each user is able to " +#~ "create his own monitoring map.\n" +#~ "\t\t\tThe new visual console editor is much more practical, although the old " +#~ "visual console editor had its advantages. \n" +#~ "\t\t\tWithin the new visual console, we've been successful in imitating the " +#~ "sensation and touch of a drawing application like GIMP. \n" +#~ "\t\t\tWe've also simplified the editor by dividing it into several subject-" +#~ "matter tabs named 'Data', 'Preview', 'Wizard', 'List of Elements' and " +#~ "'Editor'.\n" +#~ "\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are " +#~ "'static image', 'percentage bar', 'module graph' and 'simple value'. " +#~ msgstr "" +#~ "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パーセント表示" +#, php-format +#~ msgid "Percentile %dº" +#~ 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." +#~ msgstr "" +#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表示します。\n" +#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作したタイミングで生成され、最新の状態を表示します。\n" +#~ "\t\t\t\tグラフには 2つのタイプがあります。エージェントで自動生成されるグラフと、1つ以上のモジュールを使ってユーザがカスタマイズしたグラフです。" + #~ msgid "Error in creation synthetic module. Agent name doesn't exists." #~ msgstr "統合モジュール作成エラー。エージェント名が存在しません。" +#~ msgid "Agent min" +#~ msgstr "最小エージェント" + +#~ msgid "Different name" +#~ msgstr "異なる名前" + +#~ msgid "Different parent" +#~ 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" +#~ msgstr "" +#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシステム管理者へ連絡してください。\n" +#~ "\t\t\t\t\t
    このページへの全アクセスは Pandora システムデータベースのセキュリティログに記録されます。" + #~ msgid "Login off" #~ msgstr "ログオフ" #~ msgid "Pandora Support" #~ msgstr "Pandora サポート" +#~ msgid "Go to pandorafms.com" +#~ msgstr "pandorafms.com へ行く" + #~ msgid "Pandora Help" #~ msgstr "Pandora ヘルプ" @@ -39415,11 +49423,85 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Generate networkmap with parents relationships" #~ msgstr "親子関係をもってネットワークマップを生成" +#~ 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" +#~ msgstr "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送します" + #~ msgid "" #~ "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 "ダイナミックレポートの生成" + +#~ msgid "Pandora FMS instance identification wizard" +#~ msgstr "Pandora FMS インスタンス識別ウィザード" + +#~ msgid "Join the Pandora FMS community" +#~ msgstr "Pandora FMS コミュニティに参加する" + +#~ msgid "Do you want to continue without any registration" +#~ msgstr "登録せずに進みますか" + +#~ msgid "The Pandora FMS community wizard" +#~ msgstr "Pandora FMS コミュニティウィザード" + +#~ msgid "Required" +#~ msgstr "必須" + +#~ msgid "Return" +#~ 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" +#~ msgstr "" +#~ "同様に、ニュースレターの購読をすると、あなたのメールアドレスが Artica TS のデータベースに登録されることに合意いただくことになります。これは " +#~ "Pandora FMS " +#~ "に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありません。ニュースレターの購読オプションでいつでも登録解除を行うことができます。" + +#~ 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" +#~ msgstr "" +#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータベースにあなたの Pandora " +#~ "インスタンスを識別する情報を登録することに合意いただくことになります。これは Pandora FMS " +#~ "に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありません。アップデートマネージャオプションからいつでもデータベースの登録解除を行うことが" +#~ "できます。" + +#~ msgid "Stay up to date with the Pandora FMS community" +#~ msgstr "Pandora FMS コミュニティで最新情報を確認してください" + +#~ msgid "The format is: [url='url to navigate']'text to show'[/url]" +#~ msgstr "フォーマット: [url='url to navigate']'表示するテキスト'[/url]" + +#~ msgid "e.g.: [url=pandorafms.org]Pandora FMS Community[/url]" +#~ 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 インスタンスを正しく設定するために、以下の情報を入力してください" + +#~ msgid "Hide not init agents" +#~ msgstr "未初期化エージェントを隠す" + #~ msgid "e.g., switch.ehorus.com" #~ msgstr "例: switch.ehorus.com" @@ -39431,18 +49513,216 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Display lateral menus with click" #~ msgstr "クリックで横のメニューを表示" +#~ msgid "audit log directory" +#~ msgstr "監査ログディレクトリ" + +#~ msgid "Mark as not read" +#~ msgstr "未読にする" + +#~ msgid "Update manager messages" +#~ msgstr "アップデートマネージャのメッセージ" + +#~ msgid "There is not any update manager messages." +#~ msgstr "アップデートマネージャのメッセージはありません。" + +#~ msgid "Mark as read" +#~ msgstr "既読にする" + +#~ msgid "" +#~ "Click here to start the " +#~ "newsletter subscription process" +#~ msgstr "" +#~ "ニュースレターの購読を開始するには こちら をクリックしてください" + +#~ msgid "This instance is not registered in the Update manager" +#~ msgstr "このインスタンスはアップデートマネージャに登録されていません" + +#, php-format +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "Not subscribed to the newsletter" +#~ msgstr "ニュースレターを購読していません" + +#~ msgid "Already subscribed to Pandora FMS newsletter" +#~ msgstr "Pandora FMS ニュースレターは購読済です" + +#, php-format +#~ msgid "Error creating/updating %s/%s module groups" +#~ msgstr "モジュールグループの作成(%s)/更新(%s)エラー" + +#~ msgid "Show a service map" +#~ 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." +#~ msgstr "" +#~ "アップデートマネージャは、Pandora FMS " +#~ "の利用状況の情報(実行しているエージェントとモジュール数)を送信します。無効化するには、アップデートマネージャプラグインの設定からリモートサーバのアドレス" +#~ "を削除します。" + +#~ msgid "" +#~ "Do you want to consolidate all your system monitoring? Do you have many " +#~ "systems, making it difficult to manage them in a comprehensive manner? Would " +#~ "you like to deploy monitoring, alerts and even local plugins with a single " +#~ "click? 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を参照してください。" + +#~ 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." +#~ msgstr "" +#~ "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" +#~ msgstr "" +#~ "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." +#~ msgstr "" +#~ "アップデートマネージャクライアントは、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" +#~ msgstr "" +#~ "このページへのアクセスは許可されたユーザのみ可能です。手助けが必要であればシステム管理者へ連絡してください。

    \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." +#~ msgstr "" +#~ "Enterprise版のレポートはより強力です。ウィザードがあり、決めたスケジュールで PDF " +#~ "を送信することができます。また、あなたの顧客ごとに個別のレポートを素早く作成できるテンプレートシステムがあります。作成したテンプレートから、顧客自身が独自" +#~ "のレポートを生成することもできます。レポートがビジネスにとって重要であるならば、Pandora FMS Enteprise はあなたの要望にマッチします。" + +#~ msgid "critical" +#~ msgstr "障害" + +#~ msgid "Show module value" +#~ msgstr "モジュールの値表示" + +#~ msgid "Status of module" +#~ msgstr "モジュールの状態" + +#~ msgid "Show status of a module" +#~ msgstr "モジュールの状態表示" + +#~ msgid "Show a value of module and icon" +#~ msgstr "モジュールの値とアイコンを表示" + +#~ msgid "Show a value of module" +#~ msgstr "モジュールの値表示" + +#~ msgid "Show a value of module in a table" +#~ msgstr "表にモジュールの値を表示" + +#~ msgid "Open all nodes" +#~ msgstr "すべてのノードを開く" + #~ msgid "Custom logo in login" #~ msgstr "ログイン時のカスタムロゴ" +#~ msgid "Agent min Value" +#~ msgstr "エージェント最小値" + +#~ msgid "Update manager » Messages" +#~ 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" +#~ "\t\t\tthe database server is not running." +#~ msgstr "" +#~ "データベースに接続できません。 include/config.php " +#~ "ファイル内のデータベースの設定を確認してください。

    \n" +#~ "\t\t\tおそらく、データベース名、ホスト名、ユーザ名またはパスワードの値が不正か、\n" +#~ "\t\t\tデータベースが動作していません。" + #~ msgid "The last version of package installed is:" #~ msgstr "インストールされている最新バージョンのパッケージ:" #~ 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." +#~ msgstr "" +#~ "セキュリティ上の理由により、 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パーセント" +#~ msgid "Module with icon" +#~ msgstr "モジュールとアイコン" + +#~ msgid " of module " +#~ msgstr " のモジュール " + +#~ msgid "Time Not init" +#~ msgstr "未初期化時間" + +#~ msgid "Total Time" +#~ msgstr "合計時間" + +#~ msgid "Ignore time" +#~ msgstr "除外時間" + +#~ msgid "Total Checks" +#~ msgstr "合計確認数" + +#~ msgid "Ignore Time" +#~ 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 " @@ -39451,9 +49731,21 @@ msgstr "ユーザは API のみ利用可能" #~ "イベントの削除タイミングを、ヒストリデータベースへイベントを移す日よりも短く設定していると、問題が発生しデータを失ってしまいます。イベントの削除は、ヒスト" #~ "リデータベースへイベントを移す日よりも後に設定してください。" +#~ msgid "Time Uknown" +#~ msgstr "不明時間" + #~ msgid "Allows only show the average in graphs" #~ msgstr "グラフで平均のみの表示をします" +#~ msgid "Legend Graph" +#~ msgstr "グラフの凡例" + +#~ msgid "Default show only average or min and max" +#~ msgstr "平均のみまたは最小と最大のみ表示のデフォルト" + +#~ msgid "Main help" +#~ 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 " @@ -39469,9 +49761,42 @@ msgstr "ユーザは API のみ利用可能" #~ "\t公式ドキュメントをダウンロード" +#~ msgid "Time Downtimes" +#~ msgstr "計画停止時間" + +#~ msgid "Please select Agent" +#~ msgstr "エージェントを選択してください" + +#~ msgid "® Ártica ST" +#~ msgstr "® Ãrtica ST" + +#~ msgid "Show Agent/Module View" +#~ msgstr "エージェント/モジュール表示" + +#~ msgid "Show SLA percent" +#~ msgstr "SLA パーセント表示" + +#~ msgid "Please check that the web server has write rights on the file" +#~ msgstr "ウェブサーバがファイルに対して書き込み権限があるか確認してください。" + +#~ msgid "The file is not readable by HTTP Server" +#~ msgstr "HTTP サーバからファイルを読めません" + +#~ msgid "The file does not exists" +#~ msgstr "ファイルが存在しません" + +#~ msgid "WMware Plugin Settings" +#~ msgstr "VMware プラグイン設定" + +#~ msgid "The file is not writable by HTTP Server" +#~ msgstr "HTTP サーバからファイルに書き込めません" + #~ msgid "Config Path" #~ msgstr "設定パス" +#~ msgid "Plugin Path" +#~ msgstr "プラグインパス" + #~ msgid "There was an error updating the execution data of the plugin" #~ msgstr "プラグインの実行データ更新エラーです" @@ -39481,6 +49806,9 @@ msgstr "ユーザは API のみ利用可能" #~ msgid "Top 5 VMs Disk Usage" #~ msgstr "ディスク使用率上位 5位内のVM" +#~ msgid "Datacenter Name" +#~ msgstr "データセンター名" + #~ msgid "Plugin execution" #~ msgstr "プラグイン実行" From eb9b11631148d35625e34e319fa676224af9522a Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 24 Apr 2020 01:00:16 +0200 Subject: [PATCH 044/110] 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 a64ebd7f35..94198d1c9a 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200423 +Version: 7.0NG.745-200424 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 59654342d0..966069bcfd 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.745-200423" +pandora_version="7.0NG.745-200424" 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 9e38f93984..acb04ee0db 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200423'; +use constant AGENT_BUILD => '200424'; # 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 e06376c023..8401cca315 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_unix %define version 7.0NG.745 -%define release 200423 +%define release 200424 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 893dc9a083..7b2d0b89e3 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200423 +%define release 200424 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 f82994c52f..57fcad2029 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200423" +PI_BUILD="200424" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index c49dc28603..40c7370ace 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200423} +{200424} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 262ff19c42..82dd5450ab 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.745(Build 200423)") +#define PANDORA_VERSION ("7.0NG.745(Build 200424)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index db7cba9c6d..4aadb725b2 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.745(Build 200423))" + VALUE "ProductVersion", "(7.0NG.745(Build 200424))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index b7440c743e..66ec3fb756 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200423 +Version: 7.0NG.745-200424 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 dbf958094c..865a0628d6 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.745-200423" +pandora_version="7.0NG.745-200424" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8979eb857e..81a477425e 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 = 'PC200423'; +$build_version = 'PC200424'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 7151d2666d..2de0ce72a6 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index b63b9ae230..9ee333e45a 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.745 -%define release 200423 +%define release 200424 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 0cd3b1f631..2ae77c611f 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.745 -%define release 200423 +%define release 200424 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 8cb19b8914..af4ac92908 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200423" +PI_BUILD="200424" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 1b562a04f9..d2af8e23b8 100644 --- 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.745 PS200423"; +my $version = "7.0NG.745 PS200424"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index f646090ee2..daf349ecb0 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.745 PS200423"; +my $version = "7.0NG.745 PS200424"; # save program name for logging my $progname = basename($0); From ef30239cc611d37d494d8bc8e7669a861059786e Mon Sep 17 00:00:00 2001 From: marcos Date: Fri, 24 Apr 2020 16:43:18 +0200 Subject: [PATCH 045/110] add delete confirmation dialog --- pandora_console/views/dashboard/cell.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/views/dashboard/cell.php b/pandora_console/views/dashboard/cell.php index ab7a9c4457..16631e10b5 100644 --- a/pandora_console/views/dashboard/cell.php +++ b/pandora_console/views/dashboard/cell.php @@ -58,7 +58,7 @@ if ($manageDashboards !== 0) { $output .= ' '; } - $output .= ''; + $output .= ''; $output .= html_print_image( 'images/input_delete_white.png', true, From 202816e309c098b26e51fcc6291e0502313bc134 Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 25 Apr 2020 01:00:18 +0200 Subject: [PATCH 046/110] 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 94198d1c9a..adc3ca46ae 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200424 +Version: 7.0NG.745-200425 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 966069bcfd..dfcf4c1ddf 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.745-200424" +pandora_version="7.0NG.745-200425" 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 acb04ee0db..c28b1f3c82 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200424'; +use constant AGENT_BUILD => '200425'; # 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 8401cca315..058618e76b 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_unix %define version 7.0NG.745 -%define release 200424 +%define release 200425 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 7b2d0b89e3..6858f636e6 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200424 +%define release 200425 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 57fcad2029..a3ca3a1b80 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200424" +PI_BUILD="200425" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 40c7370ace..5522dcaa40 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200424} +{200425} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 82dd5450ab..3bf838f4a3 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.745(Build 200424)") +#define PANDORA_VERSION ("7.0NG.745(Build 200425)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 4aadb725b2..bc7350bd3b 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.745(Build 200424))" + VALUE "ProductVersion", "(7.0NG.745(Build 200425))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 66ec3fb756..2d89b03785 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200424 +Version: 7.0NG.745-200425 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 865a0628d6..9588dab06c 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.745-200424" +pandora_version="7.0NG.745-200425" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 81a477425e..0345707c51 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 = 'PC200424'; +$build_version = 'PC200425'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 2de0ce72a6..d6f7bc4c28 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 9ee333e45a..01c7b52fc9 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.745 -%define release 200424 +%define release 200425 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 2ae77c611f..e13e918490 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.745 -%define release 200424 +%define release 200425 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index af4ac92908..85321505e6 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200424" +PI_BUILD="200425" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index d2af8e23b8..88be02361e 100644 --- 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.745 PS200424"; +my $version = "7.0NG.745 PS200425"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index daf349ecb0..c79782e7e0 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.745 PS200424"; +my $version = "7.0NG.745 PS200425"; # save program name for logging my $progname = basename($0); From bf0596e978cb2b19954c6cb6798b80e8cab11da9 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 26 Apr 2020 01:00:15 +0200 Subject: [PATCH 047/110] 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 adc3ca46ae..cf84a95ad5 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200425 +Version: 7.0NG.745-200426 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 dfcf4c1ddf..3635b8085c 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.745-200425" +pandora_version="7.0NG.745-200426" 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 c28b1f3c82..154964ab82 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200425'; +use constant AGENT_BUILD => '200426'; # 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 058618e76b..0919243997 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_unix %define version 7.0NG.745 -%define release 200425 +%define release 200426 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 6858f636e6..43033b3c00 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200425 +%define release 200426 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 a3ca3a1b80..8e82df05c6 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200425" +PI_BUILD="200426" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 5522dcaa40..dd867da27b 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200425} +{200426} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 3bf838f4a3..06e36c2873 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.745(Build 200425)") +#define PANDORA_VERSION ("7.0NG.745(Build 200426)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index bc7350bd3b..5665dcb97d 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.745(Build 200425))" + VALUE "ProductVersion", "(7.0NG.745(Build 200426))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 2d89b03785..960f8e357a 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200425 +Version: 7.0NG.745-200426 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 9588dab06c..57cb117b0c 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.745-200425" +pandora_version="7.0NG.745-200426" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 0345707c51..850b0d9d20 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 = 'PC200425'; +$build_version = 'PC200426'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index d6f7bc4c28..4407c78c19 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 01c7b52fc9..faac65a3fb 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.745 -%define release 200425 +%define release 200426 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index e13e918490..4f97c0176e 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.745 -%define release 200425 +%define release 200426 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 85321505e6..9eba95e8f6 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200425" +PI_BUILD="200426" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 88be02361e..ad1ca0b1e0 100644 --- 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.745 PS200425"; +my $version = "7.0NG.745 PS200426"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index c79782e7e0..4b86076e5e 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.745 PS200425"; +my $version = "7.0NG.745 PS200426"; # save program name for logging my $progname = basename($0); From a986ed0a4877ff5a63784e96bb14bd18cec3e760 Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 27 Apr 2020 01:00:15 +0200 Subject: [PATCH 048/110] 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 cf84a95ad5..b0e1dfd2fa 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200426 +Version: 7.0NG.745-200427 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 3635b8085c..a18b44f7bb 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.745-200426" +pandora_version="7.0NG.745-200427" 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 154964ab82..dcc75385d5 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200426'; +use constant AGENT_BUILD => '200427'; # 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 0919243997..8ec5f51840 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_unix %define version 7.0NG.745 -%define release 200426 +%define release 200427 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 43033b3c00..13df17a99f 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200426 +%define release 200427 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 8e82df05c6..9346e31820 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200426" +PI_BUILD="200427" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index dd867da27b..34903208e7 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200426} +{200427} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 06e36c2873..4b8214678b 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.745(Build 200426)") +#define PANDORA_VERSION ("7.0NG.745(Build 200427)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 5665dcb97d..7ac9c876cb 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.745(Build 200426))" + VALUE "ProductVersion", "(7.0NG.745(Build 200427))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 960f8e357a..af9777b590 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200426 +Version: 7.0NG.745-200427 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 57cb117b0c..dd2d124fa0 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.745-200426" +pandora_version="7.0NG.745-200427" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 850b0d9d20..aaad3eac16 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 = 'PC200426'; +$build_version = 'PC200427'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 4407c78c19..fdec4bda99 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index faac65a3fb..b86b94cc6c 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.745 -%define release 200426 +%define release 200427 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 4f97c0176e..c47d8ec0d4 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.745 -%define release 200426 +%define release 200427 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 9eba95e8f6..d84959849e 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200426" +PI_BUILD="200427" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ad1ca0b1e0..ca35510679 100644 --- 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.745 PS200426"; +my $version = "7.0NG.745 PS200427"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 4b86076e5e..f806e39455 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.745 PS200426"; +my $version = "7.0NG.745 PS200427"; # save program name for logging my $progname = basename($0); From ccd58897eed567b44792bc798163714900337a03 Mon Sep 17 00:00:00 2001 From: marcos Date: Mon, 27 Apr 2020 16:40:50 +0200 Subject: [PATCH 049/110] Add confirmation window --- .../include/javascript/pandora_dashboards.js | 14 ++++++++++++-- pandora_console/views/dashboard/cell.php | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/javascript/pandora_dashboards.js b/pandora_console/include/javascript/pandora_dashboards.js index 4cc52254c0..73e85ec2d4 100644 --- a/pandora_console/include/javascript/pandora_dashboards.js +++ b/pandora_console/include/javascript/pandora_dashboards.js @@ -244,8 +244,18 @@ function initialiceLayout(data) { } $("#delete-widget-" + id).click(function(event) { - var nodo = event.target.offsetParent; - deleteCell(id, nodo.parentNode); + // eslint-disable-next-line no-undef + confirmDialog({ + title: "Are you sure?", + message: "", + cancel: "Cancel", + ok: "Ok", + onAccept: function() { + // Continue execution. + var nodo = event.target.offsetParent; + deleteCell(id, nodo.parentNode); + } + }); }); $("#configure-widget-" + id).click(function() { diff --git a/pandora_console/views/dashboard/cell.php b/pandora_console/views/dashboard/cell.php index 16631e10b5..ab7a9c4457 100644 --- a/pandora_console/views/dashboard/cell.php +++ b/pandora_console/views/dashboard/cell.php @@ -58,7 +58,7 @@ if ($manageDashboards !== 0) { $output .= ' '; } - $output .= ''; + $output .= ''; $output .= html_print_image( 'images/input_delete_white.png', true, From d644714fcbf4802a5955bbc8ba55168159cd3cda Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 28 Apr 2020 01:00:18 +0200 Subject: [PATCH 050/110] 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 b0e1dfd2fa..523181e2f2 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200427 +Version: 7.0NG.745-200428 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 a18b44f7bb..755ad44239 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.745-200427" +pandora_version="7.0NG.745-200428" 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 dcc75385d5..0e18dfdd7c 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200427'; +use constant AGENT_BUILD => '200428'; # 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 8ec5f51840..11fade9631 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_unix %define version 7.0NG.745 -%define release 200427 +%define release 200428 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 13df17a99f..7bc044126b 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200427 +%define release 200428 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 9346e31820..5f1c0c695f 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200427" +PI_BUILD="200428" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 34903208e7..c7c5a370ec 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200427} +{200428} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 4b8214678b..60999e7bcb 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.745(Build 200427)") +#define PANDORA_VERSION ("7.0NG.745(Build 200428)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 7ac9c876cb..0ea81cdbe2 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.745(Build 200427))" + VALUE "ProductVersion", "(7.0NG.745(Build 200428))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index af9777b590..0bf20c5534 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200427 +Version: 7.0NG.745-200428 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 dd2d124fa0..714cdb78f5 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.745-200427" +pandora_version="7.0NG.745-200428" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index aaad3eac16..b5ef2ab619 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 = 'PC200427'; +$build_version = 'PC200428'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index fdec4bda99..e5d18e26cb 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index b86b94cc6c..5a35c1ee3b 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.745 -%define release 200427 +%define release 200428 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index c47d8ec0d4..d56bb7210e 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.745 -%define release 200427 +%define release 200428 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index d84959849e..c76b610c95 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200427" +PI_BUILD="200428" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ca35510679..5f0a7553c8 100644 --- 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.745 PS200427"; +my $version = "7.0NG.745 PS200428"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index f806e39455..9ce644e612 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.745 PS200427"; +my $version = "7.0NG.745 PS200428"; # save program name for logging my $progname = basename($0); From 8cd1c0b83f01c4ddcbbd5bba767c694a07faa84c Mon Sep 17 00:00:00 2001 From: marcos Date: Tue, 28 Apr 2020 10:12:20 +0200 Subject: [PATCH 051/110] add body message on confirmation modal --- pandora_console/include/javascript/pandora_dashboards.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/pandora_dashboards.js b/pandora_console/include/javascript/pandora_dashboards.js index 73e85ec2d4..83723c4718 100644 --- a/pandora_console/include/javascript/pandora_dashboards.js +++ b/pandora_console/include/javascript/pandora_dashboards.js @@ -247,7 +247,8 @@ function initialiceLayout(data) { // eslint-disable-next-line no-undef confirmDialog({ title: "Are you sure?", - message: "", + message: + "

    If you delete it, will can't be recovered

    ", cancel: "Cancel", ok: "Ok", onAccept: function() { From 8d733398875d6cf83ba441b74eaa8fb42214c9f8 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 28 Apr 2020 10:37:09 +0200 Subject: [PATCH 052/110] Windows environment spaces in binary file names --- pandora_server/lib/PandoraFMS/Tools.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index 10f57b1e15..c3182f9d41 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -1458,7 +1458,7 @@ sub pandora_block_ping($@) { if (-x $pa_config->{'fping'}) { # fping timeout in milliseconds - $cmd = $pa_config->{'fping'} . " -a -q -t " . (1000 * $pa_config->{'networktimeout'}) . " " . (join (' ', @hosts)); + $cmd = '"'.$pa_config->{'fping'} . '" -a -q -t ' . (1000 * $pa_config->{'networktimeout'}) . " " . (join (' ', @hosts)); @output = `$cmd 2>$DEVNULL`; } else { # Ping scan From 72f9c051eb1f8af5ba13fc61b7ea6b9f8ef0c544 Mon Sep 17 00:00:00 2001 From: marcos Date: Tue, 28 Apr 2020 10:44:13 +0200 Subject: [PATCH 053/110] changed message confirmation dialog --- pandora_console/include/javascript/pandora_dashboards.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/pandora_dashboards.js b/pandora_console/include/javascript/pandora_dashboards.js index 83723c4718..842bd5daaa 100644 --- a/pandora_console/include/javascript/pandora_dashboards.js +++ b/pandora_console/include/javascript/pandora_dashboards.js @@ -248,7 +248,7 @@ function initialiceLayout(data) { confirmDialog({ title: "Are you sure?", message: - "

    If you delete it, will can't be recovered

    ", + "

    All changes made to this widget will be lost

    ", cancel: "Cancel", ok: "Ok", onAccept: function() { From 744bac67362e0b431f1c268f6ae5c6e22edfe267 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 28 Apr 2020 11:21:33 +0200 Subject: [PATCH 054/110] avoid problems while encoding json --- .../lib/PandoraFMS/DiscoveryServer.pm | 26 ++++++++++++------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 8cee68d538..55764c5ddd 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1684,17 +1684,23 @@ sub PandoraFMS::Recon::Base::update_progress ($$) { my ($self, $progress) = @_; my $stats = {}; - if (defined($self->{'summary'}) && $self->{'summary'} ne '') { - $stats->{'summary'} = $self->{'summary'}; + eval { + local $SIG{__DIE__}; + if (defined($self->{'summary'}) && $self->{'summary'} ne '') { + $stats->{'summary'} = $self->{'summary'}; + } + + $stats->{'step'} = $self->{'step'}; + $stats->{'c_network_name'} = $self->{'c_network_name'}; + $stats->{'c_network_percent'} = $self->{'c_network_percent'}; + + # Store progress, last contact and overall status. + db_do ($self->{'dbh'}, 'UPDATE trecon_task SET utimestamp = ?, status = ?, summary = ? WHERE id_rt = ?', + time (), $progress, encode_json($stats), $self->{'task_id'}); + }; + if ($@) { + $self->call('Message', "Problems updating progress $@"); } - - $stats->{'step'} = $self->{'step'}; - $stats->{'c_network_name'} = $self->{'c_network_name'}; - $stats->{'c_network_percent'} = $self->{'c_network_percent'}; - - # Store progress, last contact and overall status. - db_do ($self->{'dbh'}, 'UPDATE trecon_task SET utimestamp = ?, status = ?, summary = ? WHERE id_rt = ?', - time (), $progress, encode_json($stats), $self->{'task_id'}); } 1; From 3ad1b5f2e3a23b099e5064b4bd3e43798a80d0f8 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 28 Apr 2020 12:19:46 +0200 Subject: [PATCH 055/110] trace if failed to encode json (summary) --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 55764c5ddd..631194e212 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1694,12 +1694,16 @@ sub PandoraFMS::Recon::Base::update_progress ($$) { $stats->{'c_network_name'} = $self->{'c_network_name'}; $stats->{'c_network_percent'} = $self->{'c_network_percent'}; + my %t = %{$stats}; + # Store progress, last contact and overall status. db_do ($self->{'dbh'}, 'UPDATE trecon_task SET utimestamp = ?, status = ?, summary = ? WHERE id_rt = ?', - time (), $progress, encode_json($stats), $self->{'task_id'}); + time (), $progress, encode_json(\%t), $self->{'task_id'}); }; if ($@) { - $self->call('Message', "Problems updating progress $@"); + $self->call('message', "Problems updating progress $@", 5); + db_do ($self->{'dbh'}, 'UPDATE trecon_task SET utimestamp = ?, status = ?, summary = ? WHERE id_rt = ?', + time (), $progress, "{}", $self->{'task_id'}); } } From 2bfee57a67efb1390876e5509bce9efc783dc973 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 28 Apr 2020 12:46:13 +0200 Subject: [PATCH 056/110] perl multilib json workaround --- .../lib/PandoraFMS/DiscoveryServer.pm | 16 +++--- pandora_server/lib/PandoraFMS/Tools.pm | 54 +++++++++++++++++++ 2 files changed, 61 insertions(+), 9 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 631194e212..b8b6f228e9 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -26,7 +26,7 @@ use Thread::Semaphore; use IO::Socket::INET; use POSIX qw(strftime ceil); -use JSON qw(decode_json encode_json); +use JSON; use Encode qw(encode_utf8); use MIME::Base64; @@ -336,14 +336,14 @@ sub exec_recon_script ($$$) { my $macros = safe_output($task->{'macros'}); - # \r and \n should be escaped for decode_json(). + # \r and \n should be escaped for p_decode_json(). $macros =~ s/\n/\\n/g; $macros =~ s/\r/\\r/g; my $decoded_macros; if ($macros) { eval { - $decoded_macros = decode_json(encode_utf8($macros)); + $decoded_macros = p_decode_json($pa_config, $macros); }; } @@ -980,7 +980,7 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { my $data; eval { local $SIG{__DIE__}; - $data = decode_json(decode_base64($row->{'data'})); + $data = p_decode_json($self->{'pa_config'}, decode_base64($row->{'data'})); }; if ($@) { $self->call('message', "ERROR JSON: $@", 3); @@ -1245,7 +1245,7 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { eval { local $SIG{__DIE__}; $encoded = encode_base64( - encode_json($data) + p_encode_json($self->{'pa_config'}, $data) ); }; @@ -1344,7 +1344,7 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { eval { local $SIG{__DIE__}; $encoded = encode_base64( - encode_json($self->{'agents_found'}->{$addr}) + p_encode_json($self->{'pa_config'}, $self->{'agents_found'}->{$addr}) ); }; @@ -1694,11 +1694,9 @@ sub PandoraFMS::Recon::Base::update_progress ($$) { $stats->{'c_network_name'} = $self->{'c_network_name'}; $stats->{'c_network_percent'} = $self->{'c_network_percent'}; - my %t = %{$stats}; - # Store progress, last contact and overall status. db_do ($self->{'dbh'}, 'UPDATE trecon_task SET utimestamp = ?, status = ?, summary = ? WHERE id_rt = ?', - time (), $progress, encode_json(\%t), $self->{'task_id'}); + time (), $progress, p_encode_json($self->{'pa_config'}, $stats), $self->{'task_id'}); }; if ($@) { $self->call('message', "Problems updating progress $@", 5); diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index c3182f9d41..4b1486f0ef 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -31,6 +31,9 @@ use LWP::UserAgent; use threads; use threads::shared; +use JSON; +use Encode qw/decode_utf8 encode_utf8/; + use lib '/usr/lib/perl5'; use PandoraFMS::Sendmail; @@ -152,6 +155,8 @@ our @EXPORT = qw( dateTimeToTimestamp get_user_agent ui_get_full_url + p_encode_json + p_decode_json ); # ID of the different servers @@ -2353,6 +2358,55 @@ sub ui_get_full_url { } +################################################################################ +# Encodes a json. +################################################################################ +sub p_encode_json { + my ($pa_config, $data) = @_; + + # Initialize JSON manager. + my $json = JSON->new->allow_nonref; + my $encoded_data; + + eval { + local $SIG{__DIE__}; + if ($JSON::VERSION > 2.90) { + $encoded_data = $json->encode($data); + } else { + $encoded_data = encode_utf8($json->encode($data)); + } + }; + if ($@){ + if (defined($data)) { + logger($pa_config, 'Failed to encode data: '.$@, 5); + } + } + + return $encoded_data; +} + +################################################################################ +# Dencodes a json. +################################################################################ +sub p_decode_json { + my ($pa_config, $data) = @_; + + # Initialize JSON manager. + my $json = JSON->new->allow_nonref; + my $decoded_data; + + if ($JSON::VERSION > 2.90) { + $decoded_data = $json->decode($data); + } else { + if (!is_empty($decoded_data)) { + $decoded_data = decode_json($data); + } + } + + return $decoded_data; +} + + 1; __END__ From dfa31d5227746e79de02e086fb0a8bd1787f7a9b Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 28 Apr 2020 13:26:57 +0200 Subject: [PATCH 057/110] updates --- pandora_server/lib/PandoraFMS/Recon/Base.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index 4b3a920f9f..bbe7802097 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -2109,16 +2109,16 @@ sub snmp_get_value($$$) { my ($self, $device, $oid) = @_; my $effective_oid = $oid; - if (is_enabled($self->{'translate_snmp'})) { + if (is_enabled($self->{'translate_snmp'}) && $oid !~ /^[\.\d]+$/) { $effective_oid = `snmptranslate $oid -On 2>$DEVNULL`; - chomp($effective_oid); + $effective_oid =~ s/[\r\n]//g; } my @output = $self->snmp_get($device, $effective_oid); - + foreach my $line (@output) { - chomp($line); - return $1 if ($line =~ /^$effective_oid\s+=\s+\S+:\s+(.*)$/); + $line =~ s/[\r\n]//g; + return $1 if ($line =~ /^$effective_oid\s+=\s+\S+:\s+(.*)/); } return undef; From bcc68c00342ad946d8767d20ba5852a8e488784d Mon Sep 17 00:00:00 2001 From: marcos Date: Tue, 28 Apr 2020 13:42:27 +0200 Subject: [PATCH 058/110] add modal on Webchat --- pandora_console/operation/users/webchat.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/pandora_console/operation/users/webchat.php b/pandora_console/operation/users/webchat.php index 809ccaa000..86b2da9a3c 100644 --- a/pandora_console/operation/users/webchat.php +++ b/pandora_console/operation/users/webchat.php @@ -111,6 +111,18 @@ echo "
    ".html_print_button( var first_time = true; $(document).ready(function() { + confirmDialog({ + title: "Attention", + message: + "

    This feature will be removed from the console in the next version of Pandora FMS.

    If you want to keep the history, make a backup.

    ", + cancel: "Cancel", + ok: "Ok", + onAccept: function() { + // Continue execution. + var nodo = event.target.offsetParent; + deleteCell(id, nodo.parentNode); + } + }); $("input[name=\"message_box\"]").keydown(function(e) { //Enter key. if (e.keyCode == 13) { From 2d48c6737743debede14bb751b187b03ea886388 Mon Sep 17 00:00:00 2001 From: marcos Date: Tue, 28 Apr 2020 13:56:43 +0200 Subject: [PATCH 059/110] add modal on Webchat --- pandora_console/operation/users/webchat.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pandora_console/operation/users/webchat.php b/pandora_console/operation/users/webchat.php index 86b2da9a3c..94eb12ddcf 100644 --- a/pandora_console/operation/users/webchat.php +++ b/pandora_console/operation/users/webchat.php @@ -118,9 +118,7 @@ echo "
    ".html_print_button( cancel: "Cancel", ok: "Ok", onAccept: function() { - // Continue execution. - var nodo = event.target.offsetParent; - deleteCell(id, nodo.parentNode); + // Nothing to do. } }); $("input[name=\"message_box\"]").keydown(function(e) { From 456848485e0ed2d3e49369b61b677d40a7714592 Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 29 Apr 2020 01:00:16 +0200 Subject: [PATCH 060/110] 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 523181e2f2..b708dce8e6 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200428 +Version: 7.0NG.745-200429 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 755ad44239..69f07f1867 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.745-200428" +pandora_version="7.0NG.745-200429" 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 0e18dfdd7c..33c760d6e7 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200428'; +use constant AGENT_BUILD => '200429'; # 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 11fade9631..6cca8e9045 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_unix %define version 7.0NG.745 -%define release 200428 +%define release 200429 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 7bc044126b..4468620be4 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200428 +%define release 200429 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 5f1c0c695f..63be0a81a0 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200428" +PI_BUILD="200429" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index c7c5a370ec..842fab367d 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200428} +{200429} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 60999e7bcb..33bb9d924c 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.745(Build 200428)") +#define PANDORA_VERSION ("7.0NG.745(Build 200429)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 0ea81cdbe2..afad38a508 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.745(Build 200428))" + VALUE "ProductVersion", "(7.0NG.745(Build 200429))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 0bf20c5534..80657291b8 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200428 +Version: 7.0NG.745-200429 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 714cdb78f5..112641ee54 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.745-200428" +pandora_version="7.0NG.745-200429" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index b5ef2ab619..5f9108d553 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 = 'PC200428'; +$build_version = 'PC200429'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index e5d18e26cb..9709ddabc3 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 5a35c1ee3b..5ae8014aa5 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.745 -%define release 200428 +%define release 200429 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d56bb7210e..a4ac8e8a2d 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.745 -%define release 200428 +%define release 200429 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c76b610c95..4b1c0a8624 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200428" +PI_BUILD="200429" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 5f0a7553c8..cd31864126 100644 --- 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.745 PS200428"; +my $version = "7.0NG.745 PS200429"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 9ce644e612..4f32707308 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.745 PS200428"; +my $version = "7.0NG.745 PS200429"; # save program name for logging my $progname = basename($0); From 8a019bd8f4e2e73422897016e99896df9f94759c Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 30 Apr 2020 01:00:16 +0200 Subject: [PATCH 061/110] 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 b708dce8e6..47c033edb1 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200429 +Version: 7.0NG.745-200430 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 69f07f1867..fa4ac528ad 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.745-200429" +pandora_version="7.0NG.745-200430" 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 33c760d6e7..40a8cce5bd 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200429'; +use constant AGENT_BUILD => '200430'; # 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 6cca8e9045..417fdbd25f 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_unix %define version 7.0NG.745 -%define release 200429 +%define release 200430 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 4468620be4..3b757bcb0b 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200429 +%define release 200430 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 63be0a81a0..20843fd36b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200429" +PI_BUILD="200430" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 842fab367d..2489f4a42a 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200429} +{200430} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 33bb9d924c..8af31057fa 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.745(Build 200429)") +#define PANDORA_VERSION ("7.0NG.745(Build 200430)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index afad38a508..6d1c21ee76 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.745(Build 200429))" + VALUE "ProductVersion", "(7.0NG.745(Build 200430))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 80657291b8..5c07d48952 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200429 +Version: 7.0NG.745-200430 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 112641ee54..f32adfe212 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.745-200429" +pandora_version="7.0NG.745-200430" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5f9108d553..35e1ac44bb 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 = 'PC200429'; +$build_version = 'PC200430'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 9709ddabc3..dab768e0c2 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 5ae8014aa5..06451be8cb 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.745 -%define release 200429 +%define release 200430 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index a4ac8e8a2d..ab7c0bde25 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.745 -%define release 200429 +%define release 200430 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 4b1c0a8624..53e8a13159 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200429" +PI_BUILD="200430" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index cd31864126..c45083b994 100644 --- 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.745 PS200429"; +my $version = "7.0NG.745 PS200430"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 4f32707308..fd8770cfc8 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.745 PS200429"; +my $version = "7.0NG.745 PS200430"; # save program name for logging my $progname = basename($0); From c308d49c255801b2820b549899f2ebb7c34c8cc9 Mon Sep 17 00:00:00 2001 From: daniel Date: Thu, 30 Apr 2020 14:08:56 +0200 Subject: [PATCH 062/110] Fix retrocompatibility --- .../include/functions_reporting.php | 8 +- .../include/lib/Dashboard/Manager.php | 11 + .../include/lib/Dashboard/Widget.php | 30 +- .../lib/Dashboard/Widgets/agent_module.php | 567 +----------------- .../lib/Dashboard/Widgets/alerts_fired.php | 31 +- .../include/lib/Dashboard/Widgets/clock.php | 27 +- .../lib/Dashboard/Widgets/custom_graph.php | 49 +- .../lib/Dashboard/Widgets/events_list.php | 83 ++- .../include/lib/Dashboard/Widgets/example.php | 19 +- .../Widgets/graph_module_histogram.php | 69 ++- .../lib/Dashboard/Widgets/groups_status.php | 27 +- .../Dashboard/Widgets/maps_made_by_user.php | 27 +- .../lib/Dashboard/Widgets/maps_status.php | 27 +- .../lib/Dashboard/Widgets/module_icon.php | 89 ++- .../lib/Dashboard/Widgets/module_status.php | 89 ++- .../Dashboard/Widgets/module_table_value.php | 65 +- .../lib/Dashboard/Widgets/module_value.php | 73 ++- .../lib/Dashboard/Widgets/monitor_health.php | 25 +- .../lib/Dashboard/Widgets/network_map.php | 51 +- .../include/lib/Dashboard/Widgets/post.php | 27 +- .../include/lib/Dashboard/Widgets/reports.php | 27 +- .../lib/Dashboard/Widgets/service_map.php | 35 +- .../lib/Dashboard/Widgets/single_graph.php | 61 +- .../lib/Dashboard/Widgets/sla_percent.php | 79 ++- .../Dashboard/Widgets/system_group_status.php | 89 ++- .../lib/Dashboard/Widgets/tactical.php | 45 +- .../include/lib/Dashboard/Widgets/top_n.php | 6 +- .../Widgets/top_n_events_by_group.php | 57 +- .../Widgets/top_n_events_by_module.php | 70 ++- .../lib/Dashboard/Widgets/tree_view.php | 130 +++- .../include/lib/Dashboard/Widgets/url.php | 27 +- .../lib/Dashboard/Widgets/wux_transaction.php | 49 +- .../Widgets/wux_transaction_stats.php | 47 +- pandora_console/include/styles/dashboards.css | 4 + pandora_console/views/dashboard/cell.php | 1 + 35 files changed, 1503 insertions(+), 618 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index e2ea109bca..98eb1b5025 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -8993,22 +8993,22 @@ function reporting_get_stats_indicators($data, $width=280, $height=20, $html=tru if ($html) { $tdata[0] = '
    - '.__('Server health').ui_print_help_tip(sprintf(__('%d Downed servers'), $servers['down']), true).''.progress_bar($servers['health'], $width, $height, '', 0).'
    '; + '.__('Server health').ui_print_help_tip(sprintf(__('%d Downed servers'), (int) $servers['down']), true).''.progress_bar($servers['health'], $width, $height, '', 0).''; $table_ind->rowclass[] = ''; $table_ind->data[] = $tdata; $tdata[0] = '
    - '.__('Monitor health').ui_print_help_tip(sprintf(__('%d Not Normal monitors'), $data['monitor_not_normal']), true).''.progress_bar($data['monitor_health'], $width, $height, $data['monitor_health'].'% '.__('of monitors up'), 0).'
    '; + '.__('Monitor health').ui_print_help_tip(sprintf(__('%d Not Normal monitors'), (int) $data['monitor_not_normal']), true).''.progress_bar($data['monitor_health'], $width, $height, $data['monitor_health'].'% '.__('of monitors up'), 0).''; $table_ind->rowclass[] = ''; $table_ind->data[] = $tdata; $tdata[0] = '
    - '.__('Module sanity').ui_print_help_tip(sprintf(__('%d Not inited monitors'), $data['monitor_not_init']), true).''.progress_bar($data['module_sanity'], $width, $height, $data['module_sanity'].'% '.__('of total modules inited'), 0).'
    '; + '.__('Module sanity').ui_print_help_tip(sprintf(__('%d Not inited monitors'), (int) $data['monitor_not_init']), true).''.progress_bar($data['module_sanity'], $width, $height, $data['module_sanity'].'% '.__('of total modules inited'), 0).''; $table_ind->rowclass[] = ''; $table_ind->data[] = $tdata; $tdata[0] = '
    - '.__('Alert level').ui_print_help_tip(sprintf(__('%d Fired alerts'), $data['monitor_alerts_fired']), true).''.progress_bar($data['alert_level'], $width, $height, $data['alert_level'].'% '.__('of defined alerts not fired'), 0).'
    '; + '.__('Alert level').ui_print_help_tip(sprintf(__('%d Fired alerts'), (int) $data['monitor_alerts_fired']), true).''.progress_bar($data['alert_level'], $width, $height, $data['alert_level'].'% '.__('of defined alerts not fired'), 0).''; $table_ind->rowclass[] = ''; $table_ind->data[] = $tdata; diff --git a/pandora_console/include/lib/Dashboard/Manager.php b/pandora_console/include/lib/Dashboard/Manager.php index 8671e64e3a..cd03419a60 100644 --- a/pandora_console/include/lib/Dashboard/Manager.php +++ b/pandora_console/include/lib/Dashboard/Manager.php @@ -1042,6 +1042,17 @@ class Manager $cellData['id_widget'] = $this->widgetId; } } + + $instance = $this->instanceWidget(); + $cellData['options'] = $instance->decoders( + $instance->getOptionsWidget() + ); + + if (isset($cellData['options']['title']) === false) { + $cellData['options']['title'] = $instance->getDescription(); + } + + $cellData['options'] = json_encode($cellData['options']); } View::render( diff --git a/pandora_console/include/lib/Dashboard/Widget.php b/pandora_console/include/lib/Dashboard/Widget.php index 9e3d0c3ead..f8dbffe39b 100644 --- a/pandora_console/include/lib/Dashboard/Widget.php +++ b/pandora_console/include/lib/Dashboard/Widget.php @@ -59,7 +59,7 @@ class Widget $cellClass = new Cell($this->cellId, $this->dashboardId); $this->dataCell = $cellClass->get(); - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); } return $this; @@ -535,6 +535,34 @@ class Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder):array + { + $values = []; + + if (isset($decoder['title']) === true) { + $values['title'] = $decoder['title']; + } + + if (isset($decoder['background-color']) === true) { + $values['background'] = $decoder['background-color']; + } + + if (isset($decoder['background']) === true) { + $values['background'] = $decoder['background']; + } + + return $values; + + } + + /** * Size Cell. * diff --git a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php index e9f0c4c0a2..96cc7c7d92 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php @@ -169,489 +169,11 @@ class AgentModuleWidget extends Widget // This forces at least a first configuration. $this->configurationRequired = false; - if (empty($this->values['moduleId']) === true) { - $this->configurationRequired = true; - } $this->overflow_scrollbars = false; } - /* - // DO NOT CHANGE THIS VALUE. - $id_group = isset($this->options['search_group_'.$id]) ? $this->options['search_group_'.$id] : 0; - - $agent_conf_key = 'id_agent_'.$id; - $id_agent = $this->options[$agent_conf_key]; - $module_conf_key = 'id_module_'.$id; - $id_module = $this->options[$module_conf_key]; - $recursion_checked = $this->options['recursion']; - - $this->add_configuration( - 'search_group_'.$id, - __('Group'), - OPTION_TREE_GROUP_SELECT - ); - - $list_agents = agents_get_group_agents( - $id_group, - false, - 'lower', - false, - $recursion_checked - ); - - if (!isset($this->options['selection_agent_module_'.$id]) - || $this->options['selection_agent_module_'.$id] == '' - || $this->options['selection_agent_module_'.$id] == null - ) { - $selection_agent_module = 'common'; - } else { - $selection_agent_module = $this->options['selection_agent_module_'.$id]; - } - - $limit_common = ''; - $sql = false; - if (!empty($id_agent)) { - if ($selection_agent_module == 'common') { - $limit_common = sprintf( - ' AND (SELECT count(nombre) - FROM tagente_modulo t2 - WHERE t2.delete_pending = 0 - AND t1.nombre = t2.nombre - AND t2.id_agente IN (%s)) = (%d)', - implode(',', (array) $id_agent), - count($id_agent) - ); - } - - $sql = sprintf( - 'SELECT DISTINCT nombre - FROM tagente_modulo t1 - WHERE id_agente IN (%s) - AND delete_pending = 0 %s ORDER BY nombre', - implode(', ', (array) $id_agent), - $limit_common - ); - } - - if (empty($id_module)) { - $this->options[$module_conf_key] = index_array( - db_get_all_rows_sql($sql), - 'nombre', - 'nombre' - ); - } - - $this->add_configuration( - 'recursion', - __('Recursion'), - OPTION_BOOLEAN - ); - - $this->add_configuration( - $agent_conf_key, - __('Agent'), - OPTION_SELECT_MULTISELECTION, - ['values' => $list_agents] - ); - - $this->add_configuration( - 'selection_agent_module_'.$id, - __('Show common modules'), - OPTION_SINGLE_SELECT, - [ - 'values' => [ - 'common' => __('Show common modules'), - 'all' => __('Show all modules'), - ], - ] - ); - - $this->add_configuration( - $module_conf_key, - __('Module'), - OPTION_SELECT_MULTISELECTION, - [ - 'values' => index_array( - db_get_all_rows_sql($sql), - 'nombre', - 'nombre' - ), - ] - ); - - $this->add_configuration( - '', - '', - OPTION_CUSTOM_INPUT, - [ - 'widget' => $this, - 'entire_row' => true, - 'update' => false, - ] - ); - */ - - - function print_configuration_custom($return=true) - { - $id = $this->getId(); - ob_start(); - - ?> - - $module) { - if ($module == $name) { - $modules_by_name[($cont - 1)]['id'][] = $key; - } else { - $name = $module; - $modules_by_name[$cont]['name'] = $name; - $modules_by_name[$cont]['id'][] = $key; - $cont ++; - } - } - - foreach ($agents as $agent) { - if (!users_access_to_agent($agent['id_agente'])) { - continue; - } - - $row = []; - $row['agent_status'] = agents_get_status($agent['id_agente'], true); - $row['agent_name'] = $agent['nombre']; - $row['agent_alias'] = $agent['alias']; - $agent_modules = agents_get_modules($agent['id_agente']); - - $row['modules'] = []; - foreach ($modules_by_name as $module) { - $row['modules'][$module['name']] = null; - foreach ($module['id'] as $module_id) { - if (array_key_exists($module_id, $agent_modules)) { - $row['modules'][$module['name']] = modules_get_agentmodule_status($module_id); - break; - } - } - } - - $return[] = $row; - } - - return $return; - } - - - public function generate_view_agent_module($visual_data) - { - $table_data = '
    '; - $table_data .= ''; - - if (!empty($visual_data)) { - $table_data .= ''; - - $array_names = []; - - foreach ($visual_data as $data) { - foreach ($data['modules'] as $module_name => $module) { - if ($module === null || in_array($module_name, $array_names)) { - continue; - } else { - $array_names[] = $module_name; - } - } - } - - natcasesort($array_names); - foreach ($array_names as $module_name) { - $file_name = ui_print_truncate_text( - $module_name, - 'module_small', - false, - true, - false, - '...' - ); - $table_data .= ''; - } - - foreach ($visual_data as $row) { - $table_data .= ""; - switch ($row['agent_status']) { - case AGENT_STATUS_ALERT_FIRED: - $rowcolor = COL_ALERTFIRED; - $textcolor = '#000'; - break; - - case AGENT_STATUS_CRITICAL: - $rowcolor = COL_CRITICAL; - $textcolor = '#FFF'; - break; - - case AGENT_STATUS_WARNING: - $rowcolor = COL_WARNING; - $textcolor = '#000'; - break; - - case AGENT_STATUS_NORMAL: - $rowcolor = COL_NORMAL; - $textcolor = '#FFF'; - break; - - case AGENT_STATUS_UNKNOWN: - case AGENT_STATUS_ALL: - default: - $rowcolor = COL_UNKNOWN; - $textcolor = '#FFF'; - break; - } - - $file_name = ui_print_truncate_text( - $row['agent_alias'], - 'agent_small', - false, - true, - false, - '...' - ); - $table_data .= "'; - - foreach ($row['modules'] as $module_name => $module) { - if ($module === null) { - if (in_array($module_name, $array_names)) { - $table_data .= ""; - } else { - continue; - } - } else { - $table_data .= "'; - } - } - - $table_data .= ''; - } - } else { - $table_data .= ''; - } - - $table_data .= '
    '.__('Agents').' / '.__('Modules').''.$file_name.'
    ".$file_name.'"; - switch ($module) { - case AGENT_STATUS_NORMAL: - $table_data .= ui_print_status_image( - 'module_ok.png', - __( - '%s in %s : NORMAL', - $module_name, - $row['agent_alias'] - ), - true, - [ - 'width' => '20px', - 'height' => '20px', - ] - ); - break; - - case AGENT_STATUS_CRITICAL: - $table_data .= ui_print_status_image( - 'module_critical.png', - __( - '%s in %s : CRITICAL', - $module_name, - $row['agent_alias'] - ), - true, - [ - 'width' => '20px', - 'height' => '20px', - ] - ); - break; - - case AGENT_STATUS_WARNING: - $table_data .= ui_print_status_image( - 'module_warning.png', - __( - '%s in %s : WARNING', - $module_name, - $row['agent_alias'] - ), - true, - [ - 'width' => '20px', - 'height' => '20px', - ] - ); - break; - - case AGENT_STATUS_UNKNOWN: - $table_data .= ui_print_status_image( - 'module_unknown.png', - __( - '%s in %s : UNKNOWN', - $module_name, - $row['agent_alias'] - ), - true, - [ - 'width' => '20px', - 'height' => '20px', - ] - ); - break; - - case 4: - $table_data .= ui_print_status_image( - 'module_no_data.png', - __( - '%s in %s : Not initialize', - $module_name, - $row['agent_alias'] - ), - true, - [ - 'width' => '20px', - 'height' => '20px', - ] - ); - break; - - case AGENT_STATUS_ALERT_FIRED: - default: - $table_data .= ui_print_status_image( - 'module_alertsfired.png', - __( - '%s in %s : ALERTS FIRED', - $module_name, - $row['agent_alias'] - ), - true, - [ - 'width' => '20px', - 'height' => '20px', - ] - ); - break; - } - - $table_data .= '
    '.__('Please configure this widget before usage').'
    '; - $table_data .= '
    '; - - return $table_data; - } - - /** * Generates inputs for form (specific). * @@ -666,38 +188,12 @@ class AgentModuleWidget extends Widget // Retrieve global - common inputs. $inputs = parent::getFormInputs(); - // Autocomplete agents. $inputs[] = [ - 'label' => __('Agent'), - 'arguments' => [ - 'type' => 'autocomplete_agent', - 'name' => 'agentAlias', - 'id_agent_hidden' => $values['agentId'], - 'name_agent_hidden' => 'agentId', - 'server_id_hidden' => $values['metaconsoleId'], - 'name_server_hidden' => 'metaconsoleId', - 'return' => true, - 'module_input' => true, - 'module_name' => 'moduleId', - 'module_none' => false, - 'size' => 0, - ], - ]; - - // Autocomplete module. - $inputs[] = [ - 'label' => __('Module'), - 'arguments' => [ - 'type' => 'autocomplete_module', - 'fields' => $fields, - 'name' => 'moduleId', - 'selected' => $values['moduleId'], - 'return' => true, - 'sort' => false, - 'agent_id' => $values['agentId'], - 'metaconsole_id' => $values['metaconsoleId'], - 'style' => 'width: inherit;', - ], + 'label' => \ui_print_error_message( + __('This widget has been removed'), + '', + true + ), ]; return $inputs; @@ -714,12 +210,6 @@ class AgentModuleWidget extends Widget // Retrieve global - common inputs. $values = parent::getPost(); - $values['agentId'] = \get_parameter('agentId', 0); - $values['metaconsoleId'] = \get_parameter('metaconsoleId', 0); - $values['moduleId'] = \get_parameter('moduleId', 0); - $values['period'] = \get_parameter('period', 0); - $values['showLegend'] = \get_parameter_switch('showLegend'); - return $values; } @@ -733,45 +223,14 @@ class AgentModuleWidget extends Widget { global $config; - // TODO:XXX WIP. - return 'WIP in this widget'; - /* - $this->body = ''; - $id_agent = $this->options['id_agent_'.$this->getId()]; - if (! check_acl($config['id_user'], 0, 'AR')) { - $this->body = __('You don\'t have access'); - return; - } - - $id_module = $this->options['id_module_'.$this->getId()]; - if ($id_agent) { - $sql = 'SELECT id_agente,nombre,alias - FROM tagente - WHERE id_agente IN ('.implode(',', $id_agent).') - ORDER BY id_agente'; - $agents = db_get_all_rows_sql($sql); - if ($agents === false) { - $agents = []; - } - - $sql = 'SELECT id_agente_modulo,nombre - FROM tagente_modulo - WHERE id_agente IN ('.implode(',', $id_agent).") - AND nombre IN ('".implode("','", $id_module)."') - AND delete_pending = 0 ORDER BY nombre"; - $modules = index_array(db_get_all_rows_sql($sql), 'id_agente_modulo', 'nombre'); - if ($modules === false) { - $modules = []; - } - } else { - $agents = []; - $modules = []; - } - - $visual_data = $this->generate_data_agent_module($agents, $modules); - - $this->body .= $this->generate_view_agent_module($visual_data); - */ + $output .= '
    '; + $output .= \ui_print_error_message( + __('This widget has been removed'), + '', + true + ); + $output .= '
    '; + return $output; } diff --git a/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php b/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php index de76b7a744..4aadb73dae 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php +++ b/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php @@ -146,7 +146,7 @@ class AlertsFiredWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -176,6 +176,31 @@ class AlertsFiredWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['group']) === true) { + $values['groupId'] = $decoder['group']; + } + + if (isset($decoder['groupId']) === true) { + $values['groupId'] = $decoder['groupId']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * @@ -234,7 +259,7 @@ class AlertsFiredWidget extends Widget $output = ''; - if ($this->values['groupId'] === 0) { + if ((int) $this->values['groupId'] === 0) { $groups = users_get_groups(false, 'AR', false); } else { $groups = [$this->values['groupId'] => '']; @@ -254,7 +279,7 @@ class AlertsFiredWidget extends Widget $flag = false; foreach ($groups as $id_group => $name) { - $alerts_group = get_group_alerts($id_group); + $alerts_group = get_group_alerts([$id_group]); if (isset($alerts_group['simple']) === true) { $alerts_group = $alerts_group['simple']; } diff --git a/pandora_console/include/lib/Dashboard/Widgets/clock.php b/pandora_console/include/lib/Dashboard/Widgets/clock.php index 5c7b793b9e..8ad514e023 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/clock.php +++ b/pandora_console/include/lib/Dashboard/Widgets/clock.php @@ -142,7 +142,7 @@ class ClockWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -172,6 +172,31 @@ class ClockWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['clock_type']) === true) { + $values['clockType'] = $decoder['clock_type']; + } + + if (isset($decoder['clockType']) === true) { + $values['clockType'] = $decoder['clockType']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php b/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php index 61d5a49904..b35ce233a1 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php +++ b/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php @@ -104,6 +104,13 @@ class CustomGraphWidget extends Widget */ protected $gridWidth; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -141,8 +148,11 @@ class CustomGraphWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -173,6 +183,43 @@ class CustomGraphWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['id_graph']) === true) { + $values['id_graph'] = $decoder['id_graph']; + } + + if (isset($decoder['stacked']) === true) { + $values['type'] = $decoder['stacked']; + } + + if (isset($decoder['type']) === true) { + $values['type'] = $decoder['type']; + } + + if (isset($decoder['period']) === true) { + $values['period'] = $decoder['period']; + } + + if (isset($decoder['showLegend']) === true) { + $values['showLegend'] = $decoder['showLegend']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/events_list.php b/pandora_console/include/lib/Dashboard/Widgets/events_list.php index 1d0d4a3563..90c863472e 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/events_list.php +++ b/pandora_console/include/lib/Dashboard/Widgets/events_list.php @@ -147,7 +147,7 @@ class EventsListWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -177,6 +177,71 @@ class EventsListWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['type']) === true) { + $values['eventType'] = $decoder['type']; + } + + if (isset($decoder['eventType']) === true) { + $values['eventType'] = $decoder['eventType']; + } + + if (isset($decoder['event_view_hr']) === true) { + $values['maxHours'] = $decoder['event_view_hr']; + } + + if (isset($decoder['maxHours']) === true) { + $values['maxHours'] = $decoder['maxHours']; + } + + if (isset($decoder['limit']) === true) { + $values['limit'] = $decoder['limit']; + } + + if (isset($decoder['status']) === true) { + $values['eventStatus'] = $decoder['status']; + } + + if (isset($decoder['eventStatus']) === true) { + $values['eventStatus'] = $decoder['eventStatus']; + } + + if (isset($decoder['severity']) === true) { + $values['severity'] = $decoder['severity']; + } + + if (isset($decoder['id_groups']) === true) { + if (is_array($decoder['id_groups']) === true) { + $decoder['id_groups'][0] = implode(',', $decoder['id_groups']); + } + + $values['groupId'] = $decoder['id_groups']; + } + + if (isset($decoder['groupId']) === true) { + $values['groupId'] = $decoder['groupId']; + } + + if (isset($decoder['tagsId']) === true) { + $values['tagsId'] = $decoder['tagsId']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * @@ -416,13 +481,15 @@ class EventsListWidget extends Widget $filter['limit'] = $this->values['limit']; $filter['order'] = '`utimestamp` DESC'; - if ((int) $this->values['severity'] === 20) { - $filter['criticity'] = [ - EVENT_CRIT_WARNING, - EVENT_CRIT_CRITICAL, - ]; - } else if ((int) $this->values['severity'] !== -1) { - $filter['criticity'] = $this->values['severity']; + if (isset($this->values['severity']) === true) { + if ((int) $this->values['severity'] === 20) { + $filter['criticity'] = [ + EVENT_CRIT_WARNING, + EVENT_CRIT_CRITICAL, + ]; + } else if ((int) $this->values['severity'] !== -1) { + $filter['criticity'] = $this->values['severity']; + } } if (empty($this->values['tagsId']) === false) { diff --git a/pandora_console/include/lib/Dashboard/Widgets/example.php b/pandora_console/include/lib/Dashboard/Widgets/example.php index e7d431cd5a..8c0664464c 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/example.php +++ b/pandora_console/include/lib/Dashboard/Widgets/example.php @@ -142,7 +142,7 @@ class WelcomeWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -168,6 +168,23 @@ class WelcomeWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php b/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php index 067bbef1fd..948b20acc7 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php +++ b/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php @@ -106,6 +106,13 @@ class GraphModuleHistogramWidget extends Widget */ protected $gridWidth; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -148,8 +155,11 @@ class GraphModuleHistogramWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -179,6 +189,63 @@ class GraphModuleHistogramWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['label_'.$this->cellId]) === true) { + $values['label'] = $decoder['label_'.$this->cellId]; + } + + if (isset($decoder['label']) === true) { + $values['label'] = $decoder['label']; + } + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['id_module_'.$this->cellId]) === true) { + $values['moduleId'] = $decoder['id_module_'.$this->cellId]; + } + + if (isset($decoder['moduleId']) === true) { + $values['moduleId'] = $decoder['moduleId']; + } + + if (isset($decoder['size_label_'.$this->cellId]) === true) { + $values['sizeLabel'] = $decoder['size_label_'.$this->cellId]; + } + + if (isset($decoder['sizeLabel']) === true) { + $values['sizeLabel'] = $decoder['sizeLabel']; + } + + if (isset($decoder['period']) === true) { + $values['period'] = $decoder['period']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/groups_status.php b/pandora_console/include/lib/Dashboard/Widgets/groups_status.php index 7e2c449bbd..5b7fa16395 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/groups_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/groups_status.php @@ -142,7 +142,7 @@ class GroupsStatusWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -172,6 +172,31 @@ class GroupsStatusWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['groups']) === true) { + $values['groupId'] = $decoder['groups']; + } + + if (isset($decoder['groupId']) === true) { + $values['groupId'] = $decoder['groupId']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php b/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php index f285abdc08..f480c45389 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php +++ b/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php @@ -158,7 +158,7 @@ class MapsMadeByUser extends Widget $this->cellId = $cellId; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -188,6 +188,31 @@ class MapsMadeByUser extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['id_layout']) === true) { + $values['vcId'] = $decoder['id_layout']; + } + + if (isset($decoder['vcId']) === true) { + $values['vcId'] = $decoder['vcId']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/maps_status.php b/pandora_console/include/lib/Dashboard/Widgets/maps_status.php index 083a3bd2b3..783cca2b0c 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/maps_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/maps_status.php @@ -142,7 +142,7 @@ class MapsStatusWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -172,6 +172,31 @@ class MapsStatusWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['maps']) === true) { + if (is_array($decoder['maps']) === true) { + $decoder['maps'][0] = implode(',', $decoder['maps']); + } + + $values['maps'] = $decoder['maps']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php index 10ed9f8948..e8335e4661 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php @@ -114,6 +114,13 @@ class ModuleIconWidget extends Widget */ protected $dashboardId; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -151,8 +158,11 @@ class ModuleIconWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -183,6 +193,83 @@ class ModuleIconWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['label_'.$this->cellId]) === true) { + $values['label'] = $decoder['label_'.$this->cellId]; + } + + if (isset($decoder['label']) === true) { + $values['label'] = $decoder['label']; + } + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['id_module_'.$this->cellId]) === true) { + $values['moduleId'] = $decoder['id_module_'.$this->cellId]; + } + + if (isset($decoder['moduleId']) === true) { + $values['moduleId'] = $decoder['moduleId']; + } + + if (isset($decoder['size_value_'.$this->cellId]) === true) { + $values['sizeValue'] = $decoder['size_value_'.$this->cellId]; + } + + if (isset($decoder['sizeValue']) === true) { + $values['sizeValue'] = $decoder['sizeValue']; + } + + if (isset($decoder['size_label_'.$this->cellId]) === true) { + $values['sizeLabel'] = $decoder['size_label_'.$this->cellId]; + } + + if (isset($decoder['sizeLabel']) === true) { + $values['sizeLabel'] = $decoder['sizeLabel']; + } + + if (isset($decoder['size_icon_'.$this->cellId]) === true) { + $values['sizeIcon'] = $decoder['size_icon_'.$this->cellId]; + } + + if (isset($decoder['sizeIcon']) === true) { + $values['sizeIcon'] = $decoder['sizeIcon']; + } + + if (isset($decoder['icon_module_'.$this->cellId]) === true) { + $values['imageSrc'] = $decoder['icon_module_'.$this->cellId]; + } + + if (isset($decoder['imageSrc']) === true) { + $values['imageSrc'] = $decoder['imageSrc']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_status.php b/pandora_console/include/lib/Dashboard/Widgets/module_status.php index 06fd65afd3..e4dc1c65f6 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_status.php @@ -106,6 +106,13 @@ class ModuleStatusWidget extends Widget */ protected $gridWidth; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -146,8 +153,11 @@ class ModuleStatusWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -177,6 +187,83 @@ class ModuleStatusWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['label_'.$this->cellId]) === true) { + $values['label'] = $decoder['label_'.$this->cellId]; + } + + if (isset($decoder['label']) === true) { + $values['label'] = $decoder['label']; + } + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['id_module_'.$this->cellId]) === true) { + $values['moduleId'] = $decoder['id_module_'.$this->cellId]; + } + + if (isset($decoder['moduleId']) === true) { + $values['moduleId'] = $decoder['moduleId']; + } + + if (isset($decoder['size_value_'.$this->cellId]) === true) { + $values['sizeValue'] = $decoder['size_value_'.$this->cellId]; + } + + if (isset($decoder['sizeValue']) === true) { + $values['sizeValue'] = $decoder['sizeValue']; + } + + if (isset($decoder['size_label_'.$this->cellId]) === true) { + $values['sizeLabel'] = $decoder['size_label_'.$this->cellId]; + } + + if (isset($decoder['sizeLabel']) === true) { + $values['sizeLabel'] = $decoder['sizeLabel']; + } + + if (isset($decoder['size_icon_'.$this->cellId]) === true) { + $values['sizeIcon'] = $decoder['size_icon_'.$this->cellId]; + } + + if (isset($decoder['sizeIcon']) === true) { + $values['sizeIcon'] = $decoder['sizeIcon']; + } + + if (isset($decoder['icon_module_'.$this->cellId]) === true) { + $values['imageSrc'] = $decoder['icon_module_'.$this->cellId]; + } + + if (isset($decoder['imageSrc']) === true) { + $values['imageSrc'] = $decoder['imageSrc']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php index a817ffce8b..fc07f1c2a7 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php @@ -107,6 +107,13 @@ class ModuleTableValueWidget extends Widget */ protected $gridWidth; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -148,8 +155,11 @@ class ModuleTableValueWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -179,6 +189,59 @@ class ModuleTableValueWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['id_module_'.$this->cellId]) === true) { + $values['moduleId'] = $decoder['id_module_'.$this->cellId]; + } + + if (isset($decoder['moduleId']) === true) { + $values['moduleId'] = $decoder['moduleId']; + } + + if (isset($decoder['size_text_'.$this->cellId]) === true) { + $values['sizeLabel'] = $decoder['size_text_'.$this->cellId]; + } + + if (isset($decoder['sizeLabel']) === true) { + $values['sizeLabel'] = $decoder['sizeLabel']; + } + + if (isset($decoder['separator_data_'.$this->cellId]) === true) { + $values['separator'] = $decoder['separator_data_'.$this->cellId]; + } + + if (isset($decoder['separator']) === true) { + $values['separator'] = $decoder['separator']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_value.php index b1606be21b..b862cc4d71 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_value.php @@ -109,6 +109,13 @@ class ModuleValueWidget extends Widget */ protected $gridWidth; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -146,8 +153,11 @@ class ModuleValueWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -177,6 +187,67 @@ class ModuleValueWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['label_'.$this->cellId]) === true) { + $values['label'] = $decoder['label_'.$this->cellId]; + } + + if (isset($decoder['label']) === true) { + $values['label'] = $decoder['label']; + } + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['id_module_'.$this->cellId]) === true) { + $values['moduleId'] = $decoder['id_module_'.$this->cellId]; + } + + if (isset($decoder['moduleId']) === true) { + $values['moduleId'] = $decoder['moduleId']; + } + + if (isset($decoder['size_value_'.$this->cellId]) === true) { + $values['sizeValue'] = $decoder['size_value_'.$this->cellId]; + } + + if (isset($decoder['sizeValue']) === true) { + $values['sizeValue'] = $decoder['sizeValue']; + } + + if (isset($decoder['size_label_'.$this->cellId]) === true) { + $values['sizeLabel'] = $decoder['size_label_'.$this->cellId]; + } + + if (isset($decoder['sizeLabel']) === true) { + $values['sizeLabel'] = $decoder['sizeLabel']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php b/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php index 0d364de6ee..476bf327e9 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php +++ b/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php @@ -142,7 +142,7 @@ class MonitorHealthWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -164,14 +164,28 @@ class MonitorHealthWidget extends Widget // This forces at least a first configuration. $this->configurationRequired = false; - if (isset($this->values['title']) === false) { - $this->configurationRequired = true; - } $this->overflow_scrollbars = false; } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + return $values; + } + + /** * Generates inputs for form (specific). * @@ -234,8 +248,11 @@ class MonitorHealthWidget extends Widget $data['mW'] = (int) $all_data['_monitors_warning_']; $data['mC'] = (int) $all_data['_monitors_critical_']; $data['mNN'] = (int) $all_data['_monitor_not_normal_']; + $data['monitor_not_normal'] = (int) $all_data['_monitor_not_normal_']; + $data['monitor_not_init'] = (int) $all_data['_monitors_not_init_']; $data['monitor_alerts'] = (int) $all_data['_monitors_alerts_']; $data['mAFired'] = (int) $all_data['_monitors_alerts_fired_']; + $data['monitor_alerts_fired'] = (int) $all_data['_monitors_alerts_fired_']; $data['total_agents'] = (int) $all_data['_total_agents_']; diff --git a/pandora_console/include/lib/Dashboard/Widgets/network_map.php b/pandora_console/include/lib/Dashboard/Widgets/network_map.php index c873bbbec1..27880e71cb 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/network_map.php +++ b/pandora_console/include/lib/Dashboard/Widgets/network_map.php @@ -154,7 +154,7 @@ class NetworkMapWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -184,6 +184,55 @@ class NetworkMapWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['networkmaps']) === true) { + $values['networkmapId'] = $decoder['networkmaps']; + } + + if (isset($decoder['networkmapId']) === true) { + $values['networkmapId'] = $decoder['networkmapId']; + } + + if (isset($decoder['map_translate_x']) === true) { + $values['xOffset'] = $decoder['map_translate_x']; + } + + if (isset($decoder['xOffset']) === true) { + $values['xOffset'] = $decoder['xOffset']; + } + + if (isset($decoder['map_translate_y']) === true) { + $values['yOffset'] = $decoder['map_translate_y']; + } + + if (isset($decoder['yOffset']) === true) { + $values['yOffset'] = $decoder['yOffset']; + } + + if (isset($decoder['zoom_level_dash']) === true) { + $values['zoomLevel'] = $decoder['zoom_level_dash']; + } + + if (isset($decoder['zoomLevel']) === true) { + $values['zoomLevel'] = $decoder['zoomLevel']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/post.php b/pandora_console/include/lib/Dashboard/Widgets/post.php index be8bdd9193..6844a3de7a 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/post.php +++ b/pandora_console/include/lib/Dashboard/Widgets/post.php @@ -142,7 +142,7 @@ class PostWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -172,6 +172,31 @@ class PostWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['textit']) === true) { + $values['text'] = $decoder['textit']; + } + + if (isset($decoder['text']) === true) { + $values['text'] = $decoder['text']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/reports.php b/pandora_console/include/lib/Dashboard/Widgets/reports.php index 5ae3a5c70d..b042877ed2 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/reports.php +++ b/pandora_console/include/lib/Dashboard/Widgets/reports.php @@ -148,7 +148,7 @@ class ReportsWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -178,6 +178,31 @@ class ReportsWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['id_report']) === true) { + $values['reportId'] = $decoder['id_report']; + } + + if (isset($decoder['reportId']) === true) { + $values['reportId'] = $decoder['reportId']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_map.php b/pandora_console/include/lib/Dashboard/Widgets/service_map.php index 401852b070..92209fcf93 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/service_map.php +++ b/pandora_console/include/lib/Dashboard/Widgets/service_map.php @@ -146,7 +146,7 @@ class ServiceMapWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -176,6 +176,39 @@ class ServiceMapWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['service_id']) === true) { + $values['serviceId'] = $decoder['service_id']; + } + + if (isset($decoder['serviceId']) === true) { + $values['serviceId'] = $decoder['serviceId']; + } + + if (isset($decoder['show_legend']) === true) { + $values['showLegend'] = (int) $decoder['show_legend']; + } + + if (isset($decoder['showLegend']) === true) { + $values['showLegend'] = $decoder['showLegend']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/single_graph.php b/pandora_console/include/lib/Dashboard/Widgets/single_graph.php index bd7969dc72..e4e3462024 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/single_graph.php +++ b/pandora_console/include/lib/Dashboard/Widgets/single_graph.php @@ -106,6 +106,13 @@ class SingleGraphWidget extends Widget */ protected $gridWidth; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -143,8 +150,11 @@ class SingleGraphWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -174,6 +184,55 @@ class SingleGraphWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['id_module_'.$this->cellId]) === true) { + $values['moduleId'] = $decoder['id_module_'.$this->cellId]; + } + + if (isset($decoder['moduleId']) === true) { + $values['moduleId'] = $decoder['moduleId']; + } + + if (isset($decoder['period']) === true) { + $values['period'] = $decoder['period']; + } + + if (isset($decoder['show_full_legend']) === true) { + $values['showLegend'] = $decoder['show_full_legend']; + } + + if (isset($decoder['showLegend']) === true) { + $values['showLegend'] = $decoder['showLegend']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php index 3cd1e72fc4..df88cb28fa 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php +++ b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php @@ -110,6 +110,13 @@ class SLAPercentWidget extends Widget */ protected $gridWidth; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -147,8 +154,11 @@ class SLAPercentWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -178,6 +188,71 @@ class SLAPercentWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['label_'.$this->cellId]) === true) { + $values['label'] = $decoder['label_'.$this->cellId]; + } + + if (isset($decoder['label']) === true) { + $values['label'] = $decoder['label']; + } + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['id_module_'.$this->cellId]) === true) { + $values['moduleId'] = $decoder['id_module_'.$this->cellId]; + } + + if (isset($decoder['moduleId']) === true) { + $values['moduleId'] = $decoder['moduleId']; + } + + if (isset($decoder['size_value_'.$this->cellId]) === true) { + $values['sizeValue'] = $decoder['size_value_'.$this->cellId]; + } + + if (isset($decoder['sizeValue']) === true) { + $values['sizeValue'] = $decoder['sizeValue']; + } + + if (isset($decoder['size_label_'.$this->cellId]) === true) { + $values['sizeLabel'] = $decoder['size_label_'.$this->cellId]; + } + + if (isset($decoder['sizeLabel']) === true) { + $values['sizeLabel'] = $decoder['sizeLabel']; + } + + if (isset($decoder['period']) === true) { + $values['period'] = $decoder['period']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * @@ -387,7 +462,7 @@ class SLAPercentWidget extends Widget if (empty($label) === false) { // Div Label. - $output .= '
    '.$label.'
    '; + $output .= '
    '.$label.'
    '; } $output .= '
    '; diff --git a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php index 65df0b83d4..8f0bbc00bb 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php @@ -142,7 +142,7 @@ class SystemGroupStatusWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -164,14 +164,80 @@ class SystemGroupStatusWidget extends Widget // This forces at least a first configuration. $this->configurationRequired = false; - if (empty($this->values['groupId']) === true) { - $this->configurationRequired = true; - } $this->overflow_scrollbars = false; } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['status']) === true) { + if (is_array($decoder['status']) === true) { + $compatibilityStatus = []; + foreach ($decoder['status'] as $key => $value) { + switch ((int) $value) { + case 2: + $compatibilityStatus[] = AGENT_STATUS_WARNING; + break; + + case 3: + $compatibilityStatus[] = AGENT_STATUS_CRITICAL; + break; + + case 4: + $compatibilityStatus[] = 4; + break; + + default: + case 1: + $compatibilityStatus[] = AGENT_STATUS_NORMAL; + break; + } + } + + $decoder['status'][0] = implode(',', $compatibilityStatus); + } + + $values['status'] = $decoder['status']; + } else { + $values['status'][0] = implode( + ',', + [ + AGENT_STATUS_NORMAL, + AGENT_STATUS_WARNING, + AGENT_STATUS_CRITICAL, + 4, + ] + ); + } + + if (isset($decoder['id_groups']) === true) { + if (is_array($decoder['id_groups']) === true) { + $decoder['id_groups'][0] = implode(',', $decoder['id_groups']); + } + + $values['groupId'] = $decoder['id_groups']; + } + + if (isset($decoder['groupId']) === true) { + $values['groupId'] = $decoder['groupId']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * @@ -186,6 +252,19 @@ class SystemGroupStatusWidget extends Widget // Retrieve global - common inputs. $inputs = parent::getFormInputs(); + // Default values. + if (isset($values['status']) === false) { + $values['status'][0] = implode( + ',', + [ + AGENT_STATUS_NORMAL, + AGENT_STATUS_WARNING, + AGENT_STATUS_CRITICAL, + 4, + ] + ); + } + // Restrict access to group. $inputs[] = [ 'label' => __('Groups'), @@ -439,7 +518,7 @@ class SystemGroupStatusWidget extends Widget } } - $height = (count($table->data) * 30); + $height = (count($table->data) * 32); $style = 'min-width:200px; min-height:'.$height.'px;'; $output = '
    '; if ($flag_groups === true) { diff --git a/pandora_console/include/lib/Dashboard/Widgets/tactical.php b/pandora_console/include/lib/Dashboard/Widgets/tactical.php index bee5f4164c..2003a6facb 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/tactical.php +++ b/pandora_console/include/lib/Dashboard/Widgets/tactical.php @@ -160,7 +160,7 @@ class TacticalWidget extends Widget $this->pmAccess = \users_can_manage_group_all('PM'); // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -193,6 +193,43 @@ class TacticalWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['statusmonitors']) === true) { + $values['statusMonitor'] = $decoder['statusmonitors']; + } + + if (isset($decoder['statusMonitor']) === true) { + $values['statusMonitor'] = $decoder['statusMonitor']; + } + + if (isset($decoder['serverperf']) === true) { + $values['serverPerformance'] = $decoder['serverperf']; + } + + if (isset($decoder['serverPerformance']) === true) { + $values['serverPerformance'] = $decoder['serverPerformance']; + } + + if (isset($decoder['summary']) === true) { + $values['summary'] = $decoder['summary']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * @@ -366,7 +403,7 @@ class TacticalWidget extends Widget ); } - if ($this->values['statusMonitor'] === 1) { + if ((int) $this->values['statusMonitor'] === 1) { $table = new \stdClass(); $table->width = '100%'; @@ -396,7 +433,7 @@ class TacticalWidget extends Widget $output .= \html_print_table($table, true); } - if ($this->values['serverPerformance'] === 1 + if ((int) $this->values['serverPerformance'] === 1 && $this->pmAccess === true ) { $table = new \stdClass(); @@ -414,7 +451,7 @@ class TacticalWidget extends Widget $output .= \html_print_table($table, true); } - if ($this->values['summary'] === 1) { + if ((int) $this->values['summary'] === 1) { $table = new \stdClass(); $table->width = '100%'; $table->class = ''; diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n.php b/pandora_console/include/lib/Dashboard/Widgets/top_n.php index a7b8198546..7029b07bad 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n.php @@ -375,7 +375,7 @@ class TopNWidget extends Widget } // This function check ACL. - $agents = agents_get_group_agents(0, ['aliasRegex' => $agentRegex]); + $agents = @agents_get_group_agents(0, ['aliasRegex' => $agentRegex]); $agentsId = \array_keys($agents); $agentsIdString = \implode(',', $agentsId); @@ -414,7 +414,7 @@ class TopNWidget extends Widget $quantity ); - $modules = \db_get_all_rows_sql( + $modules = @db_get_all_rows_sql( $sql, $search_in_history_db ); @@ -422,7 +422,7 @@ class TopNWidget extends Widget if (empty($modules) === true) { $output .= '
    '; $output .= \ui_print_info_message( - __('There are no Agent/Modules defined'), + __('There are no agents/modules found matching filter set'), '', true ); diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php index 10ddfb881a..2acd7f32fa 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php @@ -147,7 +147,7 @@ class TopNEventByGroupWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -177,6 +177,59 @@ class TopNEventByGroupWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['amount']) === true) { + $values['amountShow'] = $decoder['amount']; + } + + if (isset($decoder['amountShow']) === true) { + $values['amountShow'] = $decoder['amountShow']; + } + + if (isset($decoder['event_view_hr']) === true) { + $values['maxHours'] = $decoder['event_view_hr']; + } + + if (isset($decoder['maxHours']) === true) { + $values['maxHours'] = $decoder['maxHours']; + } + + if (isset($decoder['id_groups']) === true) { + if (is_array($decoder['id_groups']) === true) { + $implode = implode(',', $decoder['id_groups']); + $values['groupId'] = []; + $values['groupId'][0] = $implode; + } + } + + if (isset($decoder['groupId']) === true) { + $values['groupId'] = $decoder['groupId']; + } + + if (isset($decoder['legend_position']) === true) { + $values['legendPosition'] = $decoder['legend_position']; + } + + if (isset($decoder['legendPosition']) === true) { + $values['legendPosition'] = $decoder['legendPosition']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * @@ -320,8 +373,8 @@ class TopNEventByGroupWidget extends Widget GROUP BY id_agente ORDER BY count DESC LIMIT %d', - implode(',', $this->values['groupId']), $timestamp, + implode(',', $this->values['groupId']), $this->values['amountShow'] ); } else { diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php index 4d9187bf80..4bbaee22a8 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php @@ -147,7 +147,7 @@ class TopNEventByModuleWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -177,6 +177,59 @@ class TopNEventByModuleWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['amount']) === true) { + $values['amountShow'] = $decoder['amount']; + } + + if (isset($decoder['amountShow']) === true) { + $values['amountShow'] = $decoder['amountShow']; + } + + if (isset($decoder['event_view_hr']) === true) { + $values['maxHours'] = $decoder['event_view_hr']; + } + + if (isset($decoder['maxHours']) === true) { + $values['maxHours'] = $decoder['maxHours']; + } + + if (isset($decoder['id_groups']) === true) { + if (is_array($decoder['id_groups']) === true) { + $decoder['id_groups'][0] = implode(',', $decoder['id_groups']); + } + + $values['groupId'] = $decoder['id_groups']; + } + + if (isset($decoder['groupId']) === true) { + $values['groupId'] = $decoder['groupId']; + } + + if (isset($decoder['legend_position']) === true) { + $values['legendPosition'] = $decoder['legend_position']; + } + + if (isset($decoder['legendPosition']) === true) { + $values['legendPosition'] = $decoder['legendPosition']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * @@ -311,20 +364,26 @@ class TopNEventByModuleWidget extends Widget if ($all_group === false) { $sql = sprintf( - 'SELECT id_agentmodule, COUNT(*) AS count + 'SELECT id_agente, + id_agentmodule, + event_type, + COUNT(*) AS count FROM tevento WHERE utimestamp >= %d AND id_grupo IN (%s) GROUP BY id_agentmodule, event_type ORDER BY count DESC LIMIT %d', - implode(',', $this->values['groupId']), $timestamp, + implode(',', $this->values['groupId']), $this->values['amountShow'] ); } else { $sql = sprintf( - 'SELECT id_agentmodule, COUNT(*) AS count + 'SELECT id_agente, + id_agentmodule, + event_type, + COUNT(*) AS count FROM tevento WHERE utimestamp >= %d GROUP BY id_agentmodule, event_type @@ -353,8 +412,9 @@ class TopNEventByModuleWidget extends Widget $name = __('System'); } else { $name_agent = io_safe_output( - agents_get_alias($row['id_agentmodule']) + agents_get_alias($row['id_agente']) ); + $name_module = io_safe_output( modules_get_agentmodule_name($row['id_agentmodule']) ); diff --git a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php index 9176bec9ef..994cceac73 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php +++ b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php @@ -155,7 +155,7 @@ class TreeViewWidget extends Widget $this->cellId = $cellId; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -177,14 +177,136 @@ class TreeViewWidget extends Widget // This forces at least a first configuration. $this->configurationRequired = false; - if (isset($this->values['groupId']) === false) { - $this->configurationRequired = true; - } $this->overflow_scrollbars = false; } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['tab']) === true) { + $values['typeTree'] = $decoder['tab']; + } + + if (isset($decoder['typeTree']) === true) { + $values['typeTree'] = $decoder['typeTree']; + } + + if (isset($decoder['search_group']) === true) { + $values['groupId'] = $decoder['search_group']; + } + + if (isset($decoder['groupId']) === true) { + $values['groupId'] = $decoder['groupId']; + } + + if (isset($decoder['open_all_nodes']) === true) { + $values['openAllGroups'] = $decoder['open_all_nodes']; + } + + if (isset($decoder['openAllGroups']) === true) { + $values['openAllGroups'] = $decoder['openAllGroups']; + } + + if (isset($decoder['status_agent']) === true) { + switch ((int) $decoder['status_agent']) { + case 0: + $values['agentStatus'] = AGENT_STATUS_NORMAL; + break; + + case 1: + $values['agentStatus'] = AGENT_STATUS_CRITICAL; + break; + + case 2: + $values['agentStatus'] = AGENT_STATUS_WARNING; + break; + + case 3: + $values['agentStatus'] = AGENT_STATUS_UNKNOWN; + break; + + case 5: + $values['agentStatus'] = AGENT_STATUS_NOT_INIT; + break; + + default: + case -1: + $values['agentStatus'] = AGENT_STATUS_ALL; + break; + } + } + + if (isset($decoder['agentStatus']) === true) { + $values['agentStatus'] = $decoder['agentStatus']; + } + + if (isset($decoder['search_agent']) === true) { + $values['filterAgent'] = $decoder['search_agent']; + } + + if (isset($decoder['filterAgent']) === true) { + $values['filterAgent'] = $decoder['filterAgent']; + } + + if (isset($decoder['status_module']) === true) { + switch ((int) $decoder['status_module']) { + case 0: + $values['moduleStatus'] = AGENT_MODULE_STATUS_NORMAL; + break; + + case 1: + $values['moduleStatus'] = AGENT_MODULE_STATUS_CRITICAL_BAD; + break; + + case 2: + $values['moduleStatus'] = AGENT_MODULE_STATUS_WARNING; + break; + + case 3: + $values['moduleStatus'] = AGENT_MODULE_STATUS_UNKNOWN; + break; + + case 5: + $values['moduleStatus'] = AGENT_MODULE_STATUS_NOT_INIT; + break; + + default: + case -1: + $values['moduleStatus'] = -1; + break; + } + + $values['moduleStatus'] = $decoder['status_module']; + } + + if (isset($decoder['moduleStatus']) === true) { + $values['moduleStatus'] = $decoder['moduleStatus']; + } + + if (isset($decoder['search_module']) === true) { + $values['filterModule'] = $decoder['search_module']; + } + + if (isset($decoder['filterModule']) === true) { + $values['filterModule'] = $decoder['filterModule']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/url.php b/pandora_console/include/lib/Dashboard/Widgets/url.php index 70a841a9fd..4259f1abb1 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/url.php +++ b/pandora_console/include/lib/Dashboard/Widgets/url.php @@ -142,7 +142,7 @@ class UrlWidget extends Widget $this->gridWidth = $gridWidth; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -172,6 +172,31 @@ class UrlWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['url']) === true) { + $values['urlText'] = $decoder['url']; + } + + if (isset($decoder['urlText']) === true) { + $values['urlText'] = $decoder['urlText']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php index 92de8445e2..47c002f2ad 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php +++ b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php @@ -106,6 +106,13 @@ class WuxWidget extends Widget */ protected $gridWidth; + /** + * Cell ID. + * + * @var integer + */ + protected $cellId; + /** * Construct. @@ -142,8 +149,11 @@ class WuxWidget extends Widget // Grid Width. $this->gridWidth = $gridWidth; + // Cell Id. + $this->cellId = $cellId; + // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -173,6 +183,43 @@ class WuxWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['wux_transaction_'.$this->cellId]) === true) { + $values['transactionId'] = $decoder['wux_transaction_'.$this->cellId]; + } + + if (isset($decoder['transactionId']) === true) { + $values['transactionId'] = $decoder['transactionId']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php index 25b4270715..49187dcb05 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php +++ b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php @@ -154,7 +154,7 @@ class WuxStatsWidget extends Widget $this->cellId = $cellId; // Options. - $this->values = $this->getOptionsWidget(); + $this->values = $this->decoders($this->getOptionsWidget()); // Positions. $this->position = $this->getPositionWidget(); @@ -184,6 +184,51 @@ class WuxStatsWidget extends Widget } + /** + * Decoders hack for retrocompability. + * + * @param array $decoder Values. + * + * @return array Returns the values ​​with the correct key. + */ + public function decoders(array $decoder): array + { + $values = []; + // Retrieve global - common inputs. + $values = parent::decoders($decoder); + + if (isset($decoder['id_agent_'.$this->cellId]) === true) { + $values['agentId'] = $decoder['id_agent_'.$this->cellId]; + } + + if (isset($decoder['agentId']) === true) { + $values['agentId'] = $decoder['agentId']; + } + + if (isset($decoder['metaconsoleId']) === true) { + $values['metaconsoleId'] = $decoder['metaconsoleId']; + } + + if (isset($decoder['wux_transaction_'.$this->cellId]) === true) { + $values['transactionId'] = $decoder['wux_transaction_'.$this->cellId]; + } + + if (isset($decoder['transactionId']) === true) { + $values['transactionId'] = $decoder['transactionId']; + } + + if (isset($decoder['view_all_stats']) === true) { + $values['allStats'] = $decoder['view_all_stats']; + } + + if (isset($decoder['allStats']) === true) { + $values['allStats'] = $decoder['allStats']; + } + + return $values; + } + + /** * Generates inputs for form (specific). * diff --git a/pandora_console/include/styles/dashboards.css b/pandora_console/include/styles/dashboards.css index 0db5cd6cb3..f3b41ccb2c 100644 --- a/pandora_console/include/styles/dashboards.css +++ b/pandora_console/include/styles/dashboards.css @@ -487,3 +487,7 @@ div#main_pure { .info_box tbody tr td.icon { padding-right: 10px !important; } + +.content-widget .databox.filters > tbody > tr > td { + padding-right: 30px; +} diff --git a/pandora_console/views/dashboard/cell.php b/pandora_console/views/dashboard/cell.php index ab7a9c4457..bdba1fffe9 100644 --- a/pandora_console/views/dashboard/cell.php +++ b/pandora_console/views/dashboard/cell.php @@ -34,6 +34,7 @@ if ($redraw === false) { $output .= '
    '; $output .= '
    '; + if ((int) $cellData['id_widget'] !== 0) { $options = json_decode($cellData['options'], true); $output .= $options['title']; From 026562e7ee6f70df8e6922c503c5ab79174e499d Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 30 Apr 2020 15:00:04 +0200 Subject: [PATCH 063/110] MR changes --- pandora_console/extras/mr/38.sql | 5 +++++ .../extras/pandoradb_migrate_6.0_to_7.0.mysql.sql | 1 + pandora_console/pandoradb.sql | 1 + 3 files changed, 7 insertions(+) create mode 100644 pandora_console/extras/mr/38.sql diff --git a/pandora_console/extras/mr/38.sql b/pandora_console/extras/mr/38.sql new file mode 100644 index 0000000000..8ddc84c3ae --- /dev/null +++ b/pandora_console/extras/mr/38.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +ALTER TABLE trecon_task add column `rcmd_enabled` TINYINT(1) UNSIGNED DEFAULT 0 AFTER `wmi_enabled`; + +COMMIT; diff --git a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql index abfbdb4f96..b97d354e73 100644 --- a/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql +++ b/pandora_console/extras/pandoradb_migrate_6.0_to_7.0.mysql.sql @@ -1674,6 +1674,7 @@ ALTER TABLE trecon_task ADD `alias_as_name` int(2) unsigned default '0'; ALTER TABLE trecon_task ADD `snmp_enabled` int(2) unsigned default '0'; ALTER TABLE trecon_task ADD `vlan_enabled` int(2) unsigned default '0'; ALTER TABLE trecon_task ADD `wmi_enabled` tinyint(1) unsigned DEFAULT '0'; +ALTER TABLE trecon_task ADD `rcmd_enabled` tinyint(1) unsigned DEFAULT '0'; ALTER TABLE trecon_task ADD `auth_strings` text; ALTER TABLE trecon_task ADD `autoconfiguration_enabled` tinyint(1) unsigned default '0'; ALTER TABLE trecon_task ADD `summary` text; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index c698f0d6a9..a00b796864 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -805,6 +805,7 @@ CREATE TABLE IF NOT EXISTS `trecon_task` ( `snmp_privacy_pass` varchar(255) NOT NULL default '', `snmp_security_level` varchar(25) NOT NULL default '', `wmi_enabled` tinyint(1) unsigned DEFAULT 0, + `rcmd_enabled` tinyint(1) unsigned DEFAULT 0, `auth_strings` text, `auto_monitor` TINYINT(1) UNSIGNED DEFAULT 1, `autoconfiguration_enabled` tinyint(1) unsigned default 0, From 900e25eef19f81a4bfea266b6f24d008ab753a10 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 30 Apr 2020 15:00:25 +0200 Subject: [PATCH 064/110] WIP rcmd in H&D --- .../godmode/wizards/HostDevices.class.php | 2 + .../lib/PandoraFMS/DiscoveryServer.pm | 53 ++++++- pandora_server/lib/PandoraFMS/Recon/Base.pm | 134 ++++++++++++++++++ 3 files changed, 185 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/wizards/HostDevices.class.php b/pandora_console/godmode/wizards/HostDevices.class.php index 5f6f0c7dba..c1d970086e 100755 --- a/pandora_console/godmode/wizards/HostDevices.class.php +++ b/pandora_console/godmode/wizards/HostDevices.class.php @@ -491,6 +491,7 @@ class HostDevices extends Wizard $parent_recursion = get_parameter_switch('parent_recursion'); $vlan_enabled = get_parameter_switch('vlan_enabled'); $wmi_enabled = get_parameter_switch('wmi_enabled'); + $rcmd_enabled = get_parameter_switch('rcmd_enabled'); $resolve_names = get_parameter_switch('resolve_names'); $snmp_version = get_parameter('snmp_version', null); $community = get_parameter('community', null); @@ -538,6 +539,7 @@ class HostDevices extends Wizard $this->task['parent_recursion'] = $parent_recursion; $this->task['vlan_enabled'] = $vlan_enabled; $this->task['wmi_enabled'] = $wmi_enabled; + $this->task['rcmd_enabled'] = $rcmd_enabled; $this->task['resolve_names'] = $resolve_names; $this->task['snmp_version'] = $snmp_version; $this->task['snmp_auth_user'] = $snmp_auth_user; diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 8cee68d538..7303771422 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -276,6 +276,9 @@ sub data_consumer ($$) { task_id => $task->{'id_rt'}, vlan_cache_enabled => $task->{'vlan_enabled'}, wmi_enabled => $task->{'wmi_enabled'}, + rcmd_enabled => $task->{'rcmd_enabled'}, + rcmd_timeout => $pa_config->{'rcmd_timeout'}, + rcmd_timeout_bin => $pa_config->{'rcmd_timeout_bin'}, auth_strings_array => \@auth_strings, autoconfiguration_enabled => $task->{'autoconfiguration_enabled'}, main_event_id => $main_event, @@ -402,6 +405,8 @@ sub exec_recon_script ($$$) { sub PandoraFMS::Recon::Base::guess_os($$) { my ($self, $device) = @_; + return $self->{'os_id'}{$device} if defined($self->{'os_id'}{$device}); + $DEVNULL = '/dev/null' if (!defined($DEVNULL)); $DEVNULL = '/NUL' if ($^O =~ /win/i && !defined($DEVNULL)); @@ -510,6 +515,9 @@ sub PandoraFMS::Recon::Base::test_module($$) { ) { # Generic, plugins. (21-23 ASYNC) if ($test->{'id_modulo'} == 6) { + + return 0 unless $self->wmi_responds($addr); + # WMI commands. $value = $self->call( 'wmi_get_value', @@ -527,9 +535,31 @@ sub PandoraFMS::Recon::Base::test_module($$) { } elsif ($test->{'id_tipo_modulo'} >= 34 && $test->{'id_tipo_modulo'} <= 37) { # Remote command. - # XXX TODO: Test remote commands. - # Disabled until we can ensure result. - return 0; + return 0 unless $self->rcmd_responds($addr); + + my $target_os = pandora_get_os($self->{'dbh'}, $test->{'custom_string_2'}); + + $value = enterprise_hook( + 'remote_execution_module', + [ + # pa_config, + $self->{'pa_config'}, + # dbh, + $self->{'dbh'}, + # module, + $test, + # target_os, + $target_os, + # ip_target, + $test->{'ip_target'}, + # tcp_port + $test->{'tcp_port'} + ] + ); + + chomp($value); + + return 0 unless defined($value); } elsif ($test->{'id_tipo_modulo'} >= 8 && $test->{'id_tipo_modulo'} <= 11) { # TCP @@ -917,6 +947,15 @@ sub PandoraFMS::Recon::Base::create_network_profile_modules($$) { $component->{'plugin_pass'} = $self->{'snmp_auth_pass'}; } + if ($component->{'type'} >= 34 && $component->{'type'} <= 37) { + # Update module credentials. + $component->{'custom_string_1'} = $self->rcmd_credentials_key($device); + $component->{'custom_string_2'} = pandora_get_os_by_id( + $self->{'dbh'}, + $self->guess_os($device) + ); + } + $component->{'__module_component'} = 1; # 3. Try to register module into monitoring list. @@ -1012,7 +1051,10 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { || $force_creation ) { my $parent_id; - my $os_id = $self->guess_os($data->{'agent'}{'direccion'}); + my $os_id = $data->{'agent'}{'id_os'}; + if (is_empty($os_id)) { + $os_id = $self->guess_os($data->{'agent'}{'direccion'}); + } $self->call('message', "Agent accepted: ".$data->{'agent'}{'nombre'}, 5); @@ -1337,6 +1379,9 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { next if is_empty($label); + # Retrieve target agent OS version. + $self->{'agents_found'}->{$addr}{'agent'}{'id_os'} = $self->guess_os($addr); + $self->call('update_progress', $progress); $progress += $step; # Store temporally. Wait user approval. diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index 4b3a920f9f..dec92f1437 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -160,6 +160,12 @@ sub new { # Globally enable/disable WMI scans. wmi_enabled => 0, + + # Globally enable/disable RCMD scans. + rcmd_enabled => 0, + rcmd_timeout => 4, + rcmd_timeout_bin => '/usr/bin/timeout', + auth_strings_array => [], wmi_timeout => 3, timeout_cmd => '', @@ -1429,6 +1435,12 @@ sub test_capabilities($$) { # Add wmi scan if enabled. $self->wmi_discovery($addr); } + + # WMI discovery. + if (is_enabled($self->{'rcmd_enabled'})) { + # Add wmi scan if enabled. + $self->rcmd_discovery($addr); + } } ################################################################################ @@ -2268,6 +2280,105 @@ sub wmi_credentials_calculation { return undef; } +################################################################################ +# Returns the credentials with which the host responds to WMI queries or +# undef if it does not respond to WMI. +################################################################################ +sub rcmd_credentials { + my ($self, $target) = @_; + return $self->{'rcmd_auth'}{$target}; +} + +################################################################################ +# Returns the credentials KEY with which the host responds to WMI queries or +# undef if it does not respond to WMI. +################################################################################ +sub rcmd_credentials_key { + my ($self, $target) = @_; + return $self->{'rcmd_auth_key'}{$target}; +} + +################################################################################ +# Calculate WMI credentials for target, 1 if calculated, undef if cannot +# connect to target. Credentials could be empty (-N) +################################################################################ +sub rcmd_credentials_calculation { + my ($self, $target) = @_; + + my $rcmd = PandoraFMS::Recon::Util::enterprise_new( + 'PandoraFMS::RemoteCmd',[{ + 'psexec' => $self->{'parent'}->{'pa_config'}->{'psexec'}, + 'winexe' => $self->{'parent'}->{'pa_config'}->{'winexe'}, + 'plink' => $self->{'parent'}->{'pa_config'}->{'plink'} + }] + ); + + if (!$rcmd) { + # Library not available. + $self->call('message', "PandoraFMS::RemoteCmd library not available", 10); + return undef; + } + + my $id_os = $self->call('guess_os', $target); + $rcmd->set_host($target); + $rcmd->set_os($id_os); + + # Test all credentials selected. + foreach my $key_index (@{$self->{'auth_strings_array'}}) { + my $cred = $self->call('get_credentials', $key_index); + next if ref($cred) ne 'HASH'; + $rcmd->clean_ssh_lib(); + + my $username; + my $domain; + + if($cred->{'username'} =~ /^(.*?)\\(.*)$/) { + $domain = $1; + $username = $2; + } else { + $username = $cred->{'username'}; + } + + $rcmd->set_credentials( + { + 'user' => $username, + 'pass' => $cred->{'password'}, + 'domain' => $domain + } + ); + + $rcmd->set_timeout( + $self->{'rcmd_timeout_bin'}, + $self->{'rcmd_timeout'} + ); + + my $result; + eval { + $result = $rcmd->rcmd('echo 1'); + chomp($result); + my $out = ''; + $out = $result if !is_empty($result); + $self->call('message', "Trying [".$key_index."] in [". $target."] [".$id_os."]: [$out]", 10); + }; + if ($@) { + $self->call('message', "Failed while trying [".$key_index."] in [". $target."] [".$id_os."]:" . @_, 10); + } + + if (!is_empty($result) && $result == "1") { + $self->{'rcmd_auth'}{$target} = $cred; + $self->{'rcmd_auth_key'}{$target} = $key_index; + $self->{'rcmd'}{$target} = 1; + $self->{'summary'}->{'RCMD'} += 1; + $self->call('message', "RCMD available for $target", 10); + return 1; + } + + } + + # Not found. + return 0; +} + ################################################################################ # Tests wmi capability for addr. ################################################################################ @@ -2282,6 +2393,20 @@ sub wmi_discovery { } +################################################################################ +# Tests credentials against addr. +################################################################################ +sub rcmd_discovery { + my ($self, $addr) = @_; + + # Initialization. + $self->{'rcmd'} = {} unless ref($self->{'rcmd'}) eq 'HASH'; + + # Calculate credentials. + $self->rcmd_credentials_calculation($addr); + +} + ################################################################################ # Extra: WMI imported methods. DO NOT EXPORT TO AVOID DOUBLE DEF. ################################################################################ @@ -2371,6 +2496,15 @@ sub wmi_responds { return 0; } +################################################################################ +# Checks if target is reachable using rcmd. +################################################################################ +sub rcmd_responds { + my ($self, $target) = @_; + return 1 if is_enabled($self->{'rcmd'}{$target}); + return 0; +} + ################################################################################ # Performs a WMI request and returns the requested column of the first row. # Returns undef on error. From da92cb53f8493d3f24c669e0ea10a3bc57dca387 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 30 Apr 2020 16:25:00 +0200 Subject: [PATCH 065/110] rcmd h&d --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 11 +++++++++++ pandora_server/lib/PandoraFMS/Recon/Base.pm | 5 ++--- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 7303771422..8639c52b6f 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -935,6 +935,16 @@ sub PandoraFMS::Recon::Base::create_network_profile_modules($$) { $np_component->{'id_nc'} ); + # Tag cleanup. + if (!is_empty($component->{'tags'})) { + my @tags = map { + if ($_ > 0) { $_ } + else {} + } split ',', $component->{'tags'}; + + $component->{'tags'} = join ',', @tags; + } + $component->{'name'} = safe_output($component->{'name'}); if ($component->{'type'} >= 15 && $component->{'type'} <= 18) { $component->{'snmp_community'} = safe_output($self->get_community($device)); @@ -1386,6 +1396,7 @@ sub PandoraFMS::Recon::Base::report_scanned_agents($;$) { $progress += $step; # Store temporally. Wait user approval. my $encoded; + eval { local $SIG{__DIE__}; $encoded = encode_base64( diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index dec92f1437..ff78852bd5 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -1364,7 +1364,7 @@ sub prepare_agent($$) { $self->{'agents_found'} = {} if ref($self->{'agents_found'}) ne 'HASH'; # Already initialized. - return if ref($self->{'agents_found'}->{$host_name}) eq 'HASH'; + return if (ref($self->{'agents_found'}->{$addr}) eq 'HASH'); my @addresses = $self->get_addresses($addr); $self->{'agents_found'}->{$addr} = { @@ -1413,8 +1413,7 @@ sub add_module($$$) { return unless is_enabled($rs); - $self->{'agents_found'}->{$agent}->{'modules'}{$data->{'name'}} = $data; - + $self->{'agents_found'}->{$agent}->{'modules'}->{$data->{'name'}} = $data; } ################################################################################ From c7f01812095b7790e34d8593c9863e72a6325aeb Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 30 Apr 2020 16:53:45 +0200 Subject: [PATCH 066/110] fix --- pandora_server/lib/PandoraFMS/Recon/Base.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index bbe7802097..a7cc451cc9 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -1358,7 +1358,7 @@ sub prepare_agent($$) { $self->{'agents_found'} = {} if ref($self->{'agents_found'}) ne 'HASH'; # Already initialized. - return if ref($self->{'agents_found'}->{$host_name}) eq 'HASH'; + return if ref($self->{'agents_found'}->{$addr}) eq 'HASH'; my @addresses = $self->get_addresses($addr); $self->{'agents_found'}->{$addr} = { From eaf10f7d6ec52a72fa410fd7dff42548e1cf7f9e Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 30 Apr 2020 18:07:52 +0200 Subject: [PATCH 067/110] weird json --- pandora_server/lib/PandoraFMS/Tools.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index 4b1486f0ef..c95324e79d 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -2390,12 +2390,12 @@ sub p_encode_json { ################################################################################ sub p_decode_json { my ($pa_config, $data) = @_; - - # Initialize JSON manager. - my $json = JSON->new->allow_nonref; my $decoded_data; if ($JSON::VERSION > 2.90) { + # Initialize JSON manager. + my $json = JSON->new->allow_nonref; + $decoded_data = $json->decode($data); } else { if (!is_empty($decoded_data)) { From 55392bac47622ebe039dd02801ba24b0cd369587 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 30 Apr 2020 18:11:50 +0200 Subject: [PATCH 068/110] weird json --- pandora_server/lib/PandoraFMS/Tools.pm | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Tools.pm b/pandora_server/lib/PandoraFMS/Tools.pm index c95324e79d..cf9f01f5e1 100755 --- a/pandora_server/lib/PandoraFMS/Tools.pm +++ b/pandora_server/lib/PandoraFMS/Tools.pm @@ -2391,17 +2391,14 @@ sub p_encode_json { sub p_decode_json { my ($pa_config, $data) = @_; my $decoded_data; - - if ($JSON::VERSION > 2.90) { + + if ($JSON::VERSION > 2.90) { # Initialize JSON manager. my $json = JSON->new->allow_nonref; - - $decoded_data = $json->decode($data); - } else { - if (!is_empty($decoded_data)) { - $decoded_data = decode_json($data); - } - } + $decoded_data = $json->decode($data); + } else { + $decoded_data = decode_json($data); + } return $decoded_data; } From e215cdc1946c2538ca95ac81ffc3feb91153c635 Mon Sep 17 00:00:00 2001 From: marcos Date: Thu, 30 Apr 2020 18:20:09 +0200 Subject: [PATCH 069/110] add cache false on functions_module_library --- pandora_console/include/javascript/module_library.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/javascript/module_library.js b/pandora_console/include/javascript/module_library.js index 9f5c64fc1f..4d5be47f8c 100644 --- a/pandora_console/include/javascript/module_library.js +++ b/pandora_console/include/javascript/module_library.js @@ -103,6 +103,7 @@ $(document).ready(function() { url: "https://pandorafms.com/library/wp-json/wp/v2/categories?per_page=100", type: "GET", + cache: false, crossDomain: true, contentType: "application/json", success: function(data) { @@ -136,6 +137,7 @@ $(document).ready(function() { url: api_url + search_modules + "&orderby=modified&per_page=9&page=" + page, type: "GET", + cache: false, crossDomain: true, contentType: "application/json", beforeSend: function(xhr) { @@ -238,6 +240,7 @@ function library_main() { $.ajax({ url: "https://pandorafms.com/library/wp-json/wp/v2/pages/121", type: "GET", + cache: false, crossDomain: true, contentType: "application/json", beforeSend: function(xhr) { @@ -313,6 +316,7 @@ function get_category(id) { $.ajax({ url: "https://pandorafms.com/library/wp-json/wp/v2/categories/" + id, type: "GET", + cache: false, contentType: "application/json", success: function(response) { $("#category_title_result h2").append( From 848503babe770dbd7b10caa950edb0c883b12b6b Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 1 May 2020 01:00:14 +0200 Subject: [PATCH 070/110] 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 47c033edb1..fba44e5be6 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200430 +Version: 7.0NG.745-200501 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 fa4ac528ad..13e0a07e33 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.745-200430" +pandora_version="7.0NG.745-200501" 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 40a8cce5bd..046ca605ff 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200430'; +use constant AGENT_BUILD => '200501'; # 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 417fdbd25f..2ae1893e37 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_unix %define version 7.0NG.745 -%define release 200430 +%define release 200501 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 3b757bcb0b..bbdd3c457f 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200430 +%define release 200501 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 20843fd36b..79f906d8b0 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200430" +PI_BUILD="200501" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 2489f4a42a..094bfa1c32 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200430} +{200501} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 8af31057fa..d3df0c1b69 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.745(Build 200430)") +#define PANDORA_VERSION ("7.0NG.745(Build 200501)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 6d1c21ee76..e35b81a0fb 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.745(Build 200430))" + VALUE "ProductVersion", "(7.0NG.745(Build 200501))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 5c07d48952..40fd7cf1c5 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200430 +Version: 7.0NG.745-200501 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 f32adfe212..a2febaf920 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.745-200430" +pandora_version="7.0NG.745-200501" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 35e1ac44bb..82a1990e56 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 = 'PC200430'; +$build_version = 'PC200501'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index dab768e0c2..22d3cc87ff 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 06451be8cb..2357a63c30 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.745 -%define release 200430 +%define release 200501 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index ab7c0bde25..c2a84d42fd 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.745 -%define release 200430 +%define release 200501 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 53e8a13159..e370e0bedf 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200430" +PI_BUILD="200501" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index c45083b994..aaafea7d0d 100644 --- 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.745 PS200430"; +my $version = "7.0NG.745 PS200501"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index fd8770cfc8..65ea80fe2d 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.745 PS200430"; +my $version = "7.0NG.745 PS200501"; # save program name for logging my $progname = basename($0); From f95fed2d795396600dd652de986e77a865861c7b Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 2 May 2020 01:00:15 +0200 Subject: [PATCH 071/110] 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 fba44e5be6..fec8bba88d 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200501 +Version: 7.0NG.745-200502 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 13e0a07e33..5a4a7154dc 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.745-200501" +pandora_version="7.0NG.745-200502" 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 046ca605ff..9b6c232e99 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200501'; +use constant AGENT_BUILD => '200502'; # 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 2ae1893e37..96c82fbc9c 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_unix %define version 7.0NG.745 -%define release 200501 +%define release 200502 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 bbdd3c457f..d816fae76e 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200501 +%define release 200502 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 79f906d8b0..66b4542d52 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200501" +PI_BUILD="200502" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 094bfa1c32..3f6dbc8190 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200501} +{200502} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index d3df0c1b69..0f0973389f 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.745(Build 200501)") +#define PANDORA_VERSION ("7.0NG.745(Build 200502)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e35b81a0fb..f27131d6b2 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.745(Build 200501))" + VALUE "ProductVersion", "(7.0NG.745(Build 200502))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 40fd7cf1c5..7ca60f6ad8 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200501 +Version: 7.0NG.745-200502 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 a2febaf920..896423d95b 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.745-200501" +pandora_version="7.0NG.745-200502" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 82a1990e56..44a51670de 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 = 'PC200501'; +$build_version = 'PC200502'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 22d3cc87ff..4626763989 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 2357a63c30..39ebad05dd 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.745 -%define release 200501 +%define release 200502 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index c2a84d42fd..3ac85fe86f 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.745 -%define release 200501 +%define release 200502 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index e370e0bedf..19b5a9c0e6 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200501" +PI_BUILD="200502" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index aaafea7d0d..b3c27e5acc 100644 --- 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.745 PS200501"; +my $version = "7.0NG.745 PS200502"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 65ea80fe2d..ce26807eeb 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.745 PS200501"; +my $version = "7.0NG.745 PS200502"; # save program name for logging my $progname = basename($0); From 7006e3febdbecbf6e94de0bc9dc71a12d3ba2030 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 3 May 2020 01:00:14 +0200 Subject: [PATCH 072/110] 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 fec8bba88d..1d4240de21 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200502 +Version: 7.0NG.745-200503 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 5a4a7154dc..bf6e107117 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.745-200502" +pandora_version="7.0NG.745-200503" 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 9b6c232e99..02e798b3b9 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200502'; +use constant AGENT_BUILD => '200503'; # 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 96c82fbc9c..56d3e496c3 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_unix %define version 7.0NG.745 -%define release 200502 +%define release 200503 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 d816fae76e..ce3fdd9098 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200502 +%define release 200503 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 66b4542d52..14efbaf254 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200502" +PI_BUILD="200503" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 3f6dbc8190..af9c55b72b 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200502} +{200503} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 0f0973389f..cd9938c285 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.745(Build 200502)") +#define PANDORA_VERSION ("7.0NG.745(Build 200503)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index f27131d6b2..a16b458e07 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.745(Build 200502))" + VALUE "ProductVersion", "(7.0NG.745(Build 200503))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 7ca60f6ad8..fd2722dc1d 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200502 +Version: 7.0NG.745-200503 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 896423d95b..b2a8027a5f 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.745-200502" +pandora_version="7.0NG.745-200503" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 44a51670de..3c89e7e0ee 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 = 'PC200502'; +$build_version = 'PC200503'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 4626763989..131fcb4001 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 39ebad05dd..57000a11b4 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.745 -%define release 200502 +%define release 200503 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 3ac85fe86f..4f3ba625c1 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.745 -%define release 200502 +%define release 200503 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 19b5a9c0e6..c8e47c557b 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200502" +PI_BUILD="200503" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index b3c27e5acc..38e3443b25 100644 --- 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.745 PS200502"; +my $version = "7.0NG.745 PS200503"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index ce26807eeb..5ee088ea9e 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.745 PS200502"; +my $version = "7.0NG.745 PS200503"; # save program name for logging my $progname = basename($0); From 12128ea2f18e403c7bf91c841413b2d8cf958f7d Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 4 May 2020 01:00:15 +0200 Subject: [PATCH 073/110] 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 1d4240de21..a3eeb6d31b 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200503 +Version: 7.0NG.745-200504 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 bf6e107117..e5bc1d186c 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.745-200503" +pandora_version="7.0NG.745-200504" 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 02e798b3b9..729779e8d5 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200503'; +use constant AGENT_BUILD => '200504'; # 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 56d3e496c3..7a9aa97c5e 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_unix %define version 7.0NG.745 -%define release 200503 +%define release 200504 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 ce3fdd9098..ad9917775b 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200503 +%define release 200504 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 14efbaf254..2addfe19e0 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200503" +PI_BUILD="200504" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index af9c55b72b..39912564c5 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200503} +{200504} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index cd9938c285..eaecc9cede 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.745(Build 200503)") +#define PANDORA_VERSION ("7.0NG.745(Build 200504)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index a16b458e07..b7025f91ce 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.745(Build 200503))" + VALUE "ProductVersion", "(7.0NG.745(Build 200504))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index fd2722dc1d..198bad6db7 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200503 +Version: 7.0NG.745-200504 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 b2a8027a5f..0059d8c4c4 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.745-200503" +pandora_version="7.0NG.745-200504" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 3c89e7e0ee..b3da2c62f1 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 = 'PC200503'; +$build_version = 'PC200504'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 131fcb4001..3ec646e963 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 57000a11b4..4e717d5902 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.745 -%define release 200503 +%define release 200504 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 4f3ba625c1..20c173a2fe 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.745 -%define release 200503 +%define release 200504 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c8e47c557b..048347fa3c 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200503" +PI_BUILD="200504" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 38e3443b25..fe2b57613c 100644 --- 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.745 PS200503"; +my $version = "7.0NG.745 PS200504"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 5ee088ea9e..9bcdbd7f30 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.745 PS200503"; +my $version = "7.0NG.745 PS200504"; # save program name for logging my $progname = basename($0); From 4815dce8aa1deb601140ed8148fcf7ad240a110d Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 4 May 2020 11:13:15 +0200 Subject: [PATCH 074/110] H&D port filtering + control tasks cancellation while restarting server --- .../godmode/wizards/DiscoveryTaskList.class.php | 9 ++++++++- .../godmode/wizards/HostDevices.class.php | 17 +++++++++++++++++ .../lib/PandoraFMS/DiscoveryServer.pm | 12 +++++++++++- pandora_server/lib/PandoraFMS/Recon/Base.pm | 5 +++++ 4 files changed, 41 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php index 118f604b14..88506f4a02 100644 --- a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php +++ b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php @@ -538,7 +538,14 @@ class DiscoveryTaskList extends HTML } $can_be_reviewed = false; - if ($task['review_mode'] == DISCOVERY_STANDARD) { + if (empty($task['summary']) === false + && $task['summary'] == 'cancelled' + ) { + $data[5] = __('Cancelled').ui_print_help_tip( + __('Server has been restarted while executing this task, please retry.'), + true + ); + } else if ($task['review_mode'] == DISCOVERY_STANDARD) { if ($task['status'] <= 0 && empty($task['summary']) === false ) { diff --git a/pandora_console/godmode/wizards/HostDevices.class.php b/pandora_console/godmode/wizards/HostDevices.class.php index c1d970086e..9cb9505a5b 100755 --- a/pandora_console/godmode/wizards/HostDevices.class.php +++ b/pandora_console/godmode/wizards/HostDevices.class.php @@ -482,6 +482,7 @@ class HostDevices extends Wizard $review_results = get_parameter_switch('review_results'); $review_limited = (bool) get_parameter('review_limited', 0); $auto_monitor = get_parameter_switch('auto_monitor'); + $recon_ports = get_parameter('recon_ports', null); $autoconf_enabled = get_parameter_switch( 'autoconfiguration_enabled' ); @@ -533,6 +534,7 @@ class HostDevices extends Wizard } $this->task['auto_monitor'] = $auto_monitor; + $this->task['recon_ports'] = $recon_ports; $this->task['snmp_enabled'] = $snmp_enabled; $this->task['os_detect'] = $os_detect; $this->task['parent_detection'] = $parent_detection; @@ -1038,6 +1040,21 @@ class HostDevices extends Wizard ], ]; + $form['inputs'][] = [ + 'label' => __('Filter by opened ports').ui_print_help_tip( + __( + 'Targets will be scanned if at least one of defined ports (comma separated) is open.' + ), + true + ), + 'arguments' => [ + 'name' => 'recon_ports', + 'type' => 'text', + 'return' => true, + 'value' => $this->task['recon_ports'], + ], + ]; + $form['inputs'][] = [ 'label' => __('Auto discover known hardware').ui_print_help_tip( __( diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 9ed6f830d1..1b9c433700 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -105,7 +105,7 @@ sub new ($$$$$$) { get_server_id ($dbh, $config->{'servername'}, DISCOVERYSERVER)); # Reset (but do not restart) manual recon tasks. - db_do ($dbh, 'UPDATE trecon_task SET status = -1 WHERE id_recon_server = ? AND status <> -1 AND interval_sweep = 0', + db_do ($dbh, 'UPDATE trecon_task SET status = -1, summary = "cancelled" WHERE id_recon_server = ? AND status <> -1 AND interval_sweep = 0', get_server_id ($dbh, $config->{'servername'}, DISCOVERYSERVER)); # Call the constructor of the parent class @@ -250,6 +250,13 @@ sub data_consumer ($$) { } } + if (!is_empty($task->{'recon_ports'})) { + # Accept only valid symbols. + if ($task->{'recon_ports'} !~ /[\d\-\,\ ]+/) { + $task->{'recon_ports'} = ''; + } + } + my $recon = new PandoraFMS::Recon::Base( communities => \@communities, dbh => $dbh, @@ -449,6 +456,9 @@ sub PandoraFMS::Recon::Base::guess_os($$) { sub PandoraFMS::Recon::Base::tcp_scan ($$) { my ($self, $host) = @_; + return if is_empty($host); + return if is_empty($self->{'recon_ports'}); + my $r = `"$self->{pa_config}->{nmap}" -p$self->{recon_ports} $host`; # Same as ""| grep open | wc -l" but multi-OS; diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index 0099dae54b..acdebf392a 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -1549,6 +1549,11 @@ sub scan_subnet($) { # Populate. $self->call('update_progress', ceil($progress)); + # Filter by port (if enabled). + if (!is_empty($self->{'recon_ports'})) { + next unless $self->call("tcp_scan", $addr) > 0; + } + # Enable/ disable capabilities. $self->test_capabilities($addr); } From b894f63f1f08464566cf2b7ec8c75c908ab676a5 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 5 May 2020 01:00:14 +0200 Subject: [PATCH 075/110] 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 a3eeb6d31b..dbeb1ea4ba 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200504 +Version: 7.0NG.745-200505 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 e5bc1d186c..656726327d 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.745-200504" +pandora_version="7.0NG.745-200505" 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 729779e8d5..8a0e42cda6 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200504'; +use constant AGENT_BUILD => '200505'; # 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 7a9aa97c5e..92f1c807fa 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_unix %define version 7.0NG.745 -%define release 200504 +%define release 200505 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 ad9917775b..1abaf5e39c 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200504 +%define release 200505 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 2addfe19e0..42c64434e0 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200504" +PI_BUILD="200505" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 39912564c5..008aa603ec 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200504} +{200505} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index eaecc9cede..766d47625b 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.745(Build 200504)") +#define PANDORA_VERSION ("7.0NG.745(Build 200505)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index b7025f91ce..14e90c1d79 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.745(Build 200504))" + VALUE "ProductVersion", "(7.0NG.745(Build 200505))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 198bad6db7..55b63c2f9d 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200504 +Version: 7.0NG.745-200505 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 0059d8c4c4..4f16f2c458 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.745-200504" +pandora_version="7.0NG.745-200505" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index b3da2c62f1..54caaa8bdb 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 = 'PC200504'; +$build_version = 'PC200505'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 3ec646e963..20839e9b5b 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 4e717d5902..2c2eacd8ec 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.745 -%define release 200504 +%define release 200505 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 20c173a2fe..4aac9099bb 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.745 -%define release 200504 +%define release 200505 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 048347fa3c..886bbeca06 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200504" +PI_BUILD="200505" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index fe2b57613c..a636f2e090 100644 --- 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.745 PS200504"; +my $version = "7.0NG.745 PS200505"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 9bcdbd7f30..41c9ee49d8 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.745 PS200504"; +my $version = "7.0NG.745 PS200505"; # save program name for logging my $progname = basename($0); From 490213dfed774695b835a4899880ac638a2fef4d Mon Sep 17 00:00:00 2001 From: tatiana Date: Tue, 5 May 2020 12:50:15 +0200 Subject: [PATCH 076/110] Changed path in a required file --- pandora_console/godmode/users/configure_user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index c026015cc7..dc0f726dc0 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -16,7 +16,7 @@ global $config; check_login(); -require 'vendor/autoload.php'; +require_once $config['homedir'].'/vendor/autoload.php'; use PandoraFMS\Dashboard\Manager; From 92ff71365194c8b251bc3cd6b9bc822fe49191d5 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Tue, 5 May 2020 18:58:45 +0200 Subject: [PATCH 077/110] 1st approach --- .../include/javascript/tree/TreeController.js | 32 ++++++++----------- pandora_console/include/styles/pandora.css | 9 ++++++ pandora_console/include/styles/tree.css | 15 ++++++++- pandora_console/operation/tree.php | 2 +- 4 files changed, 37 insertions(+), 21 deletions(-) diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js index eaac70d8ec..fc10404190 100644 --- a/pandora_console/include/javascript/tree/TreeController.js +++ b/pandora_console/include/javascript/tree/TreeController.js @@ -1,3 +1,5 @@ +/* eslint-disable */ + // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2010 Artica Soluciones Tecnologicas @@ -20,7 +22,7 @@ var TreeController = { recipient: "", tree: [], emptyMessage: "No data found.", - foundMessage: "Found groups", + foundMessage: "Groups found", errorMessage: "Error", baseURL: "", ajaxURL: "ajax.php", @@ -48,9 +50,15 @@ var TreeController = { .addClass("tree-root") .hide() .prepend( - '' + + '' + 'images/pandora.png" />' + + "" + + (controller.tree.length > 0 + ? controller.foundMessage + ": " + controller.tree.length + : "") + + "
    " ); } // Normal group @@ -315,7 +323,7 @@ var TreeController = { _processNodeCounterTitle($totalCounter, type, "total"); // Open the parentheses - $counters.append(" ("); + $counters.append("      [ "); $counters.append($totalCounter); @@ -409,7 +417,7 @@ var TreeController = { } // Close the parentheses - $counters.append(")"); + $counters.append(" ]"); hasCounters = true; } @@ -1086,20 +1094,6 @@ var TreeController = { } controller.recipient.empty(); - if ( - controller.tree.length !== undefined && - controller.foundMessage !== "not" - ) { - controller.recipient.html( - "
    " + - controller.foundMessage + - ": " + - controller.tree.length + - "
    " + - "
    " - ); - } - var $children = _processGroup(this.recipient, this.tree, true); $children.show(); diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index b9f3b2a1ed..abdeb95fb2 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -588,9 +588,18 @@ select:-internal-list-box { .padding-6 { padding: 6em; } +.margin-right-1 { + margin-right: 1em; +} +.margin-left-1 { + margin-left: 1em; +} .margin-right-2 { margin-right: 2em; } +.margin-left-2 { + margin-left: 2em; +} .no-border { border: none; } diff --git a/pandora_console/include/styles/tree.css b/pandora_console/include/styles/tree.css index 42649bd048..1113a2beb9 100644 --- a/pandora_console/include/styles/tree.css +++ b/pandora_console/include/styles/tree.css @@ -4,7 +4,7 @@ } .tree-group { - margin-left: 19px; + margin-left: 24px; padding-top: 1px; } @@ -18,12 +18,24 @@ min-height: 26px; } +div.tree-node { + background: 0 0; +} + +div.tree-node span { + font-size: 1.2em; +} + .tree-node:last-child { background: 0 0; } .node-content { height: 26px; font-size: 1.2em; + display: flex; + flex-direction: row; + flex-wrap: wrap; + align-items: center; } .node-content > img { @@ -121,6 +133,7 @@ } .tree-node > .node-content > .tree-node-counters { + font-size: 1em; } .tree-node > .node-content > img { diff --git a/pandora_console/operation/tree.php b/pandora_console/operation/tree.php index 41a6b9c5d2..91c23d164f 100755 --- a/pandora_console/operation/tree.php +++ b/pandora_console/operation/tree.php @@ -345,7 +345,7 @@ enterprise_hook('close_meta_frame'); detailRecipient: $.fixedBottomBox({ width: 400, height: window.innerHeight * 0.9 }), page: parameters['page'], emptyMessage: "", - foundMessage: "", + foundMessage: "", tree: data.tree, baseURL: "", ajaxURL: "", From 5ad9e5dbd7c05cd19d283164bde0aac3aac308e7 Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 6 May 2020 01:00:18 +0200 Subject: [PATCH 078/110] 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 dbeb1ea4ba..be39ceaf9c 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200505 +Version: 7.0NG.745-200506 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 656726327d..c6d22f35bb 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.745-200505" +pandora_version="7.0NG.745-200506" 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 8a0e42cda6..b3dc510f7c 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200505'; +use constant AGENT_BUILD => '200506'; # 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 92f1c807fa..bf6f103e05 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_unix %define version 7.0NG.745 -%define release 200505 +%define release 200506 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 1abaf5e39c..e637dc9669 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200505 +%define release 200506 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 42c64434e0..3e59487daa 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200505" +PI_BUILD="200506" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 008aa603ec..65fb253df7 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200505} +{200506} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 766d47625b..20ba9d7de0 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.745(Build 200505)") +#define PANDORA_VERSION ("7.0NG.745(Build 200506)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 14e90c1d79..23ad892f8c 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.745(Build 200505))" + VALUE "ProductVersion", "(7.0NG.745(Build 200506))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 55b63c2f9d..f62c42cc03 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200505 +Version: 7.0NG.745-200506 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 4f16f2c458..23943bc640 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.745-200505" +pandora_version="7.0NG.745-200506" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 54caaa8bdb..3a294c0947 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 = 'PC200505'; +$build_version = 'PC200506'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 20839e9b5b..d1f661be18 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 2c2eacd8ec..8159f33776 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.745 -%define release 200505 +%define release 200506 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 4aac9099bb..4a8ded5f91 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.745 -%define release 200505 +%define release 200506 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 886bbeca06..c6ca31c4de 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200505" +PI_BUILD="200506" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index a636f2e090..d30fbf76fc 100644 --- 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.745 PS200505"; +my $version = "7.0NG.745 PS200506"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 41c9ee49d8..0c97b1eb17 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.745 PS200505"; +my $version = "7.0NG.745 PS200506"; # save program name for logging my $progname = basename($0); From bd3ffc0c8d4bfe2a998f460f36679aaeee3862ae Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Wed, 6 May 2020 17:35:05 +0200 Subject: [PATCH 079/110] Tree view style review --- pandora_console/include/ajax/module.php | 81 +--------------- pandora_console/include/class/Tree.class.php | 8 +- pandora_console/include/functions_agents.php | 34 ++++++- pandora_console/include/functions_modules.php | 96 +++++++++++++++++++ .../include/javascript/tree/TreeController.js | 38 +++----- pandora_console/include/styles/tree.css | 28 +++++- 6 files changed, 174 insertions(+), 111 deletions(-) diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index cecf14d4df..f652c173c1 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1034,86 +1034,7 @@ if (check_login()) { } } - if (is_numeric($module['datos']) && !modules_is_string_type($module['id_tipo_modulo'])) { - if ($config['render_proc']) { - switch ($module['id_tipo_modulo']) { - case 2: - case 6: - case 9: - case 18: - case 21: - case 31: - if ($module['datos'] >= 1) { - $salida = $config['render_proc_ok']; - } else { - $salida = $config['render_proc_fail']; - } - break; - - default: - switch ($module['id_tipo_modulo']) { - case 15: - $value = db_get_value('snmp_oid', 'tagente_modulo', 'id_agente_modulo', $module['id_agente_modulo']); - if ($value == '.1.3.6.1.2.1.1.3.0' || $value == '.1.3.6.1.2.1.25.1.1.0') { - if ($module['post_process'] > 0) { - $salida = human_milliseconds_to_string(($module['datos'] / $module['post_process'])); - } else { - $salida = human_milliseconds_to_string($module['datos']); - } - } else { - $salida = remove_right_zeros(number_format($module['datos'], $config['graph_precision'])); - } - break; - - default: - $salida = remove_right_zeros(number_format($module['datos'], $config['graph_precision'])); - break; - } - break; - } - } else { - switch ($module['id_tipo_modulo']) { - case 15: - $value = db_get_value('snmp_oid', 'tagente_modulo', 'id_agente_modulo', $module['id_agente_modulo']); - if ($value == '.1.3.6.1.2.1.1.3.0' || $value == '.1.3.6.1.2.1.25.1.1.0') { - if ($module['post_process'] > 0) { - $salida = human_milliseconds_to_string(($module['datos'] / $module['post_process'])); - } else { - $salida = human_milliseconds_to_string($module['datos']); - } - } else { - $salida = remove_right_zeros(number_format($module['datos'], $config['graph_precision'])); - } - break; - - default: - $salida = remove_right_zeros(number_format($module['datos'], $config['graph_precision'])); - break; - } - } - - // Show units ONLY in numeric data types - if (isset($module['unit'])) { - $data_macro = modules_get_unit_macro($module['datos'], $module['unit']); - if ($data_macro) { - $salida = $data_macro; - } else { - $salida .= ' '.io_safe_output($module['unit']).''; - } - } - } else { - $data_macro = modules_get_unit_macro($module['datos'], $module['unit']); - if ($data_macro) { - $salida = $data_macro; - } else { - $salida = ui_print_module_string_value( - $module['datos'], - $module['id_agente_modulo'], - $module['current_interval'], - $module['module_name'] - ); - } - } + $salida = modules_get_agentmodule_data_for_humans($module); if ($module['id_tipo_modulo'] != 25) { $data[6] = ui_print_module_warn_value($module['max_warning'], $module['min_warning'], $module['str_warning'], $module['max_critical'], $module['min_critical'], $module['str_critical'], $module['warning_inverse'], $module['critical_inverse']); diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index fdc9d8683e..d9413521bb 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -557,7 +557,7 @@ class Tree $module['id_module_type'] = (int) $module['id_tipo_modulo']; $module['server_type'] = (int) $module['id_modulo']; $module['status'] = $module['estado']; - $module['value'] = $module['datos']; + $module['value'] = modules_get_agentmodule_data_for_humans($module); if (is_metaconsole()) { $module['serverID'] = $this->serverID; @@ -738,12 +738,10 @@ class Tree $agent['counters']['warning'], $agent['counters']['unknown'], $agent['counters']['total'], - $agent['counters']['not_init'] + $agent['counters']['not_init'], + $agent['counters']['alerts'] ); - // Alerts fired image - $agent['alertImageHTML'] = agents_tree_view_alert_img_ball($agent['counters']['alerts']); - // search module recalculate counters if (array_key_exists('state_normal', $agent)) { $agent['counters']['unknown'] = $agent['state_unknown']; diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 3bb01ba0c3..fdb12fac59 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -2642,12 +2642,28 @@ function agents_tree_view_status_img($critical, $warning, $unknown, $total, $not // Returns the status ball image to display tree view -function agents_tree_view_status_img_ball($critical, $warning, $unknown, $total, $notinit) +function agents_tree_view_status_img_ball($critical, $warning, $unknown, $total, $notinit, $alerts) { if ($total == 0 || $total == $notinit) { return ui_print_status_image( STATUS_AGENT_NO_MONITORS_BALL, __('No Monitors'), + true, + false, + false, + // Use CSS shape instead of image. + true + ); + } + + if ($alerts > 0) { + return ui_print_status_image( + STATUS_ALERT_FIRED_BALL, + __('Alert fired on agent'), + true, + false, + false, + // Use CSS shape instead of image. true ); } @@ -2656,24 +2672,40 @@ function agents_tree_view_status_img_ball($critical, $warning, $unknown, $total, return ui_print_status_image( STATUS_AGENT_CRITICAL_BALL, __('At least one module in CRITICAL status'), + true, + false, + false, + // Use CSS shape instead of image. true ); } else if ($warning > 0) { return ui_print_status_image( STATUS_AGENT_WARNING_BALL, __('At least one module in WARNING status'), + true, + false, + false, + // Use CSS shape instead of image. true ); } else if ($unknown > 0) { return ui_print_status_image( STATUS_AGENT_DOWN_BALL, __('At least one module is in UKNOWN status'), + true, + false, + false, + // Use CSS shape instead of image. true ); } else { return ui_print_status_image( STATUS_AGENT_OK_BALL, __('All Monitors OK'), + true, + false, + false, + // Use CSS shape instead of image. true ); } diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 668250b86c..4acbeb85dc 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -2271,6 +2271,102 @@ function modules_get_agentmodule_data( } +/** + * Return module data in readable format. + * + * @param array $module Current module. + * + * @return void + */ +function modules_get_agentmodule_data_for_humans($module) +{ + global $config; + + if (is_numeric($module['datos']) && !modules_is_string_type($module['id_tipo_modulo'])) { + if ($config['render_proc']) { + switch ($module['id_tipo_modulo']) { + case 2: + case 6: + case 9: + case 18: + case 21: + case 31: + if ($module['datos'] >= 1) { + $salida = $config['render_proc_ok']; + } else { + $salida = $config['render_proc_fail']; + } + break; + + default: + switch ($module['id_tipo_modulo']) { + case 15: + $value = db_get_value('snmp_oid', 'tagente_modulo', 'id_agente_modulo', $module['id_agente_modulo']); + if ($value == '.1.3.6.1.2.1.1.3.0' || $value == '.1.3.6.1.2.1.25.1.1.0') { + if ($module['post_process'] > 0) { + $salida = human_milliseconds_to_string(($module['datos'] / $module['post_process'])); + } else { + $salida = human_milliseconds_to_string($module['datos']); + } + } else { + $salida = remove_right_zeros(number_format($module['datos'], $config['graph_precision'])); + } + break; + + default: + $salida = remove_right_zeros(number_format($module['datos'], $config['graph_precision'])); + break; + } + break; + } + } else { + switch ($module['id_tipo_modulo']) { + case 15: + $value = db_get_value('snmp_oid', 'tagente_modulo', 'id_agente_modulo', $module['id_agente_modulo']); + if ($value == '.1.3.6.1.2.1.1.3.0' || $value == '.1.3.6.1.2.1.25.1.1.0') { + if ($module['post_process'] > 0) { + $salida = human_milliseconds_to_string(($module['datos'] / $module['post_process'])); + } else { + $salida = human_milliseconds_to_string($module['datos']); + } + } else { + $salida = remove_right_zeros(number_format($module['datos'], $config['graph_precision'])); + } + break; + + default: + $salida = remove_right_zeros(number_format($module['datos'], $config['graph_precision'])); + break; + } + } + + // Show units ONLY in numeric data types + if (isset($module['unit'])) { + $data_macro = modules_get_unit_macro($module['datos'], $module['unit']); + if ($data_macro) { + $salida = $data_macro; + } else { + $salida .= ' '.io_safe_output($module['unit']).''; + } + } + } else { + $data_macro = modules_get_unit_macro($module['datos'], $module['unit']); + if ($data_macro) { + $salida = $data_macro; + } else { + $salida = ui_print_module_string_value( + $module['datos'], + $module['id_agente_modulo'], + $module['current_interval'], + $module['module_name'] + ); + } + } + + return $salida; +} + + /** * This function gets the modulegroup for a given group * diff --git a/pandora_console/include/javascript/tree/TreeController.js b/pandora_console/include/javascript/tree/TreeController.js index fc10404190..63fdb5e37b 100644 --- a/pandora_console/include/javascript/tree/TreeController.js +++ b/pandora_console/include/javascript/tree/TreeController.js @@ -1,5 +1,3 @@ -/* eslint-disable */ - // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2010 Artica Soluciones Tecnologicas @@ -549,6 +547,7 @@ var TreeController = { break; case "agent": // Is quiet + if ( typeof element.quietImageHTML != "undefined" && element.quietImageHTML.length > 0 @@ -568,16 +567,6 @@ var TreeController = { $content.append($statusImage); } - // Alerts fired image - if ( - typeof element.alertImageHTML != "undefined" && - element.alertImageHTML.length > 0 - ) { - var $alertImage = $(element.alertImageHTML); - $alertImage.addClass("agent-alerts-fired"); - - $content.append($alertImage); - } // Events by agent if (element.showEventsBtn == 1) { @@ -698,6 +687,8 @@ var TreeController = { $content.append(" " + element.name); break; case "module": + $content.addClass("module"); + // Status image if ( typeof element.statusImageHTML != "undefined" && @@ -708,17 +699,19 @@ var TreeController = { $content.append($statusImage); } - // Server type - if ( - typeof element.serverTypeHTML != "undefined" && - element.serverTypeHTML.length > 0 && - element.serverTypeHTML != "--" - ) { - var $serverTypeImage = $(element.serverTypeHTML); - $serverTypeImage.addClass("module-server-type"); - $content.append($serverTypeImage); - } + // Name max 42 chars. + $content.append( + '' + + element.name.substring(0, 42) + + (element.name.length > 42 ? "..." : "") + + "" + ); + + // Value. + $content.append( + '' + element.value + "" + ); if ( typeof element.showGraphs != "undefined" && @@ -840,7 +833,6 @@ var TreeController = { $content.append($alertsImage); } - $content.append(element.name); break; case "os": if ( diff --git a/pandora_console/include/styles/tree.css b/pandora_console/include/styles/tree.css index 1113a2beb9..a2904be6f2 100644 --- a/pandora_console/include/styles/tree.css +++ b/pandora_console/include/styles/tree.css @@ -118,6 +118,30 @@ div.tree-node span { padding-right: 3px; } +.tree-node > .node-content > .agent-status.status_balls, +.tree-node > .node-content > .status_small_balls { + width: 0.6em; + height: 1.5em; + margin-bottom: -0.4em; + border-radius: 0; +} +.tree-node > .node-content > .module-status.status_small_balls { + width: 0.4em; +} + +.tree-node > .node-content > .module-name { + margin: 0 1em; + width: 420px; + display: inline-block; +} + +.tree-node > .node-content > .module-value { + width: 120px; + display: inline-block; + text-align: right; + margin: 0 1em; +} + .tree-node > .node-content > img.module-server-type, .tree-node > .node-content > img.agent-status, .tree-node > .node-content > img.agent-alerts-fired, @@ -133,7 +157,7 @@ div.tree-node span { } .tree-node > .node-content > .tree-node-counters { - font-size: 1em; + font-size: 1.2em; } .tree-node > .node-content > img { @@ -142,7 +166,7 @@ div.tree-node span { .tree-node > .node-content > .tree-node-counters > .tree-node-counter { font-weight: bold; - font-size: 1.2em; + font-size: 0.9em; cursor: default; } From bc3e21af6d337eb0d552bd36df99f0845f98200b Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 7 May 2020 01:00:17 +0200 Subject: [PATCH 080/110] 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 be39ceaf9c..d26c7aac0e 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200506 +Version: 7.0NG.745-200507 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 c6d22f35bb..d52d4f9d80 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.745-200506" +pandora_version="7.0NG.745-200507" 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 b3dc510f7c..c24f0d8c89 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200506'; +use constant AGENT_BUILD => '200507'; # 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 bf6f103e05..8133cff8fd 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_unix %define version 7.0NG.745 -%define release 200506 +%define release 200507 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 e637dc9669..1c81d36e26 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200506 +%define release 200507 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 3e59487daa..af00275022 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200506" +PI_BUILD="200507" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 65fb253df7..69757acc5f 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200506} +{200507} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 20ba9d7de0..7f410adb65 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.745(Build 200506)") +#define PANDORA_VERSION ("7.0NG.745(Build 200507)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 23ad892f8c..c3a8f626d0 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.745(Build 200506))" + VALUE "ProductVersion", "(7.0NG.745(Build 200507))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index f62c42cc03..0c198f67cc 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200506 +Version: 7.0NG.745-200507 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 23943bc640..d09c4200e8 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.745-200506" +pandora_version="7.0NG.745-200507" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 3a294c0947..74a36d87bb 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 = 'PC200506'; +$build_version = 'PC200507'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index d1f661be18..fd8363b3fe 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 8159f33776..bc86183433 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.745 -%define release 200506 +%define release 200507 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 4a8ded5f91..b9de1f7baf 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.745 -%define release 200506 +%define release 200507 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c6ca31c4de..efa717eef0 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200506" +PI_BUILD="200507" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index d30fbf76fc..4bee164f92 100644 --- 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.745 PS200506"; +my $version = "7.0NG.745 PS200507"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 0c97b1eb17..153c9bb793 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.745 PS200506"; +my $version = "7.0NG.745 PS200507"; # save program name for logging my $progname = basename($0); From 3684bf8ea202dadeb8a14e74db295782540e0ecb Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Thu, 7 May 2020 09:36:14 +0200 Subject: [PATCH 081/110] Minor changes tree style --- pandora_console/include/styles/tree.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/styles/tree.css b/pandora_console/include/styles/tree.css index a2904be6f2..1a479ac3cf 100644 --- a/pandora_console/include/styles/tree.css +++ b/pandora_console/include/styles/tree.css @@ -130,8 +130,8 @@ div.tree-node span { } .tree-node > .node-content > .module-name { - margin: 0 1em; - width: 420px; + margin: 0 0 0 1em; + width: 250px; display: inline-block; } From a8469413ac06ae008b01432bae1a1e56d859ff1f Mon Sep 17 00:00:00 2001 From: alejandro-campos Date: Thu, 7 May 2020 17:56:29 +0200 Subject: [PATCH 082/110] adaptation to centos new version: new data MemAvailable introduced --- pandora_agents/unix/plugins/pandora_mem | 9 ++++++++- pandora_agents/unix/plugins/pandora_mem_used | 8 +++++++- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/pandora_agents/unix/plugins/pandora_mem b/pandora_agents/unix/plugins/pandora_mem index 998438d5b6..43883744d8 100755 --- a/pandora_agents/unix/plugins/pandora_mem +++ b/pandora_agents/unix/plugins/pandora_mem @@ -33,9 +33,16 @@ my $freemem=`cat /proc/meminfo | grep 'MemFree' | awk '{ print \$2 } '`; my $cached=`cat /proc/meminfo | grep '^Cached:' | awk '{ print \$2 } '`; my $cachedswap=`cat /proc/meminfo | grep '^SwapCached:' | awk '{ print \$2 }'`; my $total_meminfo=`cat /proc/meminfo | grep 'MemTotal:' | awk '{ print \$2 }'`; -my $available=$freemem+$cached+$cachedswap; +my $available_new=`cat /proc/meminfo | grep 'MemAvailable:' | awk '{ print \$2 }'`; +my $available; +if ($available_new == 0){ + $available=$freemem+$cached+$cachedswap; +}else{ + $available=$available_new; +} my $available_percent = floor(($available / $total_meminfo)*100); +my $USED = 100 - $available_percent; print "\n"; print "\n"; diff --git a/pandora_agents/unix/plugins/pandora_mem_used b/pandora_agents/unix/plugins/pandora_mem_used index 3ba2034d80..4bca3f3c2f 100755 --- a/pandora_agents/unix/plugins/pandora_mem_used +++ b/pandora_agents/unix/plugins/pandora_mem_used @@ -23,7 +23,13 @@ my $freemem=`cat /proc/meminfo | grep 'MemFree' | awk '{ print \$2 } '`; my $cached=`cat /proc/meminfo | grep '^Cached:' | awk '{ print \$2 } '`; my $cachedswap=`cat /proc/meminfo | grep '^SwapCached:' | awk '{ print \$2 }'`; my $total_meminfo=`cat /proc/meminfo | grep 'MemTotal:' | awk '{ print \$2 }'`; -my $available=$freemem+$cached+$cachedswap; +my $available_new=`cat /proc/meminfo | grep 'MemAvailable:' | awk '{ print \$2 }'`; +my $available; +if ($available_new == 0){ + $available=$freemem+$cached+$cachedswap; +}else{ + $available=$available_new; +} my $available_percent = floor(($available / $total_meminfo)*100); my $USED = 100 - $available_percent; From 36d15f3de54a7c3452dd326e16c8131115853450 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 8 May 2020 01:00:18 +0200 Subject: [PATCH 083/110] 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 d26c7aac0e..1fe5b78aff 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200507 +Version: 7.0NG.745-200508 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 d52d4f9d80..8600199c52 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.745-200507" +pandora_version="7.0NG.745-200508" 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 c24f0d8c89..aff64ab8e1 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200507'; +use constant AGENT_BUILD => '200508'; # 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 8133cff8fd..9ad0eed6b2 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_unix %define version 7.0NG.745 -%define release 200507 +%define release 200508 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 1c81d36e26..f439a44a23 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200507 +%define release 200508 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 af00275022..d209d01ebe 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200507" +PI_BUILD="200508" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 69757acc5f..1282229873 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200507} +{200508} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 7f410adb65..454fea6259 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.745(Build 200507)") +#define PANDORA_VERSION ("7.0NG.745(Build 200508)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index c3a8f626d0..f640ecc9a8 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.745(Build 200507))" + VALUE "ProductVersion", "(7.0NG.745(Build 200508))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 0c198f67cc..654aaa7f19 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200507 +Version: 7.0NG.745-200508 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 d09c4200e8..40c2e9b7f4 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.745-200507" +pandora_version="7.0NG.745-200508" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 74a36d87bb..cf5c92bbf0 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 = 'PC200507'; +$build_version = 'PC200508'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index fd8363b3fe..1984f13557 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index bc86183433..a1549f7f19 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.745 -%define release 200507 +%define release 200508 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index b9de1f7baf..cf9ec92b17 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.745 -%define release 200507 +%define release 200508 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index efa717eef0..e387af92b9 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200507" +PI_BUILD="200508" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 4bee164f92..15d97080d4 100644 --- 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.745 PS200507"; +my $version = "7.0NG.745 PS200508"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 153c9bb793..380984687f 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.745 PS200507"; +my $version = "7.0NG.745 PS200508"; # save program name for logging my $progname = basename($0); From 72e32ab5de435796f25fda6b39095ee10ac7452c Mon Sep 17 00:00:00 2001 From: marcos Date: Fri, 8 May 2020 11:32:44 +0200 Subject: [PATCH 084/110] add close option in toast --- pandora_console/general/header.php | 45 ++++++++++++++++++++++++------ 1 file changed, 36 insertions(+), 9 deletions(-) diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index b443926a63..958f3dbe79 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -530,15 +530,34 @@ if ($config['menu_type'] == 'classic') { }); } - function print_toast(title, subtitle, severity, url, id, onclick) { + function closeToast(event) { + var match = /notification-(.*)-id-([0-9]+)/.exec(event.target.id); + var div_id = document.getElementById(match.input); + $(div_id).attr("hidden",true); + } + + function print_toast(title, subtitle, severity, url, id, onclick, closeToast) { // TODO severity. severity = ''; - // Start the toast. + + var parent_div = document.createElement('div'); + + // Print close image + var img = document.createElement('img'); + img.setAttribute('id', id); + img.setAttribute("src", './images/close_button_dialog.png'); + img.setAttribute('onclick', closeToast); + img.setAttribute('style', 'margin-left: 95%;'); + parent_div.appendChild(img); + + // Print a element var toast = document.createElement('a'); - toast.setAttribute('onclick', onclick); - toast.setAttribute('href', url); toast.setAttribute('target', '_blank'); + toast.setAttribute('href', url); + toast.setAttribute('onclick', onclick); + + var link_div = document.createElement('div'); // Fill toast. var toast_div = document.createElement('div'); @@ -548,9 +567,13 @@ if ($config['menu_type'] == 'classic') { var toast_text = document.createElement('p'); toast_title.innerHTML = title; toast_text.innerHTML = subtitle; - toast_div.appendChild(toast_title); + + // Append Elements + toast_div.appendChild(img); + link_div.appendChild(toast_title); + toast.appendChild(link_div); + toast_div.appendChild(toast); toast_div.appendChild(toast_text); - toast.appendChild(toast_div); // Show and program the hide event. toast_div.className = toast_div.className + ' show'; @@ -558,9 +581,11 @@ if ($config['menu_type'] == 'classic') { toast_div.className = toast_div.className.replace("show", ""); }, 8000); - return toast; - } + toast_div.appendChild(parent_div); + return toast_div; + } + function check_new_notifications() { var last_id = document.getElementById('notification-ball-header') .getAttribute('last_id'); @@ -617,9 +642,11 @@ if ($config['menu_type'] == 'classic') { ele.criticity, ele.full_url, 'notification-toast-id-' + ele.id_mensaje, - 'click_on_notification_toast(event)' + 'click_on_notification_toast(event)', + 'closeToast(event)' ) ); + }); } }, From 1f16abd4bdb85daba1f2e9f4340769590b0b4528 Mon Sep 17 00:00:00 2001 From: Tatiana Llorente Date: Fri, 8 May 2020 15:39:24 +0200 Subject: [PATCH 085/110] Ent 5701 quitar feature de chat --- .../extras/delete_files/delete_files.txt | 7 +- pandora_console/general/header.php | 15 +- pandora_console/godmode/users/user_list.php | 2 - pandora_console/include/functions_ui.php | 2 - pandora_console/include/functions_users.php | 594 ------------------ pandora_console/include/javascript/webchat.js | 47 -- pandora_console/index.php | 51 -- pandora_console/operation/menu.php | 6 - pandora_console/operation/users/webchat.php | 345 ---------- 9 files changed, 8 insertions(+), 1061 deletions(-) delete mode 100644 pandora_console/include/javascript/webchat.js delete mode 100644 pandora_console/operation/users/webchat.php diff --git a/pandora_console/extras/delete_files/delete_files.txt b/pandora_console/extras/delete_files/delete_files.txt index c0d8f0a9db..b18abb678d 100644 --- a/pandora_console/extras/delete_files/delete_files.txt +++ b/pandora_console/extras/delete_files/delete_files.txt @@ -1 +1,6 @@ -operation/servers/recon_view.php \ No newline at end of file +operation/servers/recon_view.php +operation/users/webchat.php +include/javascript/webchat.js +attachment/pandora_chat.log.json.txt +attachment/pandora_chat.user_list.json.txt +attachment/pandora_chat.global_counter.txt \ No newline at end of file diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index b443926a63..8aa11ea4d9 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -81,13 +81,6 @@ if ($config['menu_type'] == 'classic') { } - // Chat messages. - $header_chat = "'; - - // Search. $acl_head_search = true; if ($config['acl_enterprise'] == 1 && !users_is_admin()) { @@ -417,7 +410,7 @@ if ($config['menu_type'] == 'classic') { echo '
    '.$config['custom_title_header'].''.$config['custom_subtitle_header'].'
    '.$header_searchbar.'
    -
    '.$header_chat, $header_autorefresh, $header_autorefresh_counter, $header_discovery, $servers_list, $header_feedback, $header_support, $header_docu, $header_user, $header_logout.'
    '; +
    '.$header_autorefresh, $header_autorefresh_counter, $header_discovery, $servers_list, $header_feedback, $header_support, $header_docu, $header_user, $header_logout.'
    '; ?>
    @@ -640,8 +633,6 @@ if ($config['menu_type'] == 'classic') { var fixed_header = ; - var new_chat = ; - function showinterpreter(){ document.onclick = function(e) { @@ -789,9 +780,7 @@ if ($config['menu_type'] == 'classic') { $('div#head').addClass('fixed_header'); $('div#main').css('padding-top', $('div#head').innerHeight() + 'px'); } - - check_new_chats_icon('icon_new_messages_chat'); - + /* Temporal fix to hide graphics when ui_dialog are displayed */ $("#yougotalert").click(function () { $("#agent_access").css("display", "none"); diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index d106f5010a..8fb461a355 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -160,8 +160,6 @@ if (isset($_GET['user_del'])) { $result = delete_user($id_user); if ($result) { - users_save_logout($user_row, true); - db_pandora_audit( 'User management', __('Deleted user %s', io_safe_input($id_user)) diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 0ce95daf78..5926766685 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -1908,8 +1908,6 @@ function ui_process_page_head($string, $bitfield) ); // Load base64 javascript library. $config['js']['base64'] = 'include/javascript/encode_decode_base64.js'; - // Load webchat javascript library. - $config['js']['webchat'] = 'include/javascript/webchat.js'; // Load qrcode library. $config['js']['qrcode'] = 'include/javascript/qrcode.js'; // Load intro.js library (for bubbles and clippy). diff --git a/pandora_console/include/functions_users.php b/pandora_console/include/functions_users.php index 86e4475eea..af0616a610 100755 --- a/pandora_console/include/functions_users.php +++ b/pandora_console/include/functions_users.php @@ -497,508 +497,6 @@ function users_get_user_by_id($id_user) } -define('MAX_TIMES', 10); - -// -// WEBCHAT FUNCTIONS///////////////////////////////// -// -function users_get_last_messages($last_time=false) -{ - $file_global_counter_chat = $config['attachment_store'].'/pandora_chat.global_counter.txt'; - - // First lock the file - $fp_global_counter = @fopen($file_global_counter_chat, 'a+'); - if ($fp_global_counter === false) { - echo json_encode($return); - - return; - } - - // Try to look MAX_TIMES times - $tries = 0; - while (!flock($fp_global_counter, LOCK_EX)) { - $tries++; - if ($tries > MAX_TIMES) { - echo json_encode($return); - - return; - } - - sleep(1); - } - - fscanf($fp_global_counter, '%d', $global_counter_file); - if (empty($global_counter_file)) { - $global_counter_file = 0; - } - - $timestamp = time(); - if ($last_time === false) { - $last_time = (24 * 60 * 60); - } - - $from = ($timestamp - $last_time); - - $log_chat_file = $config['attachment_store'].'/pandora_chat.log.json.txt'; - - $return = [ - 'correct' => false, - 'log' => [], - ]; - - if (!file_exists($log_chat_file)) { - touch($log_chat_file); - } - - $text_encode = @file_get_contents($log_chat_file); - $log = json_decode($text_encode, true); - - if ($log !== false) { - if ($log === null) { - $log = []; - } - - $log_last_time = []; - foreach ($log as $message) { - if ($message['timestamp'] >= $from) { - $log_last_time[] = $message; - } - } - - $return['correct'] = true; - $return['log'] = $log_last_time; - $return['global_counter'] = $global_counter_file; - } - - echo json_encode($return); - - fclose($fp_global_counter); - - return; -} - - -function users_save_login() -{ - global $config; - - $file_global_user_list = $config['attachment_store'].'/pandora_chat.user_list.json.txt'; - - $user = db_get_row_filter( - 'tusuario', - ['id_user' => $config['id_user']] - ); - - $message = sprintf( - __('User %s login at %s'), - $user['fullname'], - date($config['date_format']) - ); - users_save_text_message($message, 'notification'); - - // First lock the file - $fp_user_list = @fopen($file_global_user_list, 'a+'); - if ($fp_user_list === false) { - return; - } - - // Try to look MAX_TIMES times - $tries = 0; - while (!flock($fp_user_list, LOCK_EX)) { - $tries++; - if ($tries > MAX_TIMES) { - return; - } - - sleep(1); - } - - @fscanf($fp_user_list, "%[^\n]", $user_list_json); - - $user_list = json_decode($user_list_json, true); - if (empty($user_list)) { - $user_list[$config['id_user']] = [ - 'name' => $user['fullname'], - 'count' => 1, - ]; - } else if (isset($user_list[$config['id_user']])) { - $user_list[$config['id_user']] = [ - 'name' => $user['fullname'], - 'count' => $user_list[$config['id_user']]['count'], - ]; - } else { - $users_count = count($user_list); - $user_list[$config['id_user']] = [ - 'name' => $user['fullname'], - 'count' => ++$users_count, - ]; - } - - // Clean the file - ftruncate($fp_user_list, 0); - - $status = fwrite($fp_user_list, json_encode($user_list)); - - if ($status === false) { - fclose($fp_user_list); - - return; - } - - fclose($fp_user_list); -} - - -function users_save_logout($user=false, $delete=false) -{ - global $config; - - $return = [ - 'correct' => false, - 'users' => [], - ]; - - $file_global_user_list = $config['attachment_store'].'/pandora_chat.user_list.json.txt'; - - if (empty($user)) { - $user = db_get_row_filter( - 'tusuario', - ['id_user' => $config['id_user']] - ); - } - - if ($delete) { - $no_json_output = true; - $message = sprintf( - __('User %s was deleted in the DB at %s'), - $user['fullname'], - date($config['date_format']) - ); - } else { - $no_json_output = false; - $message = sprintf( - __('User %s logout at %s'), - $user['fullname'], - date($config['date_format']) - ); - } - - users_save_text_message($message, 'notification', $no_json_output); - - // First lock the file - $fp_user_list = @fopen($file_global_user_list, 'a+'); - if ($fp_user_list === false) { - return; - } - - // Try to look MAX_TIMES times - $tries = 0; - while (!flock($fp_user_list, LOCK_EX)) { - $tries++; - if ($tries > MAX_TIMES) { - return; - } - - sleep(1); - } - - @fscanf($fp_user_list, "%[^\n]", $user_list_json); - - $user_list = json_decode($user_list_json, true); - if (empty($user_list)) { - $user_list = []; - } - - unset($user_list[$user['id_user']]); - - // Clean the file - ftruncate($fp_user_list, 0); - - $status = fwrite($fp_user_list, json_encode($user_list)); - - if ($status === false) { - fclose($fp_user_list); - - return; - } - - fclose($fp_user_list); -} - - -function users_save_text_message($message=false, $type='message', $no_json_output=false) -{ - global $config; - - $file_global_counter_chat = $config['attachment_store'].'/pandora_chat.global_counter.txt'; - $log_chat_file = $config['attachment_store'].'/pandora_chat.log.json.txt'; - - $return = ['correct' => false]; - - $id_user = $config['id_user']; - $user = db_get_row_filter( - 'tusuario', - ['id_user' => $id_user] - ); - - $message_data = []; - $message_data['type'] = $type; - $message_data['id_user'] = $id_user; - $message_data['user_name'] = $user['fullname']; - $message_data['text'] = io_safe_input_html($message); - // The $message_data['timestamp'] set when adquire the files to save. - // First lock the file - $fp_global_counter = @fopen($file_global_counter_chat, 'a+'); - if ($fp_global_counter === false) { - if (!$no_json_output) { - echo json_encode($return); - } - - return; - } - - // Try to look MAX_TIMES times - $tries = 0; - while (!flock($fp_global_counter, LOCK_EX)) { - $tries++; - if ($tries > MAX_TIMES) { - if (!$no_json_output) { - echo json_encode($return); - } - - return; - } - - sleep(1); - } - - @fscanf($fp_global_counter, '%d', $global_counter_file); - if (empty($global_counter_file)) { - $global_counter_file = 0; - } - - // Clean the file - ftruncate($fp_global_counter, 0); - - $message_data['timestamp'] = time(); - $message_data['human_time'] = date($config['date_format'], $message_data['timestamp']); - - $global_counter = ($global_counter_file + 1); - - $status = fwrite($fp_global_counter, $global_counter); - - if ($status === false) { - fclose($fp_global_counter); - - if (!$no_json_output) { - echo json_encode($return); - } - - return; - } else { - $text_encode = @file_get_contents($log_chat_file); - $log = json_decode($text_encode, true); - $log[$global_counter] = $message_data; - $status = file_put_contents($log_chat_file, json_encode($log)); - - fclose($fp_global_counter); - - $return['correct'] = true; - if (!$no_json_output) { - echo json_encode($return); - } - } - - return; -} - - -function users_long_polling_check_messages($global_counter) -{ - global $config; - - $file_global_counter_chat = $config['attachment_store'].'/pandora_chat.global_counter.txt'; - $log_chat_file = $config['attachment_store'].'/pandora_chat.log.json.txt'; - - $changes = false; - - $tries_general = 0; - - $error = false; - - while (!$changes) { - // First lock the file - $fp_global_counter = @fopen($file_global_counter_chat, 'a+'); - if ($fp_global_counter) { - // Try to look MAX_TIMES times - $tries = 0; - $lock = true; - while (!flock($fp_global_counter, LOCK_EX)) { - $tries++; - if ($tries > MAX_TIMES) { - $lock = false; - $error = true; - break; - } - - sleep(1); - } - - if ($lock) { - @fscanf($fp_global_counter, '%d', $global_counter_file); - if (empty($global_counter_file)) { - $global_counter_file = 0; - } - - if ($global_counter_file > $global_counter) { - // TODO Optimize slice the array. - $text_encode = @file_get_contents($log_chat_file); - $log = json_decode($text_encode, true); - - $return_log = []; - foreach ($log as $key => $message) { - if ($key <= $global_counter) { - continue; - } - - $return_log[] = $message; - } - - $return = [ - 'correct' => true, - 'global_counter' => $global_counter_file, - 'log' => $return_log, - ]; - - echo json_encode($return); - - fclose($fp_global_counter); - - return; - } - } - - fclose($fp_global_counter); - } - - sleep(3); - $tries_general = ($tries_general + 3); - - if ($tries_general > MAX_TIMES) { - break; - } - } - - // Because maybe the exit of loop for exaust. - echo json_encode(['correct' => false, 'error' => $error]); - - return; -} - - -/** - * Get the last global counter for chat. - * - * @param string $mode There are two modes 'json', 'return' and 'session'. And json is by default. - */ -function users_get_last_global_counter($mode='json') -{ - global $config; - - $file_global_counter_chat = $config['attachment_store'].'/pandora_chat.global_counter.txt'; - - $global_counter_file = 0; - - $fp_global_counter = @fopen($file_global_counter_chat, 'a+'); - if ($fp_global_counter) { - $tries = 0; - $lock = true; - while (!flock($fp_global_counter, LOCK_EX)) { - $tries++; - if ($tries > MAX_TIMES) { - $lock = false; - break; - } - - sleep(1); - } - - if ($lock) { - @fscanf($fp_global_counter, '%d', $global_counter_file); - if (empty($global_counter_file)) { - $global_counter_file = 0; - } - - fclose($fp_global_counter); - } - } - - switch ($mode) { - case 'json': - echo json_encode(['correct' => true, 'global_counter' => $global_counter_file]); - break; - - case 'return': - return $global_counter_file; - - break; - case 'session': - $_SESSION['global_counter_chat'] = $global_counter_file; - break; - } -} - - -/** - * Get the last global counter for chat. - * - * @param string $mode There are two modes 'json', 'return' and 'session'. And json is by default. - */ -function users_get_last_type_message() -{ - global $config; - - $return = 'false'; - - $file_global_counter_chat = $config['attachment_store'].'/pandora_chat.global_counter.txt'; - $log_chat_file = $config['attachment_store'].'/pandora_chat.log.json.txt'; - - $global_counter_file = 0; - - $fp_global_counter = @fopen($file_global_counter_chat, 'a+'); - if ($fp_global_counter) { - $tries = 0; - $lock = true; - while (!flock($fp_global_counter, LOCK_EX)) { - $tries++; - if ($tries > MAX_TIMES) { - $lock = false; - break; - } - - sleep(1); - } - - if ($lock) { - $text_encode = @file_get_contents($log_chat_file); - $log = json_decode($text_encode, true); - - // Prevent from error when chat file log doesn't exists - if (empty($log)) { - $return = false; - } else { - $last = end($log); - $return = $last['type']; - } - - fclose($fp_global_counter); - } - } - - return $return; -} - - function users_is_admin($id_user=false) { global $config; @@ -1026,98 +524,6 @@ function users_is_admin($id_user=false) } -function users_is_last_system_message() -{ - $type = users_get_last_type_message(); - - if ($type != 'message') { - return true; - } else { - return false; - } -} - - -function users_check_users() -{ - global $config; - - $return = [ - 'correct' => false, - 'users' => '', - ]; - - $users_with_session = db_get_all_rows_sql('SELECT tsessions_php.data FROM pandora.tsessions_php;'); - $users_logged_now = []; - foreach ($users_with_session as $user_with_session) { - $tmp_id_user = explode('"', $user_with_session['data']); - array_push($users_logged_now, $tmp_id_user[1]); - } - - $file_global_user_list = $config['attachment_store'].'/pandora_chat.user_list.json.txt'; - - // First lock the file - $fp_user_list = @fopen($file_global_user_list, 'a+'); - if ($fp_user_list === false) { - echo json_encode($return); - - return; - } - - // Try to look MAX_TIMES times - $tries = 0; - while (!flock($fp_user_list, LOCK_EX)) { - $tries++; - if ($tries > MAX_TIMES) { - echo json_encode($return); - - return; - } - - sleep(1); - } - - @fscanf($fp_user_list, "%[^\n]", $user_list_json); - - $user_list = json_decode($user_list_json, true); - if (empty($user_list)) { - $user_list = []; - } - - // Compare both user list. Meanwhile the user from chat file have an active - // session, his continue in the list of active chat users - $user_name_list = []; - foreach ($user_list as $key => $user) { - if (in_array($key, $users_logged_now)) { - array_push($user_name_list, $user['name']); - } else { - unset($user_list[$key]); - } - } - - // Clean the file - ftruncate($fp_user_list, 0); - - // Update the file with the correct list of users - $status = fwrite($fp_user_list, json_encode($user_list)); - - /* - if ($status === false) { - fclose($fp_user_list); - - return; - } */ - // Closing the resource - fclose($fp_user_list); - - $return['correct'] = true; - $return['users'] = implode('
    ', $user_name_list); - echo json_encode($return); - - return; -} - - // Check if a user can manage a group when group is all // This function dont check acls of the group, only if the // user is admin or pandora manager and the group is all diff --git a/pandora_console/include/javascript/webchat.js b/pandora_console/include/javascript/webchat.js deleted file mode 100644 index 09c7ae81df..0000000000 --- a/pandora_console/include/javascript/webchat.js +++ /dev/null @@ -1,47 +0,0 @@ -function check_new_chats_icon(id_icon) { - if (new_chat) { - $("#" + id_icon).pulsate(); - } -} - -function check_new_chats_icon_ajax(id_icon) { - var exit = false; - - url_chunks = location.href.split("&"); - $.each(url_chunks, function(key, chunk) { - if (chunk == "sec2=operation/users/webchat") exit = true; - return; - }); - - if (exit) { - return; - } - - old = global_counter_chat; - get_last_global_counter(); - - if (old < global_counter_chat) { - $("#" + id_icon).pulsate(); - } - - setTimeout('check_new_chats_icon("' + id_icon + '")', 5000); -} - -function get_last_global_counter() { - var parameters = {}; - parameters["page"] = "operation/users/webchat"; - parameters["get_last_global_counter"] = 1; - - $.ajax({ - type: "POST", - url: "ajax.php", - data: parameters, - dataType: "json", - async: false, - success: function(data) { - if (data["correct"] == 1) { - global_counter_chat = data["global_counter"]; - } - } - }); -} diff --git a/pandora_console/index.php b/pandora_console/index.php index cc79382b82..4d643de5ae 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1002,60 +1002,9 @@ if ($process_login) { } } - // Set the initial global counter for chat. - users_get_last_global_counter('session'); - $config['logged'] = true; } -// ---------------------------------------------------------------------- -// Get old parameters before navigation. -$old_sec = ''; -$old_sec2 = ''; -$old_page = ''; -if (isset($_SERVER['HTTP_REFERER'])) { - $old_page = $_SERVER['HTTP_REFERER']; -} - -$chunks = explode('?', $old_page); -if (count($chunks) == 2) { - $chunks = explode('&', $chunks[1]); - - foreach ($chunks as $chunk) { - if (strstr($chunk, 'sec=') !== false) { - $old_sec = str_replace('sec=', '', $chunk); - } - - if (strstr($chunk, 'sec2=') !== false) { - $old_sec = str_replace('sec2=', '', $chunk); - } - } -} - -$_SESSION['new_chat'] = false; -if ($old_sec2 == 'operation/users/webchat') { - users_get_last_global_counter('session'); -} - -if ($page == 'operation/users/webchat') { - // Reload the global counter. - users_get_last_global_counter('session'); -} - -if (isset($_SESSION['global_counter_chat'])) { - $old_global_counter_chat = $_SESSION['global_counter_chat']; -} else { - $old_global_counter_chat = users_get_last_global_counter('return'); -} - -$now_global_counter_chat = users_get_last_global_counter('return'); - -if ($old_global_counter_chat != $now_global_counter_chat) { - if (!users_is_last_system_message()) { - $_SESSION['new_chat'] = true; - } -} - require_once 'general/register.php'; if (get_parameter('login', 0) !== 0) { diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 6b22d71c28..11fb477380 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -482,12 +482,6 @@ $sub['operation/users/user_edit_notifications']['text'] = __('Configure user not $sub['operation/users/user_edit_notifications']['id'] = 'Configure user notifications'; $sub['operation/users/user_edit_notifications']['refr'] = 0; -// ANY user can chat with other user and dogs. -// Users. -$sub['operation/users/webchat']['text'] = __('WebChat'); -$sub['operation/users/webchat']['id'] = 'WebChat'; -$sub['operation/users/webchat']['refr'] = 0; - // Incidents. if (check_acl($config['id_user'], 0, 'IR') diff --git a/pandora_console/operation/users/webchat.php b/pandora_console/operation/users/webchat.php deleted file mode 100644 index 94eb12ddcf..0000000000 --- a/pandora_console/operation/users/webchat.php +++ /dev/null @@ -1,345 +0,0 @@ - false]); - } - - return; -} - -global $config; - -check_login(); - -ui_print_page_header(__('Webchat'), 'images/comments.png', false, '', false, ''); - -$table = new stdClass(); - -$table->width = '100%'; -$table->class = 'databox filters'; -$table->style[0][1] = 'text-align: right; vertical-align: top;'; - -$table->data[0][0] = '
    '; -$table->data[0][1] = '

    '.__('Users Online').'

    '.'
    '; -$table->data[1][0] = ''.__('Message').'   '.html_print_input_text( - 'message_box', - '', - '', - 100, - 150, - true -); -html_print_table($table); - -echo "
    ".html_print_button( - __('Send message'), - 'send', - false, - 'send_message()', - 'class="sub next" style="float:right"', - true -).'
    '; - -?> - From 3c01526ea9775b95313e7ff35847f97179bdc64a Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 9 May 2020 01:00:24 +0200 Subject: [PATCH 086/110] 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 1fe5b78aff..d2f32b9a83 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200508 +Version: 7.0NG.745-200509 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 8600199c52..7444d40263 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.745-200508" +pandora_version="7.0NG.745-200509" 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 aff64ab8e1..cb4af14c9d 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200508'; +use constant AGENT_BUILD => '200509'; # 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 9ad0eed6b2..22c553bd85 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_unix %define version 7.0NG.745 -%define release 200508 +%define release 200509 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 f439a44a23..3d6ffae6ec 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200508 +%define release 200509 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 d209d01ebe..c4a9ff05d6 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200508" +PI_BUILD="200509" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 1282229873..27fe646f55 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200508} +{200509} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 454fea6259..7a23e724d2 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.745(Build 200508)") +#define PANDORA_VERSION ("7.0NG.745(Build 200509)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index f640ecc9a8..6e44b490be 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.745(Build 200508))" + VALUE "ProductVersion", "(7.0NG.745(Build 200509))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 654aaa7f19..fab2f3db25 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200508 +Version: 7.0NG.745-200509 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 40c2e9b7f4..dd93dcade2 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.745-200508" +pandora_version="7.0NG.745-200509" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index cf5c92bbf0..e7cf64551f 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 = 'PC200508'; +$build_version = 'PC200509'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 1984f13557..4910b77f55 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index a1549f7f19..4713db54d5 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.745 -%define release 200508 +%define release 200509 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index cf9ec92b17..85769ae7bc 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.745 -%define release 200508 +%define release 200509 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index e387af92b9..d4d71360bb 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200508" +PI_BUILD="200509" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 15d97080d4..8a5d393cfd 100644 --- 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.745 PS200508"; +my $version = "7.0NG.745 PS200509"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 380984687f..3ce61a8e17 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.745 PS200508"; +my $version = "7.0NG.745 PS200509"; # save program name for logging my $progname = basename($0); From 87445c28ef42449b7410218dbcd1020d3aba32b3 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 10 May 2020 01:00:15 +0200 Subject: [PATCH 087/110] 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 d2f32b9a83..3d9278e450 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200509 +Version: 7.0NG.745-200510 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 7444d40263..2328cd1827 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.745-200509" +pandora_version="7.0NG.745-200510" 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 cb4af14c9d..86761c28f2 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200509'; +use constant AGENT_BUILD => '200510'; # 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 22c553bd85..c2548ec9c7 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_unix %define version 7.0NG.745 -%define release 200509 +%define release 200510 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 3d6ffae6ec..f9d6ca4620 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200509 +%define release 200510 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 c4a9ff05d6..78aab89a3a 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200509" +PI_BUILD="200510" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 27fe646f55..acb7ab34cc 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200509} +{200510} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 7a23e724d2..c0ab62168e 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.745(Build 200509)") +#define PANDORA_VERSION ("7.0NG.745(Build 200510)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 6e44b490be..590b3e1276 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.745(Build 200509))" + VALUE "ProductVersion", "(7.0NG.745(Build 200510))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index fab2f3db25..f52ed329b6 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200509 +Version: 7.0NG.745-200510 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 dd93dcade2..ab9c0138bf 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.745-200509" +pandora_version="7.0NG.745-200510" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index e7cf64551f..80c2216fa1 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 = 'PC200509'; +$build_version = 'PC200510'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 4910b77f55..0899f29b9c 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 4713db54d5..d3d996e445 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.745 -%define release 200509 +%define release 200510 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 85769ae7bc..c16f3a6327 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.745 -%define release 200509 +%define release 200510 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index d4d71360bb..a960388706 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200509" +PI_BUILD="200510" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 8a5d393cfd..3a8e3be303 100644 --- 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.745 PS200509"; +my $version = "7.0NG.745 PS200510"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 3ce61a8e17..b7b1e1b9cc 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.745 PS200509"; +my $version = "7.0NG.745 PS200510"; # save program name for logging my $progname = basename($0); From 8514cdc37883b7fc7942eff96d69aa6e0680236d Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 11 May 2020 01:00:15 +0200 Subject: [PATCH 088/110] 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 3d9278e450..8d274af2d0 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200510 +Version: 7.0NG.745-200511 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 2328cd1827..0b44ca8abd 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.745-200510" +pandora_version="7.0NG.745-200511" 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 86761c28f2..edc3cf3b13 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200510'; +use constant AGENT_BUILD => '200511'; # 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 c2548ec9c7..e8fad7700a 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_unix %define version 7.0NG.745 -%define release 200510 +%define release 200511 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 f9d6ca4620..2895373130 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200510 +%define release 200511 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 78aab89a3a..386e336e9c 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200510" +PI_BUILD="200511" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index acb7ab34cc..d124086727 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200510} +{200511} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index c0ab62168e..362a4fb1c7 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.745(Build 200510)") +#define PANDORA_VERSION ("7.0NG.745(Build 200511)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 590b3e1276..81a1cedcfd 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.745(Build 200510))" + VALUE "ProductVersion", "(7.0NG.745(Build 200511))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index f52ed329b6..85db6d8c42 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200510 +Version: 7.0NG.745-200511 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 ab9c0138bf..3ba376d9da 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.745-200510" +pandora_version="7.0NG.745-200511" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 80c2216fa1..6401283439 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 = 'PC200510'; +$build_version = 'PC200511'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 0899f29b9c..a82b3cba0a 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index d3d996e445..79c71313fc 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.745 -%define release 200510 +%define release 200511 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index c16f3a6327..ac2f0278ce 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.745 -%define release 200510 +%define release 200511 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index a960388706..6253c4456e 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200510" +PI_BUILD="200511" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 3a8e3be303..bc44a0ad8b 100644 --- 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.745 PS200510"; +my $version = "7.0NG.745 PS200511"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index b7b1e1b9cc..aabd43649b 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.745 PS200510"; +my $version = "7.0NG.745 PS200511"; # save program name for logging my $progname = basename($0); From 86f52fd8e631e8533160441ea8fcf90d97226e74 Mon Sep 17 00:00:00 2001 From: marcos Date: Mon, 11 May 2020 12:24:18 +0200 Subject: [PATCH 089/110] changed message allow override --- pandora_console/include/class/ConsoleSupervisor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index fa5a5d51f9..909b294c05 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -2382,7 +2382,7 @@ class ConsoleSupervisor global $config; $message = 'If AllowOverride is disabled, .htaccess will not works.'; - $message .= '
    Please check /etc/httpd/conf/httpd.conf for keep this problems';
    +        $message .= '
    Please check /etc/httpd/conf/httpd.conf to resolve this problem.';
     
             // Get content file.
             $file = file_get_contents('/etc/httpd/conf/httpd.conf');
    
    From 24f4f68b33e884fb8e9155700217f8b05e5ea9f6 Mon Sep 17 00:00:00 2001
    From: Daniel Barbero Martin 
    Date: Mon, 11 May 2020 14:50:13 +0200
    Subject: [PATCH 090/110] Fixed errors in dashboards
    
    ---
     .../include/javascript/pandora_dashboards.js      | 15 +++++++++++++--
     pandora_console/include/styles/dashboards.css     |  6 +++---
     2 files changed, 16 insertions(+), 5 deletions(-)
    
    diff --git a/pandora_console/include/javascript/pandora_dashboards.js b/pandora_console/include/javascript/pandora_dashboards.js
    index 842bd5daaa..8fec02411c 100644
    --- a/pandora_console/include/javascript/pandora_dashboards.js
    +++ b/pandora_console/include/javascript/pandora_dashboards.js
    @@ -667,8 +667,19 @@ function initialiceLayout(data) {
             }
     
             $("#delete-widget-" + cellId).click(function(event) {
    -          var nodo = event.target.offsetParent;
    -          deleteCell(cellId, nodo.parentNode);
    +          // eslint-disable-next-line no-undef
    +          confirmDialog({
    +            title: "Are you sure?",
    +            message:
    +              "

    All changes made to this widget will be lost

    ", + cancel: "Cancel", + ok: "Ok", + onAccept: function() { + // Continue execution. + var nodo = event.target.offsetParent; + deleteCell(cellId, nodo.parentNode); + } + }); }); $("#configure-widget-" + cellId).click(function() { diff --git a/pandora_console/include/styles/dashboards.css b/pandora_console/include/styles/dashboards.css index f3b41ccb2c..e89e282d6f 100644 --- a/pandora_console/include/styles/dashboards.css +++ b/pandora_console/include/styles/dashboards.css @@ -477,14 +477,14 @@ div#main_pure { margin-top: 30px; } -.info_box { +.content-widget .info_box { border-radius: 5px; width: 90%; } -.info_box tbody tr td { +.content-widget .info_box tbody tr td { padding: 10px; } -.info_box tbody tr td.icon { +.content-widget .info_box tbody tr td.icon { padding-right: 10px !important; } From 3dfef47b24bab669d90fa1e8a492ff858d8c40d6 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 12 May 2020 01:00:20 +0200 Subject: [PATCH 091/110] 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 8d274af2d0..3dee4005bb 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200511 +Version: 7.0NG.745-200512 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 0b44ca8abd..beb1481aa5 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.745-200511" +pandora_version="7.0NG.745-200512" 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 edc3cf3b13..cc2f6feae2 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200511'; +use constant AGENT_BUILD => '200512'; # 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 e8fad7700a..2d08cbac12 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_unix %define version 7.0NG.745 -%define release 200511 +%define release 200512 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 2895373130..41bc1866c0 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200511 +%define release 200512 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 386e336e9c..6bfe186791 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200511" +PI_BUILD="200512" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index d124086727..58a7ee2ca2 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200511} +{200512} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 362a4fb1c7..00e86fad33 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.745(Build 200511)") +#define PANDORA_VERSION ("7.0NG.745(Build 200512)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 81a1cedcfd..0e4404df36 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.745(Build 200511))" + VALUE "ProductVersion", "(7.0NG.745(Build 200512))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 85db6d8c42..291eafb114 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200511 +Version: 7.0NG.745-200512 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 3ba376d9da..9ceb681fe4 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.745-200511" +pandora_version="7.0NG.745-200512" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 6401283439..dbf22e2ea3 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 = 'PC200511'; +$build_version = 'PC200512'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index a82b3cba0a..8035f13d69 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 79c71313fc..096e7dca3b 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.745 -%define release 200511 +%define release 200512 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index ac2f0278ce..7596616368 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.745 -%define release 200511 +%define release 200512 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 6253c4456e..c061c061d6 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200511" +PI_BUILD="200512" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index bc44a0ad8b..7a50fbfd21 100644 --- 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.745 PS200511"; +my $version = "7.0NG.745 PS200512"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index aabd43649b..392541d92a 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.745 PS200511"; +my $version = "7.0NG.745 PS200512"; # save program name for logging my $progname = basename($0); From 13339d5f68ee529ce15e645dcb221fdc56c29d55 Mon Sep 17 00:00:00 2001 From: Jose Gonzalez Date: Tue, 12 May 2020 08:43:16 +0200 Subject: [PATCH 092/110] Solved issue with metaconsole filemanager --- pandora_console/include/get_file.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/get_file.php b/pandora_console/include/get_file.php index 6ebde02add..86d9a6d830 100644 --- a/pandora_console/include/get_file.php +++ b/pandora_console/include/get_file.php @@ -41,9 +41,11 @@ if ($file === '' || $hash === '' || $hash !== md5($file_raw.$config['dbpass']) | $downloadable_file = ''; $parse_all_queries = explode('&', parse_url($_SERVER['HTTP_REFERER'], PHP_URL_QUERY)); $parse_sec2_query = explode('=', $parse_all_queries[1]); + // If is metaconsole, the file manager has a route distinct than node. + $main_file_manager = (is_metaconsole() === true) ? 'advanced/metasetup' : 'godmode/setup/file_manager'; if ($parse_sec2_query[0] === 'sec2') { switch ($parse_sec2_query[1]) { - case 'godmode/setup/file_manager': + case $main_file_manager: $downloadable_file = $_SERVER['DOCUMENT_ROOT'].'/pandora_console/'.$file; break; From d1d51dcde6d0bcb75f74f82a51b87fde1babc4b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 12 May 2020 11:56:53 +0200 Subject: [PATCH 093/110] Update get_file.php resolving issue with collections --- pandora_console/include/get_file.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/get_file.php b/pandora_console/include/get_file.php index 86d9a6d830..82b52ff167 100644 --- a/pandora_console/include/get_file.php +++ b/pandora_console/include/get_file.php @@ -57,6 +57,12 @@ if ($file === '' || $hash === '' || $hash !== md5($file_raw.$config['dbpass']) | $downloadable_file = $_SERVER['DOCUMENT_ROOT'].'/pandora_console/attachment/collection/'.$file; break; + case 'advanced/collections': + if (is_metaconsole() === true) { + $downloadable_file = '/'.$file; + } + break; + default: $downloadable_file = ''; // Do nothing From fabace239dc1c6f0a9b7afa9173b5466e01d48c1 Mon Sep 17 00:00:00 2001 From: Tatiana Llorente Date: Tue, 12 May 2020 12:54:20 +0200 Subject: [PATCH 094/110] Ent 5675 textos del sistema de licencias --- .../include/class/ConsoleSupervisor.php | 24 +++++-- pandora_console/include/functions.php | 2 +- .../include/javascript/jquery.pandora.js | 69 +++++++++++-------- 3 files changed, 60 insertions(+), 35 deletions(-) diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index 909b294c05..77a6388df2 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -752,25 +752,41 @@ class ConsoleSupervisor // Expiry. if (($days_to_expiry <= 15) && ($days_to_expiry > 0)) { + if ($config['license_mode'] == 1) { + $title = __('License is about to expire'); + $msg = 'Your license will expire in %d days. Please, contact our sales department.'; + } else { + $title = __('Support is about to expire'); + $msg = 'Your support license will expire in %d days. Please, contact our sales department.'; + } + // Warn user if license is going to expire in 15 days or less. $this->notify( [ 'type' => 'NOTIF.LICENSE.EXPIRATION', - 'title' => __('License is about to expire'), + 'title' => $title, 'message' => __( - 'Your license will expire in %d days. Please, contact our sales department.', + $msg, $days_to_expiry ), 'url' => ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/license'), ] ); } else if ($days_to_expiry < 0) { + if ($config['license_mode'] == 1) { + $title = __('Expired license'); + $msg = __('Your license has expired. Please, contact our sales department.'); + } else { + $title = __('Support expired'); + $msg = __('This license is outside of support. Please, contact our sales department.'); + } + // Warn user, license has expired. $this->notify( [ 'type' => 'NOTIF.LICENSE.EXPIRATION', - 'title' => __('Expired license'), - 'message' => __('Your license has expired. Please, contact our sales department.'), + 'title' => $title, + 'message' => $msg, 'url' => ui_get_full_url('index.php?sec=gsetup&sec2=godmode/setup/license'), ] ); diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index e4f25be34d..eaea211d2a 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -3947,7 +3947,7 @@ function get_copyright_notice() { $stored_name = enterprise_hook('enterprise_get_copyright_notice'); if (empty($stored_name) || $stored_name == ENTERPRISE_NOT_HOOK) { - return 'Ártica ST'; + return 'PandoraFMS.com'; } return $stored_name; diff --git a/pandora_console/include/javascript/jquery.pandora.js b/pandora_console/include/javascript/jquery.pandora.js index ed75400386..812806f83b 100644 --- a/pandora_console/include/javascript/jquery.pandora.js +++ b/pandora_console/include/javascript/jquery.pandora.js @@ -45,7 +45,7 @@ $(document).ready(function() { jQuery.post( "ajax.php", { - page: "operation/messages/message_list" + page: "operation/messages/message_list", }, function(data, status) { $("#dialog_messages") @@ -58,10 +58,10 @@ $(document).ready(function() { modal: true, overlay: { opacity: 0.5, - background: "black" + background: "black", }, width: 700, - height: 300 + height: 300, }) .show(); }, @@ -80,7 +80,7 @@ $(document).ready(function() { jQuery.post( "ajax.php", { - page: "operation/system_alert" + page: "operation/system_alert", }, function(data, status) { $("#alert_messages").show(); @@ -104,7 +104,7 @@ $(document).ready(function() { "ajax.php", { page: "general/alert_enterprise", - message: elem + message: elem, }, function(data, status) { $("#alert_messages").show(); @@ -130,7 +130,7 @@ $(document).ready(function() { "ajax.php", { page: "general/alert_enterprise", - message: elem + message: elem, }, function(data, status) { $("#alert_messages").show(); @@ -155,7 +155,7 @@ $(document).ready(function() { "ajax.php", { page: "general/alert_enterprise", - message: elem + message: elem, }, function(data, status) { $("#alert_messages").show(); @@ -174,6 +174,11 @@ $(document).ready(function() { if (typeof show_error_license == "undefined") show_error_license = 0; + if (typeof hide_counter == "undefined") hide_counter = 0; + + let height = 300; + if (typeof invalid_license != "undefined") height = 350; + if (process_login_ok || show_error_license) { $("#license_error_msg_dialog").dialog({ dialogClass: "no-close", @@ -181,29 +186,33 @@ $(document).ready(function() { resizable: false, draggable: true, modal: true, - height: 470, + height: height, width: 850, overlay: { opacity: 0.5, - background: "black" + background: "black", }, open: function() { - var remaining = 30; + if (hide_counter != 1) { + var remaining = 30; - // Timeout counter. - var count = function() { - if (remaining > 0) { - $("#license_error_remaining").text(remaining); - remaining -= 1; - } else { - $("#license_error_remaining").hide(); - $("#ok_buttom").show(); - clearInterval(count); - } - }; + // Timeout counter. + var count = function() { + if (remaining > 0) { + $("#license_error_remaining").text(remaining); + remaining -= 1; + } else { + $("#license_error_remaining").hide(); + $("#ok_buttom").show(); + clearInterval(count); + } + }; - setInterval(count, 1000); - } + setInterval(count, 1000); + } else { + $("#ok_buttom").show(); + } + }, }); $("#submit-hide-license-error-msg").click(function() { @@ -221,8 +230,8 @@ $(document).ready(function() { width: 620, overlay: { opacity: 0.5, - background: "black" - } + background: "black", + }, }); } @@ -235,8 +244,8 @@ $(document).ready(function() { width: 520, overlay: { opacity: 0.5, - background: "black" - } + background: "black", + }, }); } @@ -249,8 +258,8 @@ $(document).ready(function() { width: 520, overlay: { opacity: 0.5, - background: "black" - } + background: "black", + }, }); } @@ -318,7 +327,7 @@ $(document).ready(function() { left: +parseInt(screen.width / 2) - parseInt($("#alert_messages").css("width")) / 2 + - "px" + "px", }); }); From e435c09a01fbbe400928231d257c60b5051677d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 12 May 2020 18:01:47 +0200 Subject: [PATCH 095/110] Update get_file.php with lastest corrections --- pandora_console/include/get_file.php | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/get_file.php b/pandora_console/include/get_file.php index 82b52ff167..f6efe98bf6 100644 --- a/pandora_console/include/get_file.php +++ b/pandora_console/include/get_file.php @@ -41,8 +41,9 @@ if ($file === '' || $hash === '' || $hash !== md5($file_raw.$config['dbpass']) | $downloadable_file = ''; $parse_all_queries = explode('&', parse_url($_SERVER['HTTP_REFERER'], PHP_URL_QUERY)); $parse_sec2_query = explode('=', $parse_all_queries[1]); - // If is metaconsole, the file manager has a route distinct than node. + // Metaconsole have a route distinct than node. $main_file_manager = (is_metaconsole() === true) ? 'advanced/metasetup' : 'godmode/setup/file_manager'; + $main_collections = (is_metaconsole() === true) ? 'advanced/collections' : 'enterprise/godmode/agentes/collections'; if ($parse_sec2_query[0] === 'sec2') { switch ($parse_sec2_query[1]) { case $main_file_manager: @@ -53,16 +54,10 @@ if ($file === '' || $hash === '' || $hash !== md5($file_raw.$config['dbpass']) | $downloadable_file = $_SERVER['DOCUMENT_ROOT'].'/pandora_console/attachment/files_repo/'.$file; break; - case 'enterprise/godmode/agentes/collections': + case $main_collections: $downloadable_file = $_SERVER['DOCUMENT_ROOT'].'/pandora_console/attachment/collection/'.$file; break; - case 'advanced/collections': - if (is_metaconsole() === true) { - $downloadable_file = '/'.$file; - } - break; - default: $downloadable_file = ''; // Do nothing From 9fc993519b20aabd391cf3c0f51f65b2d1ce15cc Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 13 May 2020 01:00:20 +0200 Subject: [PATCH 096/110] 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 3dee4005bb..e16c7e6ded 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200512 +Version: 7.0NG.745-200513 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 beb1481aa5..47cacc281f 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.745-200512" +pandora_version="7.0NG.745-200513" 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 cc2f6feae2..21133384eb 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200512'; +use constant AGENT_BUILD => '200513'; # 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 2d08cbac12..4c84b6c612 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_unix %define version 7.0NG.745 -%define release 200512 +%define release 200513 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 41bc1866c0..8c52d6ce7b 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200512 +%define release 200513 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 6bfe186791..452ba001b1 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200512" +PI_BUILD="200513" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 58a7ee2ca2..03181b7e35 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200512} +{200513} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 00e86fad33..ba6e7514d0 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.745(Build 200512)") +#define PANDORA_VERSION ("7.0NG.745(Build 200513)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 0e4404df36..772f7a091b 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.745(Build 200512))" + VALUE "ProductVersion", "(7.0NG.745(Build 200513))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 291eafb114..ca2abbe72c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200512 +Version: 7.0NG.745-200513 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 9ceb681fe4..08ecc171d0 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.745-200512" +pandora_version="7.0NG.745-200513" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index dbf22e2ea3..44e50c0910 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 = 'PC200512'; +$build_version = 'PC200513'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 8035f13d69..35268db9d6 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 096e7dca3b..ee27b5bd7d 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.745 -%define release 200512 +%define release 200513 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 7596616368..9d67626544 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.745 -%define release 200512 +%define release 200513 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c061c061d6..e8812adaba 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200512" +PI_BUILD="200513" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 7a50fbfd21..23cb772e27 100644 --- 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.745 PS200512"; +my $version = "7.0NG.745 PS200513"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 392541d92a..f93a70ba20 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.745 PS200512"; +my $version = "7.0NG.745 PS200513"; # save program name for logging my $progname = basename($0); From 694d82e522cc73d37ce403168327ed8ace9150d6 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Wed, 13 May 2020 12:37:08 +0200 Subject: [PATCH 097/110] avoid div by 0 error while scanning networks with no hosts --- .../lib/PandoraFMS/DiscoveryServer.pm | 37 ++++++++++--------- 1 file changed, 20 insertions(+), 17 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 1b9c433700..5942be2ee6 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1502,28 +1502,31 @@ sub PandoraFMS::Recon::Base::apply_monitoring($) { my @hosts = keys %{$self->{'agents_found'}}; - $self->{'step'} = STEP_MONITORING; - # From 80% to 90%. - my ($progress, $step) = (80, 10.0 / scalar(@hosts)); - my ($partial, $sub_step) = (0, 100 / scalar(@hosts)); + if (scalar @hosts > 0) { + $self->{'step'} = STEP_MONITORING; + # From 80% to 90%. + my ($progress, $step) = (80, 10.0 / scalar(@hosts)); + my ($partial, $sub_step) = (0, 100 / scalar(@hosts)); - foreach my $label (keys %{$self->{'agents_found'}}) { - $self->{'c_network_percent'} = $partial; - $self->{'c_network_name'} = $label; - $self->call('update_progress', $progress); - $progress += $step; - $partial += $sub_step; - $self->call('message', "Checking modules for $label", 5); + foreach my $label (keys %{$self->{'agents_found'}}) { + $self->{'c_network_percent'} = $partial; + $self->{'c_network_name'} = $label; + $self->call('update_progress', $progress); + $progress += $step; + $partial += $sub_step; + $self->call('message', "Checking modules for $label", 5); - # Monitorization selected. - $self->call('create_network_profile_modules', $label); + # Monitorization selected. + $self->call('create_network_profile_modules', $label); - # Monitorization - interfaces - $self->call('create_interface_modules', $label); + # Monitorization - interfaces + $self->call('create_interface_modules', $label); - # Monitorization - WMI modules. - $self->call('create_wmi_modules', $label); + # Monitorization - WMI modules. + $self->call('create_wmi_modules', $label); + } + } $self->{'c_network_percent'} = 100; From 6bbb9d5d9b371f240ff7cd6960cae76718322935 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Wed, 13 May 2020 12:43:47 +0200 Subject: [PATCH 098/110] minor fix --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 5942be2ee6..38df7cbf08 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -1502,6 +1502,8 @@ sub PandoraFMS::Recon::Base::apply_monitoring($) { my @hosts = keys %{$self->{'agents_found'}}; + my $progress = 80; + if (scalar @hosts > 0) { $self->{'step'} = STEP_MONITORING; # From 80% to 90%. From bd6b57e8c340e48cc769dcefe7f154c3a823abd7 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Wed, 13 May 2020 16:43:20 +0200 Subject: [PATCH 099/110] Improvements in log details v10 --- .../lib/PandoraFMS/DiscoveryServer.pm | 12 +- pandora_server/lib/PandoraFMS/Recon/Base.pm | 120 +++++++++--------- 2 files changed, 69 insertions(+), 63 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index 38df7cbf08..ef08977ffb 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -409,8 +409,8 @@ sub exec_recon_script ($$$) { ################################################################################ # Guess the OS using xprobe2 or nmap. ################################################################################ -sub PandoraFMS::Recon::Base::guess_os($$) { - my ($self, $device) = @_; +sub PandoraFMS::Recon::Base::guess_os($$;$) { + my ($self, $device, $string_flag) = @_; return $self->{'os_id'}{$device} if defined($self->{'os_id'}{$device}); @@ -432,7 +432,9 @@ sub PandoraFMS::Recon::Base::guess_os($$) { my $return = `"$self->{pa_config}->{xprobe2}" $device 2>$DEVNULL`; if ($? == 0) { if($return =~ /Running OS:(.*)/) { - return pandora_get_os($self->{'dbh'}, $1); + my $str_os = $1; + return $str_os if is_enabled($string_flag); + return pandora_get_os($self->{'dbh'}, $str_os); } } } @@ -443,7 +445,9 @@ sub PandoraFMS::Recon::Base::guess_os($$) { return OS_OTHER if ($? != 0); if ($return =~ /Aggressive OS guesses:\s*(.*)/) { - return pandora_get_os($self->{'dbh'}, $1); + my $str_os = $1; + return $str_os if is_enabled($string_flag); + return pandora_get_os($self->{'dbh'}, $str_os); } } diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index acdebf392a..a1b17ce383 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -438,11 +438,11 @@ sub are_connected($$$$$) { sub icmp_discovery($$) { my ($self, $addr) = @_; - # Create an agent for the device and add it to the list of known hosts. - push(@{$self->{'hosts'}}, $addr); + # Create an agent for the device and add it to the list of known hosts. + push(@{$self->{'hosts'}}, $addr); - # Create an agent for the device and add it to the list of known hosts. - $self->add_agent($addr); + # Create an agent for the device and add it to the list of known hosts. + $self->add_agent($addr); $self->add_module($addr, { @@ -1355,11 +1355,11 @@ sub prepare_agent($$) { my $main_address = $self->get_main_address($addr); return unless is_empty($main_address); - # Resolve hostnames. - my $host_name = (($self->{'resolve_names'} == 1) ? gethostbyaddr(inet_aton($addr), AF_INET) : $addr); + # Resolve hostnames. + my $host_name = (($self->{'resolve_names'} == 1) ? gethostbyaddr(inet_aton($addr), AF_INET) : $addr); - # Fallback to device IP if host name could not be resolved. - $host_name = $addr if (!defined($host_name) || $host_name eq ''); + # Fallback to device IP if host name could not be resolved. + $host_name = $addr if (!defined($host_name) || $host_name eq ''); $self->{'agents_found'} = {} if ref($self->{'agents_found'}) ne 'HASH'; @@ -1978,10 +1978,10 @@ sub scan($) { } } - # Apply monitoring templates - $self->call('message', "[5/6] Applying monitoring.", 3); + # Apply monitoring templates + $self->call('message', "[5/6] Applying monitoring.", 3); $self->{'step'} = STEP_MONITORING; - $self->call('apply_monitoring', $self); + $self->call('apply_monitoring', $self); # Print debug information on found devices. $self->call('message', "[Summary]", 3); @@ -1999,8 +1999,8 @@ sub scan($) { $self->call('message', $dev_info, 3); } - # Apply monitoring templates - $self->call('message', "[6/6] Processing results.", 3); + # Apply monitoring templates + $self->call('message', "[6/6] Processing results.", 3); $self->{'step'} = STEP_PROCESSING; # Send agent information to Database (Discovery) or XML (satellite.). $self->call('report_scanned_agents'); @@ -2226,8 +2226,8 @@ sub wmi_credentials { # undef if it does not respond to WMI. ################################################################################ sub wmi_credentials_key { - my ($self, $target) = @_; - return $self->{'wmi_auth_key'}{$target}; + my ($self, $target) = @_; + return $self->{'wmi_auth_key'}{$target}; } ################################################################################ @@ -2299,8 +2299,8 @@ sub rcmd_credentials { # undef if it does not respond to WMI. ################################################################################ sub rcmd_credentials_key { - my ($self, $target) = @_; - return $self->{'rcmd_auth_key'}{$target}; + my ($self, $target) = @_; + return $self->{'rcmd_auth_key'}{$target}; } ################################################################################ @@ -2311,7 +2311,7 @@ sub rcmd_credentials_calculation { my ($self, $target) = @_; my $rcmd = PandoraFMS::Recon::Util::enterprise_new( - 'PandoraFMS::RemoteCmd',[{ + 'PandoraFMS::RemoteCmd',[{ 'psexec' => $self->{'parent'}->{'pa_config'}->{'psexec'}, 'winexe' => $self->{'parent'}->{'pa_config'}->{'winexe'}, 'plink' => $self->{'parent'}->{'pa_config'}->{'plink'} @@ -2324,50 +2324,50 @@ sub rcmd_credentials_calculation { return undef; } - my $id_os = $self->call('guess_os', $target); - $rcmd->set_host($target); - $rcmd->set_os($id_os); + my $id_os = $self->call('guess_os', $target, 1); + $rcmd->set_host($target); + $rcmd->set_os($id_os); # Test all credentials selected. foreach my $key_index (@{$self->{'auth_strings_array'}}) { my $cred = $self->call('get_credentials', $key_index); next if ref($cred) ne 'HASH'; - $rcmd->clean_ssh_lib(); + $rcmd->clean_ssh_lib(); - my $username; - my $domain; + my $username; + my $domain; - if($cred->{'username'} =~ /^(.*?)\\(.*)$/) { - $domain = $1; - $username = $2; - } else { - $username = $cred->{'username'}; - } + if($cred->{'username'} =~ /^(.*?)\\(.*)$/) { + $domain = $1; + $username = $2; + } else { + $username = $cred->{'username'}; + } - $rcmd->set_credentials( - { - 'user' => $username, - 'pass' => $cred->{'password'}, - 'domain' => $domain - } - ); + $rcmd->set_credentials( + { + 'user' => $username, + 'pass' => $cred->{'password'}, + 'domain' => $domain + } + ); $rcmd->set_timeout( $self->{'rcmd_timeout_bin'}, $self->{'rcmd_timeout'} ); - my $result; - eval { - $result = $rcmd->rcmd('echo 1'); + my $result; + eval { + $result = $rcmd->rcmd('echo 1'); chomp($result); my $out = ''; $out = $result if !is_empty($result); - $self->call('message', "Trying [".$key_index."] in [". $target."] [".$id_os."]: [$out]", 10); - }; - if ($@) { - $self->call('message', "Failed while trying [".$key_index."] in [". $target."] [".$id_os."]:" . @_, 10); - } + $self->call('message', "Trying [".$key_index."] in [". $target."] [".$id_os."]: [$out]", 10); + }; + if ($@) { + $self->call('message', "Failed while trying [".$key_index."] in [". $target."] [".$id_os."]:" . @_, 10); + } if (!is_empty($result) && $result == "1") { $self->{'rcmd_auth'}{$target} = $cred; @@ -2376,12 +2376,14 @@ sub rcmd_credentials_calculation { $self->{'summary'}->{'RCMD'} += 1; $self->call('message', "RCMD available for $target", 10); return 1; + } else { + $self->call('message', "Last error ($target|$id_os|$result) was [".$rcmd->get_last_error()."]", 10); } - } + } - # Not found. - return 0; + # Not found. + return 0; } ################################################################################ @@ -2402,13 +2404,13 @@ sub wmi_discovery { # Tests credentials against addr. ################################################################################ sub rcmd_discovery { - my ($self, $addr) = @_; + my ($self, $addr) = @_; - # Initialization. - $self->{'rcmd'} = {} unless ref($self->{'rcmd'}) eq 'HASH'; + # Initialization. + $self->{'rcmd'} = {} unless ref($self->{'rcmd'}) eq 'HASH'; - # Calculate credentials. - $self->rcmd_credentials_calculation($addr); + # Calculate credentials. + $self->rcmd_credentials_calculation($addr); } @@ -2496,18 +2498,18 @@ sub wmi_get_command { # Checks if target is reachable using wmi. ################################################################################ sub wmi_responds { - my ($self, $target) = @_; - return 1 if is_enabled($self->{'wmi'}{$target}); - return 0; + my ($self, $target) = @_; + return 1 if is_enabled($self->{'wmi'}{$target}); + return 0; } ################################################################################ # Checks if target is reachable using rcmd. ################################################################################ sub rcmd_responds { - my ($self, $target) = @_; - return 1 if is_enabled($self->{'rcmd'}{$target}); - return 0; + my ($self, $target) = @_; + return 1 if is_enabled($self->{'rcmd'}{$target}); + return 0; } ################################################################################ From ee51814650befb752e3de2d3617f9668218ce8b8 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Wed, 13 May 2020 17:02:07 +0200 Subject: [PATCH 100/110] fixes --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 11 ++++++++--- pandora_server/lib/PandoraFMS/Recon/Base.pm | 13 ++++++++----- 2 files changed, 16 insertions(+), 8 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index ef08977ffb..cfaf91b69a 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -551,7 +551,12 @@ sub PandoraFMS::Recon::Base::test_module($$) { # Remote command. return 0 unless $self->rcmd_responds($addr); - my $target_os = pandora_get_os($self->{'dbh'}, $test->{'custom_string_2'}); + my $target_os; + if ($test->{'custom_string_2'} =~ /inherited/i) { + $target_os = $self->{'os_cache'}{$test->{'ip_target'}}; + } else { + $target_os = $test->{'custom_string_2'}; + } $value = enterprise_hook( 'remote_execution_module', @@ -566,8 +571,8 @@ sub PandoraFMS::Recon::Base::test_module($$) { $target_os, # ip_target, $test->{'ip_target'}, - # tcp_port - $test->{'tcp_port'} + # tcp_send + $test->{'tcp_send'} ] ); diff --git a/pandora_server/lib/PandoraFMS/Recon/Base.pm b/pandora_server/lib/PandoraFMS/Recon/Base.pm index a1b17ce383..2e54650f7c 100644 --- a/pandora_server/lib/PandoraFMS/Recon/Base.pm +++ b/pandora_server/lib/PandoraFMS/Recon/Base.pm @@ -2324,9 +2324,12 @@ sub rcmd_credentials_calculation { return undef; } - my $id_os = $self->call('guess_os', $target, 1); + my $os = $self->{'os_cache'}{$target}; + $os = $self->call('guess_os', $target, 1) if is_empty($os); $rcmd->set_host($target); - $rcmd->set_os($id_os); + $rcmd->set_os($os); + + $self->{'os_cache'}{$target} = $os; # Test all credentials selected. foreach my $key_index (@{$self->{'auth_strings_array'}}) { @@ -2363,10 +2366,10 @@ sub rcmd_credentials_calculation { chomp($result); my $out = ''; $out = $result if !is_empty($result); - $self->call('message', "Trying [".$key_index."] in [". $target."] [".$id_os."]: [$out]", 10); + $self->call('message', "Trying [".$key_index."] in [". $target."] [".$os."]: [$out]", 10); }; if ($@) { - $self->call('message', "Failed while trying [".$key_index."] in [". $target."] [".$id_os."]:" . @_, 10); + $self->call('message', "Failed while trying [".$key_index."] in [". $target."] [".$os."]:" . @_, 10); } if (!is_empty($result) && $result == "1") { @@ -2377,7 +2380,7 @@ sub rcmd_credentials_calculation { $self->call('message', "RCMD available for $target", 10); return 1; } else { - $self->call('message', "Last error ($target|$id_os|$result) was [".$rcmd->get_last_error()."]", 10); + $self->call('message', "Last error ($target|$os|$result) was [".$rcmd->get_last_error()."]", 10); } } From 206970d14353ca5beb7954cec540078bc545c588 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Wed, 13 May 2020 17:06:18 +0200 Subject: [PATCH 101/110] fixes --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index cfaf91b69a..cbb21d42fb 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -553,9 +553,12 @@ sub PandoraFMS::Recon::Base::test_module($$) { my $target_os; if ($test->{'custom_string_2'} =~ /inherited/i) { - $target_os = $self->{'os_cache'}{$test->{'ip_target'}}; + $target_os = pandora_get_os( + $self->{'dbh'}, + $self->{'os_cache'}{$test->{'ip_target'}} + ); } else { - $target_os = $test->{'custom_string_2'}; + $target_os = pandora_get_os($self->{'dbh'}, $test->{'custom_string_2'}); } $value = enterprise_hook( @@ -571,8 +574,8 @@ sub PandoraFMS::Recon::Base::test_module($$) { $target_os, # ip_target, $test->{'ip_target'}, - # tcp_send - $test->{'tcp_send'} + # tcp_port + $test->{'tcp_port'} ] ); From 44b5f2671e3d201e098fd281fc1542269aabbe20 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 14 May 2020 01:00:51 +0200 Subject: [PATCH 102/110] 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 e16c7e6ded..5277fa8cf5 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200513 +Version: 7.0NG.745-200514 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 47cacc281f..8c12084f09 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.745-200513" +pandora_version="7.0NG.745-200514" 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 21133384eb..b148d3b547 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200513'; +use constant AGENT_BUILD => '200514'; # 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 4c84b6c612..b2c1f7f2c6 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_unix %define version 7.0NG.745 -%define release 200513 +%define release 200514 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 8c52d6ce7b..f98164a6e7 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200513 +%define release 200514 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 452ba001b1..d7c392ab7f 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200513" +PI_BUILD="200514" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 03181b7e35..d3efecefc0 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200513} +{200514} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index ba6e7514d0..a357617c61 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.745(Build 200513)") +#define PANDORA_VERSION ("7.0NG.745(Build 200514)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 772f7a091b..b721133a68 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.745(Build 200513))" + VALUE "ProductVersion", "(7.0NG.745(Build 200514))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index ca2abbe72c..5ea05f5601 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200513 +Version: 7.0NG.745-200514 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 08ecc171d0..b20c47b3a7 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.745-200513" +pandora_version="7.0NG.745-200514" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 44e50c0910..19ee56deb5 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 = 'PC200513'; +$build_version = 'PC200514'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 35268db9d6..80468a8728 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index ee27b5bd7d..ffef32880a 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.745 -%define release 200513 +%define release 200514 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 9d67626544..2976d6b29b 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.745 -%define release 200513 +%define release 200514 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index e8812adaba..6bb16db342 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200513" +PI_BUILD="200514" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 23cb772e27..8983a3f075 100644 --- 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.745 PS200513"; +my $version = "7.0NG.745 PS200514"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index f93a70ba20..2a63b17af4 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.745 PS200513"; +my $version = "7.0NG.745 PS200514"; # save program name for logging my $progname = basename($0); From 277a610709c4011b8c4c2e10f0570a7b847dd512 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 15 May 2020 01:00:15 +0200 Subject: [PATCH 103/110] 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 5277fa8cf5..b613292454 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200514 +Version: 7.0NG.745-200515 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 8c12084f09..744ed1e0cd 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.745-200514" +pandora_version="7.0NG.745-200515" 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 b148d3b547..8e658bdbc3 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200514'; +use constant AGENT_BUILD => '200515'; # 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 b2c1f7f2c6..2e76d4540e 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_unix %define version 7.0NG.745 -%define release 200514 +%define release 200515 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 f98164a6e7..059cc079ce 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200514 +%define release 200515 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 d7c392ab7f..4f3dc8b895 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200514" +PI_BUILD="200515" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index d3efecefc0..a543c7110f 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200514} +{200515} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index a357617c61..3c09b89ef0 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.745(Build 200514)") +#define PANDORA_VERSION ("7.0NG.745(Build 200515)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index b721133a68..b3b0f549ea 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.745(Build 200514))" + VALUE "ProductVersion", "(7.0NG.745(Build 200515))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 5ea05f5601..a357ccd464 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200514 +Version: 7.0NG.745-200515 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 b20c47b3a7..bb481c86d8 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.745-200514" +pandora_version="7.0NG.745-200515" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 19ee56deb5..c35d63239e 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 = 'PC200514'; +$build_version = 'PC200515'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 80468a8728..87c2815cd4 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index ffef32880a..e66fc98ea1 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.745 -%define release 200514 +%define release 200515 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 2976d6b29b..bfd296e8f6 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.745 -%define release 200514 +%define release 200515 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 6bb16db342..02f21d8dfd 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200514" +PI_BUILD="200515" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 8983a3f075..af8306d757 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.745 PS200514"; +my $version = "7.0NG.745 PS200515"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 2a63b17af4..48c5b75760 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.745 PS200514"; +my $version = "7.0NG.745 PS200515"; # save program name for logging my $progname = basename($0); From 71cb3e0164dacaac5d23967520b4ee330dfbd55f Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 16 May 2020 01:00:14 +0200 Subject: [PATCH 104/110] 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 b613292454..c952600167 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200515 +Version: 7.0NG.745-200516 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 744ed1e0cd..7908fc0f23 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.745-200515" +pandora_version="7.0NG.745-200516" 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 8e658bdbc3..db837628e0 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200515'; +use constant AGENT_BUILD => '200516'; # 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 2e76d4540e..6fce8158ec 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_unix %define version 7.0NG.745 -%define release 200515 +%define release 200516 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 059cc079ce..bd7467c1c6 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200515 +%define release 200516 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 4f3dc8b895..fc2d4d6617 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200515" +PI_BUILD="200516" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index a543c7110f..bca0ff338f 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200515} +{200516} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 3c09b89ef0..73d3cfabdb 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.745(Build 200515)") +#define PANDORA_VERSION ("7.0NG.745(Build 200516)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index b3b0f549ea..8750325879 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.745(Build 200515))" + VALUE "ProductVersion", "(7.0NG.745(Build 200516))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a357ccd464..a9f09824d6 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200515 +Version: 7.0NG.745-200516 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 bb481c86d8..889aac4050 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.745-200515" +pandora_version="7.0NG.745-200516" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index c35d63239e..173fc0e8bb 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 = 'PC200515'; +$build_version = 'PC200516'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 87c2815cd4..0c3bb23cd4 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index e66fc98ea1..c33a06189a 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.745 -%define release 200515 +%define release 200516 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index bfd296e8f6..3a92cfebc0 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.745 -%define release 200515 +%define release 200516 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 02f21d8dfd..27359768f9 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200515" +PI_BUILD="200516" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index af8306d757..46bce3c1d5 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.745 PS200515"; +my $version = "7.0NG.745 PS200516"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 48c5b75760..5d490d726b 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.745 PS200515"; +my $version = "7.0NG.745 PS200516"; # save program name for logging my $progname = basename($0); From eece9281e23caabef9c04f4e9cdef99bf037af6b Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 17 May 2020 01:00:13 +0200 Subject: [PATCH 105/110] 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 c952600167..19186136b2 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200516 +Version: 7.0NG.745-200517 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 7908fc0f23..567126379d 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.745-200516" +pandora_version="7.0NG.745-200517" 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 db837628e0..4bbfd39fbc 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200516'; +use constant AGENT_BUILD => '200517'; # 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 6fce8158ec..74afa4d801 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_unix %define version 7.0NG.745 -%define release 200516 +%define release 200517 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 bd7467c1c6..caa54b1752 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200516 +%define release 200517 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 fc2d4d6617..6dcf0fa413 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200516" +PI_BUILD="200517" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index bca0ff338f..9afe0074d8 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200516} +{200517} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 73d3cfabdb..6cf04edaf7 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.745(Build 200516)") +#define PANDORA_VERSION ("7.0NG.745(Build 200517)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 8750325879..700dfa442f 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.745(Build 200516))" + VALUE "ProductVersion", "(7.0NG.745(Build 200517))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a9f09824d6..1146b611e8 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200516 +Version: 7.0NG.745-200517 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 889aac4050..0cf3005705 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.745-200516" +pandora_version="7.0NG.745-200517" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 173fc0e8bb..9cc30497c0 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 = 'PC200516'; +$build_version = 'PC200517'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 0c3bb23cd4..87532b84d0 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index c33a06189a..d191410405 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.745 -%define release 200516 +%define release 200517 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 3a92cfebc0..5ff00694ac 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.745 -%define release 200516 +%define release 200517 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 27359768f9..e925fb0558 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200516" +PI_BUILD="200517" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 46bce3c1d5..d337d620c1 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.745 PS200516"; +my $version = "7.0NG.745 PS200517"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 5d490d726b..7260691369 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.745 PS200516"; +my $version = "7.0NG.745 PS200517"; # save program name for logging my $progname = basename($0); From e8dd2b13c72fc654c18b8b567d471da879944307 Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 18 May 2020 01:00:13 +0200 Subject: [PATCH 106/110] 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 19186136b2..7f6a3936b3 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200517 +Version: 7.0NG.745-200518 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 567126379d..714342ef47 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.745-200517" +pandora_version="7.0NG.745-200518" 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 4bbfd39fbc..7389556d8f 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200517'; +use constant AGENT_BUILD => '200518'; # 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 74afa4d801..472ed816f4 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_unix %define version 7.0NG.745 -%define release 200517 +%define release 200518 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 caa54b1752..046d0352f1 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200517 +%define release 200518 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 6dcf0fa413..c4c5b972a0 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200517" +PI_BUILD="200518" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 9afe0074d8..ad334129ba 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200517} +{200518} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 6cf04edaf7..d4b80840d5 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.745(Build 200517)") +#define PANDORA_VERSION ("7.0NG.745(Build 200518)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 700dfa442f..6705f21e66 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.745(Build 200517))" + VALUE "ProductVersion", "(7.0NG.745(Build 200518))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 1146b611e8..ab623331a1 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200517 +Version: 7.0NG.745-200518 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 0cf3005705..1a7aaf4841 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.745-200517" +pandora_version="7.0NG.745-200518" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 9cc30497c0..e11addeafa 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 = 'PC200517'; +$build_version = 'PC200518'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 87532b84d0..cefb2f8665 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index d191410405..b8a86bb138 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.745 -%define release 200517 +%define release 200518 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 5ff00694ac..ebabb169f7 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.745 -%define release 200517 +%define release 200518 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index e925fb0558..ea4212ec57 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200517" +PI_BUILD="200518" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index d337d620c1..43a9ee7918 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.745 PS200517"; +my $version = "7.0NG.745 PS200518"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 7260691369..db503ce89b 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.745 PS200517"; +my $version = "7.0NG.745 PS200518"; # save program name for logging my $progname = basename($0); From 1206e6dd117b4d9d5da2656dc4ac7d0d62dc5274 Mon Sep 17 00:00:00 2001 From: fbsanchez Date: Mon, 18 May 2020 13:46:31 +0200 Subject: [PATCH 107/110] minor fix php74 => php72 --- tests/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index b8c80a9382..2a1fb9f667 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -10,12 +10,12 @@ RUN { \ # Pandora FMS dependencies. RUN yum install -y epel-release vim wget bzip2 curl && \ - yum install yum-utils && \ + yum install -y yum-utils && \ yum install -y https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm && \ yum-config-manager --disable mysql80-community && \ yum-config-manager --enable mysql57-community && \ yum install -y https://rpms.remirepo.net/enterprise/remi-release-7.rpm && \ - yum-config-manager --enable remi-php74 && \ + yum-config-manager --enable remi-php72 && \ yum install -y gtk3 python-pip \ python-pip \ firefox \ From d2c2ae7502decdf9d66803ac88afb4b47f1c4fc5 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 19 May 2020 01:00:16 +0200 Subject: [PATCH 108/110] 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 7f6a3936b3..5f9d720497 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.745-200518 +Version: 7.0NG.745-200519 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 714342ef47..ddfb8b8732 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.745-200518" +pandora_version="7.0NG.745-200519" 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 7389556d8f..d073cb4579 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -55,7 +55,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.745'; -use constant AGENT_BUILD => '200518'; +use constant AGENT_BUILD => '200519'; # 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 472ed816f4..7644b9583e 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_unix %define version 7.0NG.745 -%define release 200518 +%define release 200519 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 046d0352f1..f7fb42fb27 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.745 -%define release 200518 +%define release 200519 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 c4c5b972a0..315e1e5ad9 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200518" +PI_BUILD="200519" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index ad334129ba..20df2e4b95 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{200518} +{200519} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index d4b80840d5..f2ffece35b 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.745(Build 200518)") +#define PANDORA_VERSION ("7.0NG.745(Build 200519)") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 6705f21e66..3f86b9faae 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.745(Build 200518))" + VALUE "ProductVersion", "(7.0NG.745(Build 200519))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index ab623331a1..75aea2426d 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.745-200518 +Version: 7.0NG.745-200519 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 1a7aaf4841..6e1dd718b2 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.745-200518" +pandora_version="7.0NG.745-200519" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index e11addeafa..30b1caaa3f 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 = 'PC200518'; +$build_version = 'PC200519'; $pandora_version = 'v7.0NG.745'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index cefb2f8665..efabb80044 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
    [ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index b8a86bb138..f3036203bb 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.745 -%define release 200518 +%define release 200519 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index ebabb169f7..b393316483 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.745 -%define release 200518 +%define release 200519 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index ea4212ec57..ac8ff62b40 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.745" -PI_BUILD="200518" +PI_BUILD="200519" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 43a9ee7918..58fcfdd203 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.745 PS200518"; +my $version = "7.0NG.745 PS200519"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index db503ce89b..b4de5ace47 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.745 PS200518"; +my $version = "7.0NG.745 PS200519"; # save program name for logging my $progname = basename($0); From b99298786ea27f347594115516a9ba67e80a6513 Mon Sep 17 00:00:00 2001 From: Tatiana Llorente Date: Tue, 19 May 2020 08:20:04 +0200 Subject: [PATCH 109/110] Ent 5754 editor de usuarios de godmode que sea visualmente similar al editor de usuarios el propio usuario --- .../godmode/users/configure_user.php | 455 ++++++++++++------ pandora_console/include/functions_html.php | 10 +- pandora_console/include/functions_profile.php | 13 +- pandora_console/include/styles/pandora.css | 41 +- 4 files changed, 350 insertions(+), 169 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index dc0f726dc0..f4134a27e2 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -46,6 +46,54 @@ if ($enterprise_include) { enterprise_include_once('meta/include/functions_users_meta.php'); } + +if (!is_metaconsole()) { + date_default_timezone_set('UTC'); + include 'include/javascript/timezonepicker/includes/parser.inc'; + + // Read in options for map builder. + $bases = [ + 'gray' => 'Gray', + 'blue-marble' => 'Blue marble', + 'night-electric' => 'Night Electric', + 'living' => 'Living Earth', + ]; + + $local_file = 'include/javascript/timezonepicker/images/gray-400.png'; + + // Dimensions must always be exact since the imagemap does not scale. + $array_size = getimagesize($local_file); + + $map_width = $array_size[0]; + $map_height = $array_size[1]; + + $timezones = timezone_picker_parse_files( + $map_width, + $map_height, + 'include/javascript/timezonepicker/tz_world.txt', + 'include/javascript/timezonepicker/tz_islands.txt' + ); + + + foreach ($timezones as $timezone_name => $tz) { + if ($timezone_name == 'America/Montreal') { + $timezone_name = 'America/Toronto'; + } else if ($timezone_name == 'Asia/Chongqing') { + $timezone_name = 'Asia/Shanghai'; + } + + $area_data_timezone_polys .= ''; + foreach ($tz['polys'] as $coords) { + $area_data_timezone_polys .= ''; + } + + $area_data_timezone_rects .= ''; + foreach ($tz['rects'] as $coords) { + $area_data_timezone_rects .= ''; + } + } +} + // This defines the working user. Beware with this, old code get confusses // and operates with current logged user (dangerous). $id = get_parameter('id', get_parameter('id_user', '')); @@ -75,6 +123,12 @@ if (! check_acl($config['id_user'], 0, 'UM')) { $tab = get_parameter('tab', 'user'); +if ($id) { + $header_title = ' » '.__('Update user'); +} else { + $header_title = ' » '.__('Create user'); +} + // Header if ($meta) { user_meta_print_header(); @@ -94,7 +148,7 @@ if ($meta) { $buttons[$tab]['active'] = true; ui_print_page_header( - __('User detail editor'), + __('User detail editor').$header_title, 'images/gm_users.png', false, 'profile_tab', @@ -625,59 +679,61 @@ if ($values) { $user_info = $values; } -$table = new stdClass(); -$table->id = 'user_configuration_table'; -$table->width = '100%'; -$table->class = 'databox filters'; if (defined('METACONSOLE')) { if ($id) { - $table->head[0] = __('Update User'); + echo '
    '.__('Update User').'
    '; } else { - $table->head[0] = __('Create User'); + echo '
    '.__('Create User').'
    '; } - - $table->head_colspan[0] = 5; - $table->headstyle[0] = 'text-align: center'; } -$table->data = []; -$table->colspan = []; -$table->size = []; -$table->size[0] = '35%'; -$table->size[1] = '65%'; -$table->style = []; -$table->style[0] = 'font-weight: bold;'; +if (!$new_user) { + $user_id = '

    '.__('User ID').':

    '; + $user_id .= ''.$id.''; + $user_id .= html_print_input_hidden('id_user', $id, true); + $user_id .= '
    '; +} else { + $user_id = '
    '.html_print_input_text_extended( + 'id_user', + $id, + '', + '', + 20, + 100, + !$new_user || $view_mode, + '', + [ + 'class' => 'input_line user_icon_input', + 'placeholder' => __('User ID'), + ], + true + ).'
    '; +} -$table->data[0][0] = __('User ID'); -$table->data[0][1] = html_print_input_text_extended( - 'id_user', - $id, - '', - '', - 20, - 60, - !$new_user || $view_mode, - '', - '', - true -); +if (is_user_admin($id)) { + $avatar = html_print_image('images/people_1.png', true, ['class' => 'user_avatar']); +} else { + $avatar = html_print_image('images/people_2.png', true, ['class' => 'user_avatar']); +} -$table->data[1][0] = __('Full (display) name'); -$table->data[1][1] = html_print_input_text_extended( +$full_name = '
    '.html_print_input_text_extended( 'fullname', $user_info['fullname'], + 'fullname', '', - '', - 30, - 125, + 20, + 100, $view_mode, '', - '', + [ + 'class' => 'input', + 'placeholder' => __('Full (display) name'), + ], true -); +).'
    '; -$table->data[2][0] = __('Language'); -$table->data[2][1] = html_print_select_from_sql( +$language = '

    '.__('Language').':

    '; +$language .= html_print_select_from_sql( 'SELECT id_language, name FROM tlanguage', 'language', $user_info['language'], @@ -685,88 +741,112 @@ $table->data[2][1] = html_print_select_from_sql( __('Default'), 'default', true -); +).'
    '; -$table->data[3][0] = __('Timezone'); -$table->data[3][1] = html_print_timezone_select('timezone', $user_info['timezone']); + +$timezone = '

    '.__('Timezone').':

    '; +$timezone .= html_print_timezone_select('timezone', $user_info['timezone']).'
    '; if ($config['user_can_update_password']) { - $table->data[4][0] = __('Password'); - $table->data[4][1] = html_print_input_text_extended( + $new_pass = '
    '.html_print_input_text_extended( 'password_new', '', + 'password_new', '', - '', - 15, - 45, + '25', + '45', $view_mode, '', - '', + [ + 'class' => 'input', + 'placeholder' => __('Password'), + ], true, true - ); - $table->data[5][0] = __('Password confirmation'); - $table->data[5][1] = html_print_input_text_extended( + ).'
    '; + $new_pass_confirm = '
    '.html_print_input_text_extended( 'password_confirm', '', + 'password_conf', '', - '', - 15, - 45, + '20', + '45', $view_mode, '', - '', + [ + 'class' => 'input', + 'placeholder' => __('Password confirmation'), + ], true, true - ); + ).'
    '; } $own_info = get_user_info($config['id_user']); -if ($config['admin_can_make_admin']) { - $table->data[6][0] = __('Global Profile'); - $table->data[6][1] = ''; - if ($own_info['is_admin'] || $user_info['is_admin']) { - $table->data[6][1] = html_print_radio_button('is_admin', 1, '', $user_info['is_admin'], true); - $table->data[6][1] .= __('Administrator'); - $table->data[6][1] .= ui_print_help_tip(__('This user has permissions to manage all. An admin user should not requiere additional group permissions, except for using Enterprise ACL.'), true); - $table->data[6][1] .= '
    '; - } +$global_profile = '
    '.__('Global Profile').': '; +$global_profile .= '
    '; +$global_profile .= html_print_radio_button_extended( + 'is_admin', + 1, + [ + 'label' => __('Administrator'), + 'help_tip' => __('This user has permissions to manage all. An admin user should not requiere additional group permissions, except for using Enterprise ACL.'), + ], + $user_info['is_admin'], + false, + '', + '', + true +); +$global_profile .= html_print_radio_button_extended( + 'is_admin', + 0, + [ + 'label' => __('Standard User'), + 'help_tip' => __('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'), + ], + $user_info['is_admin'], + false, + '', + '', + true +); +$global_profile .= '
    '; - $table->data[6][1] .= html_print_radio_button('is_admin', 0, '', $user_info['is_admin'], true); - $table->data[6][1] .= __('Standard User'); - $table->data[6][1] .= ui_print_help_tip(__('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'), true); -} - -$table->data[7][0] = __('E-mail'); -$table->data[7][1] = html_print_input_text_extended( +$email = '
    '.html_print_input_text_extended( 'email', $user_info['email'], + 'email', '', - '', - 20, - 100, + '25', + '100', $view_mode, '', - '', + [ + 'class' => 'input input_line email_icon_input', + 'placeholder' => __('E-mail'), + ], true -); +).'
    '; -$table->data[8][0] = __('Phone number'); -$table->data[8][1] = html_print_input_text_extended( +$phone = '
    '.html_print_input_text_extended( 'phone', $user_info['phone'], + 'phone', '', - '', - 10, - 30, + '20', + '30', $view_mode, '', - '', + [ + 'class' => 'input input_line phone_icon_input', + 'placeholder' => __('Phone number'), + ], true -); +).'
    '; -$table->data[9][0] = __('Comments'); -$table->data[9][1] = html_print_textarea( +$comments = '

    '.__('Comments').':

    '; +$comments .= html_print_textarea( 'comments', 2, 65, @@ -795,16 +875,17 @@ if (!$meta) { // User only can change skins if has more than one group if (count($usr_groups) > 1) { if ($isFunctionSkins !== ENTERPRISE_NOT_HOOK) { - $table->data[10][0] = __('Skin'); - $table->data[10][1] = skins_print_select($id_usr, 'skin', $user_info['id_skin'], '', __('None'), 0, true); + $skin = '

    '.__('Skin').':

    '; + $skin .= skins_print_select($id_usr, 'skin', $user_info['id_skin'], '', __('None'), 0, true).'
    '; } } } if ($meta) { $array_filters = get_filters_custom_fields_view(0, true); - $table->data[11][0] = __('Search custom field view').' '.ui_print_help_tip(__('Load by default the selected view in custom field view'), true); - $table->data[11][1] = html_print_select( + + $search_custom_fields_view = '

    '.__('Search custom field view').' '.ui_print_help_tip(__('Load by default the selected view in custom field view'), true).'

    '; + $search_custom_fields_view .= html_print_select( $array_filters, 'default_custom_view', $user_info['default_custom_view'], @@ -816,7 +897,7 @@ if ($meta) { true, '', false - ); + ).'
    '; } $values = [ @@ -825,7 +906,8 @@ $values = [ 0 => __('No'), ]; -$table->data[12][0] = __('Home screen').ui_print_help_tip(__('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'), true); +$home_screen = '

    '.__('Home screen').ui_print_help_tip(__('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'), true).'

    '; +; $values = [ 'Default' => __('Default'), 'Visual console' => __('Visual console'), @@ -841,7 +923,7 @@ if (!is_metaconsole()) { } -$table->data[12][1] = html_print_select($values, 'section', io_safe_output($user_info['section']), 'show_data_section();', '', -1, true, false, false); +$home_screen .= html_print_select($values, 'section', io_safe_output($user_info['section']), 'show_data_section();', '', -1, true, false, false).'
    '; $dashboards = Manager::getDashboards(-1, -1); @@ -854,7 +936,7 @@ if ($dashboards === false) { } } -$table->data[12][1] .= html_print_select($dashboards_aux, 'dashboard', $user_info['data_section'], '', '', '', true); +$home_screen .= html_print_select($dashboards_aux, 'dashboard', $user_info['data_section'], '', '', '', true); $layouts = visual_map_get_user_layouts($config['id_user'], true); @@ -867,14 +949,14 @@ if ($layouts === false) { } } -$table->data[12][1] .= html_print_select($layouts_aux, 'visual_console', $user_info['data_section'], '', '', '', true); -$table->data[12][1] .= html_print_input_text('data_section', $user_info['data_section'], '', 60, 255, true, false); +$home_screen .= html_print_select($layouts_aux, 'visual_console', $user_info['data_section'], '', '', '', true); +$home_screen .= html_print_input_text('data_section', $user_info['data_section'], '', 60, 255, true, false); -$table->data[13][0] = __('Block size for pagination'); -$table->data[13][1] = html_print_input_text('block_size', $user_info['block_size'], '', 5, 5, true); +$size_pagination = '

    '.__('Block size for pagination').'

    '; +$size_pagination .= html_print_input_text('block_size', $user_info['block_size'], '', 5, 5, true).'
    '; if ($id == $config['id_user']) { - $table->data[13][1] .= html_print_input_hidden('quick_language_change', 1, true); + $language .= html_print_input_hidden('quick_language_change', 1, true); } if (enterprise_installed() && defined('METACONSOLE')) { @@ -883,12 +965,12 @@ if (enterprise_installed() && defined('METACONSOLE')) { $user_info_metaconsole_access = $user_info['metaconsole_access']; } - $table->data[13][0] = __('Metaconsole access').' '.ui_print_help_icon('meta_access', true); + $meta_access = '

    '.__('Metaconsole access').' '.ui_print_help_icon('meta_access', true).'

    '; $metaconsole_accesses = [ 'basic' => __('Basic'), 'advanced' => __('Advanced'), ]; - $table->data[13][1] = html_print_select( + $meta_access .= html_print_select( $metaconsole_accesses, 'metaconsole_access', $user_info_metaconsole_access, @@ -898,16 +980,16 @@ if (enterprise_installed() && defined('METACONSOLE')) { true, false, false - ); + ).'
    '; } -$table->data[14][0] = __('Not Login'); -$table->data[14][0] .= ui_print_help_tip(__('The user with not login set only can access to API.'), true); -$table->data[14][1] = html_print_checkbox('not_login', 1, $user_info['not_login'], true); +$not_login = '

    '.__('Not Login').'

    '; +$not_login .= ui_print_help_tip(__('The user with not login set only can access to API.'), true); +$not_login .= html_print_checkbox_switch('not_login', 1, $user_info['not_login'], true).'
    '; -$table->data[15][0] = __('Session Time'); -$table->data[15][0] .= ui_print_help_tip(__('This is defined in minutes, If you wish a permanent session should putting -1 in this field.'), true); -$table->data[15][1] = html_print_input_text('session_time', $user_info['session_time'], '', 5, 5, true); +$session_time = '

    '.__('Session Time'); +$session_time .= ui_print_help_tip(__('This is defined in minutes, If you wish a permanent session should putting -1 in this field.'), true).'

    '; +$session_time .= html_print_input_text('session_time', $user_info['session_time'], '', 5, 5, true.false, false, '', 'class="input_line_small"').'
    '; $event_filter_data = db_get_all_rows_sql('SELECT id_name, id_filter FROM tevent_filter'); if ($event_filter_data === false) { @@ -920,69 +1002,104 @@ foreach ($event_filter_data as $filter) { $event_filter[$filter['id_filter']] = $filter['id_name']; } -$table->data[16][0] = __('Default event filter'); -$table->data[16][1] = html_print_select($event_filter, 'default_event_filter', $user_info['default_event_filter'], '', '', __('None'), true, false, false); +$default_event_filter = '

    '.__('Default event filter').'

    '; +$default_event_filter .= html_print_select($event_filter, 'default_event_filter', $user_info['default_event_filter'], '', '', __('None'), true, false, false).'
    '; -$table->data[17][0] = __('Disabled newsletter'); +$newsletter = '

    '.__('Disabled newsletter').'

    '; if ($user_info['middlename'] >= 0) { $middlename = false; } else { $middlename = true; } -$table->data[17][1] = html_print_checkbox( +$newsletter .= html_print_checkbox_switch( 'middlename', -1, $middlename, true -); +).'
    '; if ($config['ehorus_user_level_conf']) { - $table->data[18][0] = __('eHorus user acces enabled'); - $table->data[18][1] = html_print_checkbox('ehorus_user_level_enabled', 1, $user_info['ehorus_user_level_enabled'], true); - $table->data[19][0] = __('eHorus user'); - $table->data[20][0] = __('eHorus password'); - $table->data[19][1] = html_print_input_text('ehorus_user_level_user', $user_info['ehorus_user_level_user'], '', 15, 45, true); - $table->data[20][1] = html_print_input_password('ehorus_user_level_pass', io_output_password($user_info['ehorus_user_level_pass']), '', 15, 45, true); + $ehorus = '

    '.__('eHorus user access enabled').'

    '; + $ehorus .= html_print_checkbox_switch('ehorus_user_level_enabled', 1, $user_info['ehorus_user_level_enabled'], true).'
    '; + $ehorus .= '
    '; + $ehorus .= '

    '.__('eHorus user').'

    '; + $ehorus .= html_print_input_text('ehorus_user_level_user', $user_info['ehorus_user_level_user'], '', 15, 45, true).'
    '; + $ehorus .= '

    '.__('eHorus password').'

    '; + $ehorus .= html_print_input_password('ehorus_user_level_pass', io_output_password($user_info['ehorus_user_level_pass']), '', 15, 45, true).'
    '; + $ehorus .= '
    '; } if ($meta) { enterprise_include_once('include/functions_metaconsole.php'); - $data = []; - $data[0] = __('Enable agents managment'); - $data[1] = html_print_checkbox('metaconsole_agents_manager', 1, $user_info['metaconsole_agents_manager'], true); - $table->rowclass[] = ''; - $table->rowstyle[] = 'font-weight: bold;'; - $table->data['metaconsole_agents_manager'] = $data; + $metaconsole_agents_manager = '

    '.__('Enable agents managment').'

    '; + $metaconsole_agents_manager .= html_print_checkbox_switch('metaconsole_agents_manager', 1, $user_info['metaconsole_agents_manager'], true).'
    '; - $data = []; - $data[0] = __('Assigned node').ui_print_help_tip(__('Server where the agents created of this user will be placed'), true); + $metaconsole_assigned_server = '

    '.__('Assigned node').ui_print_help_tip(__('Server where the agents created of this user will be placed'), true).'

    '; $servers = metaconsole_get_servers(); $servers_for_select = []; foreach ($servers as $server) { $servers_for_select[$server['id']] = $server['server_name']; } - $data[1] = html_print_select($servers_for_select, 'metaconsole_assigned_server', $user_info['metaconsole_assigned_server'], '', '', -1, true, false, false); - $table->rowclass[] = ''; - $table->rowstyle[] = 'font-weight: bold;'; - $table->data['metaconsole_assigned_server'] = $data; + $metaconsole_assigned_server .= html_print_select($servers_for_select, 'metaconsole_assigned_server', $user_info['metaconsole_assigned_server'], '', '', -1, true, false, false).'
    '; - $data = []; - $data[0] = __('Enable node access').ui_print_help_tip(__('With this option enabled, the user will can access to nodes console'), true); - $data[2] = html_print_checkbox('metaconsole_access_node', 1, $user_info['metaconsole_access_node'], true); - $table->rowclass[] = ''; - $table->rowstyle[] = ''; - $table->data['metaconsole_access_node'] = $data; + $metaconsole_access_node = '

    '.__('Enable node access').ui_print_help_tip(__('With this option enabled, the user will can access to nodes console'), true).'

    '; + $metaconsole_access_node .= html_print_checkbox('metaconsole_access_node', 1, $user_info['metaconsole_access_node'], true).'
    '; } echo '
    '; -html_print_table($table); -echo '
    '; +if (!$id) { + $user_id_update_view = $user_id; + $user_id_create = ''; +} else { + $user_id_update_view = ''; + $user_id_create = $user_id; +} + +if (is_metaconsole()) { + $access_or_pagination = $meta_access; +} else { + $access_or_pagination = $size_pagination; +} + + +echo '
    +
    + +

    Extra info:

    '.$email.$phone.$not_login.$session_time.'
    +
    +
    +
    '.$language.$access_or_pagination.$skin.$home_screen.$default_event_filter.$newsletter.'
    + +
    '.$timezone; +if (!is_metaconsole()) { + echo '
    + + + '.$area_data_timezone_polys.$area_data_timezone_rects.' +
    '; +} else { + echo $search_custom_fields_view.$metaconsole_agents_manager.$metaconsole_assigned_server.$metaconsole_access_node; +} + + echo '
    +
    + +
    +
    '.$comments.'
    +
    +
    '.$ehorus.'
    +
    '; + +echo '
    '; if ($config['admin_can_add_user']) { html_print_csrf_hidden(); if ($new_user) { @@ -1005,32 +1122,62 @@ if (!empty($id) && !$new_user) { enterprise_hook('close_meta_frame'); +if (!is_metaconsole()) { + ?> + + + + + '."\n\t"; + echo ''."\n\t"; + // Closes no meta condition. +} + ?>